Searched defs:SVN (Results 1 - 7 of 7) sorted by relevance

/external/llvm/
H A DMakefile245 SVN = svn macro
246 SVN-UPDATE-OPTIONS =
248 SUB-SVN-DIRS = $(AWK) '/I|\? / {print $$2}' \
249 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
253 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
254 @ $(SVN) status --no-ignore $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN
[all...]
/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/Target/CellSPU/
H A DSPUISelLowering.cpp1838 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op); local
1878 if (SVN->getMaskElt(i) < 0)
1881 unsigned SrcElt = SVN->getMaskElt(i);
1946 unsigned SrcElt = SVN->getMaskElt(i) < 0 ? 0 : SVN->getMaskElt(i);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7790 const ShuffleVectorSDNode *SVN = NULL; local
7801 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
7817 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
8195 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
8201 int Idx = SVN->getMaskElt(i);
8213 int Idx = SVN->getMaskElt(i);
8231 int Idx = SVN->getMaskElt(i);
8244 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
8301 int Idx = SVN
[all...]
H A DSelectionDAG.cpp489 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); local
492 ID.AddInteger(SVN->getMaskElt(i));
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp4582 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode()); local
4590 ArrayRef<int> ShuffleMask = SVN->getMask();
4595 int Lane = SVN->getSplatIndex();
8157 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); local
8159 int MaskElt = SVN->getMaskElt(n);

Completed in 191 milliseconds