Searched refs:SVN (Results 1 - 15 of 15) sorted by relevance

/external/llvm/
H A DMakefile244 SVN = svn macro
245 SVN-UPDATE-OPTIONS =
247 SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
248 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
252 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
253 @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN
[all...]
/external/webkit/Tools/Scripts/
H A Dresolve-ChangeLogs62 my $SVN = "svn";
181 open STAT, "-|", $SVN, "status", $file or die $!;
192 open INFO, "-|", $SVN, "info", $file or die $!;
259 $statCommand = "$SVN stat | grep '^C'";
464 system($SVN, "resolved", $file);
479 system($SVN, "status", $file);
H A Dsvn-apply134 die "--merge is currently only supported for SVN" unless isSVN();
135 # How do we handle Git patches applied to an SVN checkout here?
175 # SVN prints "svn: warning: 'directory' is already under version control"
446 # SVN is very verbose when removing directories. Squelch all output except the last line.
448 open SVN, "svn rm --force '$path' |" or die "svn rm --force '$path' failed!";
450 while (<SVN>) {
453 close SVN;
H A Dprepare-ChangeLog46 # Add SVN version numbers for commit (can't do that until
156 my $SVN = "svn";
348 open ERRORS, "-|", $SVN, "update", @logs
1293 $command = "$SVN diff --diff-cmd diff -x -N $pathsString";
1309 $command = "$SVN stat $filesString";
1343 open INFO, "$SVN info . |" or die;
1351 open INFO, "$SVN info '$file' |" or die;
1369 open PROPLIST, "$SVN proplist '$file' |" or die;
1375 open PROPLIST, "$SVN proplist '$original' |" or die;
1389 open DIFF, "$SVN dif
[all...]
H A DVCSUtils.pm369 die "Unable to determine current SVN revision in $dir" unless (defined $revision);
492 open SVN, "svn status --non-interactive --non-recursive '$fullPath' |" or die;
499 while (<SVN>) {
510 <SVN>;
514 $svnStatus = removeEOL(<SVN>) . "\n";
516 close SVN;
524 # the default behavior in Git and SVN.
565 # svnConvertedText: the header text with some lines converted to SVN
581 $_ = "Index: $indexPath$POSTMATCH"; # Convert to SVN format.
622 $_ = "--- $indexPath"; # Convert to SVN forma
[all...]
H A Dbisect-builds309 if ($file =~ /^WebKit-SVN-r([0-9]+)\.dmg$/) {
H A Dold-run-webkit-tests322 --use-remote-links-to-tests Link to test files within the SVN repository in the results.
1932 # If the file is below the test directory then convert it into a link to the file in SVN
/external/libvpx/examples/includes/geshi/geshi/
H A Dpovray.php15 * - initial import to GeSHi SVN
/external/webkit/Tools/Scripts/webkitpy/common/checkout/
H A Dscm.py30 # Python module for interacting with an SCM system (like SVN or Git)
84 if SVN.in_working_directory(absolute_path):
85 return SVN(cwd=absolute_path, patch_directories=patch_directories)
323 # A mixin class that represents common functionality for SVN and Git-SVN.
334 class SVN(SCM, SVNRepository): class in inherits:SCM, SVNRepository
371 uuid = SVN.find_uuid(path)
378 if uuid != SVN.find_uuid(path):
408 # added_files() returns directories for SVN, we walk the files in reverse path
564 # git-commit and force are not used by SVN
[all...]
H A Dscm_unittest.py48 from webkitpy.common.checkout.scm import detect_scm_system, SCM, SVN, Git, CheckoutNeedsUpdate, commit_error_handler, AuthenticationError, AmbiguousCommitError, find_checkout_root, default_scm namespace
145 # Create an test SVN repository
320 # SVN reports directory changes, Git does not.
333 # SVN reports directory changes, Git does not.
338 self.assertEqual(sorted(self.scm.changed_files_for_revision(4)), sorted(["test_file", "test_file2"])) # Git and SVN return different orders.
676 write_into_file_at_path(fake_webkit_auth_file, SVN.svn_server_realm)
677 self.assertTrue(scm.has_authorization_for_realm(SVN.svn_server_realm, home_directory=fake_home_dir))
687 self.assertFalse(scm.has_authorization_for_realm(SVN.svn_server_realm, home_directory=fake_home_dir))
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp357 } else if (const ShuffleVectorSDNode *SVN =
361 int Idx = SVN->getMaskElt(i);
H A DDAGCombiner.cpp7366 const ShuffleVectorSDNode *SVN = NULL; local
7377 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
7393 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
7760 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7766 int Idx = SVN->getMaskElt(i);
7778 int Idx = SVN->getMaskElt(i);
7796 int Idx = SVN->getMaskElt(i);
7809 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
7866 int Idx = SVN
[all...]
H A DSelectionDAG.cpp455 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); local
458 ID.AddInteger(SVN->getMaskElt(i));
/external/llvm/lib/Target/CellSPU/
H A DSPUISelLowering.cpp1831 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op); local
1871 if (SVN->getMaskElt(i) < 0)
1874 unsigned SrcElt = SVN->getMaskElt(i);
1939 unsigned SrcElt = SVN->getMaskElt(i) < 0 ? 0 : SVN->getMaskElt(i);
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp4510 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode()); local
4518 ArrayRef<int> ShuffleMask = SVN->getMask();
4523 int Lane = SVN->getSplatIndex();
7600 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); local
7602 int MaskElt = SVN->getMaskElt(n);

Completed in 1018 milliseconds