HomeSort by relevance Sort by last modified time
    Searched defs:SVN (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
__init__.py 7 from .svn import SVN
detection.py 35 from .svn import SVN
71 if SVN.in_working_directory(absolute_path, executive=self._executive):
72 return SVN(cwd=absolute_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive)
svn.py 47 class SVN(SCM):
49 executable_name = "svn"
51 _svn_metadata_files = frozenset(['.svn', '_svn'])
65 if os.path.isdir(os.path.join(path, '.svn')):
66 # This is a fast shortcut for svn info that is usually correct for SVN < 1.7,
67 # but doesn't work for SVN >= 1.7.
87 raise ScriptError(script_args=svn_info_args, message='svn info did not contain a %s.' % field_name)
124 """Does 'svn add' to the path and its parents."""
177 return "svn"
    [all...]
scm_unittest.py 43 from webkitpy.common.checkout.scm.svn import SVN
46 # We cache the mock SVN repo so that we don't create it again for each call to an SVNTest or GitTest test_ method.
111 return self._make_diff("svn", *args)
117 self._run(["svn", "add", path])
120 self._run(["svn", "commit", "--quiet", "--message", message])
123 # GitTest. We create a mock SVN repo once and then perform an SVN checkout from a filesystem copy of
137 self._run(['svn', 'checkout', '--quiet', self.svn_repo_url + "/trunk", self.svn_checkout_path])
142 # git svn complains if we don't pass --pre-1.5-compatible, not sure why
    [all...]
  /external/llvm/
Makefile 258 SVN = svn
259 SVN-UPDATE-OPTIONS =
262 # Multiline variable defining a recursive function for finding svn repos rooted at
266 dirs=`svn status --no-ignore $$1 | awk '/^(I|\?) / {print $$2}' | LC_ALL=C xargs svn info 2>/dev/null | awk '/^Path:\ / {print $$2}'`;
279 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
280 @eval $$SUB_SVN_DIRS; $(SVN) status --no-ignore $(LLVM_SRC_ROOT) | svnup $(LLVM_SRC_ROOT) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) updat
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py 68 # If we don't do this, programs like SVN will output localized
69 # messages and svn.py will fail to parse them.
78 # Maybe this belongs in SVN in some more generic "find the svn binary" codepath?
80 # FIXME: Unclear how to test this, since it currently mutates global state on SVN.
83 self.executive.run_command(['svn', 'help'])
86 self.executive.run_command(['svn.bat', 'help'])
88 # of development tools, including Python and svn. Instead of using a
89 # real svn executable, depot_tools indirects via a batch file, called
90 # svn.bat. This batch file allows depot_tools to auto-update the rea
    [all...]
  /external/chromium_org/third_party/skia/tools/
svn.py 14 PROPERTY_MIMETYPE = 'svn:mime-type'
24 SVN = 'svn.bat'
26 SVN = 'svn'
34 proc = subprocess.Popen([SVN, 'cat', svn_url],
44 class Svn:
47 """Set up to manipulate SVN control within the given directory.
78 """Run "svn info" and return a dictionary containing its output.
80 output = self._RunCommand([SVN, 'info']
    [all...]
  /external/skia/tools/
svn.py 14 PROPERTY_MIMETYPE = 'svn:mime-type'
24 SVN = 'svn.bat'
26 SVN = 'svn'
34 proc = subprocess.Popen([SVN, 'cat', svn_url],
44 class Svn:
47 """Set up to manipulate SVN control within the given directory.
78 """Run "svn info" and return a dictionary containing its output.
80 output = self._RunCommand([SVN, 'info']
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
common_includes.py 357 def SVN(self, args="", prefix="", pipe=True, retry_on=None, cwd=None):
359 "svn", args, prefix, pipe, cwd=cwd or self.default_cwd)
496 branch = "" if parent_hash else branch or "svn/trunk"
523 self.Command("svn", "update", cwd=self._options.svn)
524 if self.Command("svn", "status", cwd=self._options.svn) != "":
525 self.Die("SVN checkout not clean.")
528 cwd=self._options.svn):
531 "svn",
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 532 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
535 ID.AddInteger(SVN->getMaskElt(i));
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 1407 milliseconds