OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Checkout
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
__init__.py
3
from .
checkout
import
Checkout
checkout_unittest.py
35
from .
checkout
import
Checkout
49
return
Checkout
(scm=MockSCM(), filesystem=MockFileSystem(), executive=MockExecutive())
52
checkout
= self._make_checkout()
53
checkout
._executive = MockExecutive(should_log=True)
54
checkout
._scm.script_path = lambda script: script
58
expected_logs = "MOCK run_command: ['svn-apply', '--force'], cwd=/mock-
checkout
, input=foo\n"
59
OutputCapture().assert_outputs(self,
checkout
.apply_patch, [mock_patch], expected_logs=expected_logs)
checkout.py
32
from webkitpy.common.
checkout
.scm import CommitMessage
33
from webkitpy.common.
checkout
.deps import DEPS
38
# This class represents the WebKit-specific parts of the
checkout
.
40
class
Checkout
(object):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py
34
from webkitpy.common.
checkout
import
Checkout
35
from webkitpy.common.
checkout
.scm.detection import SCMDetector
51
# FIXME:
Checkout
should own the scm object.
101
from webkitpy.common.
checkout
.scm.svn import SVN
121
from webkitpy.common.
checkout
.scm.git import Git
131
self._checkout =
Checkout
(self.scm())
136
def
checkout
(self):
member in class:Host
/external/chromium_org/v8/tools/gcmole/
bootstrap.sh
74
echo
Checkout
failed, retrying
/external/skia/tools/
download_baselines.py
127
repo_to_modify.
Checkout
(GetBaselineSvnUrl(baseline_subdir), baseline_subdir)
146
actual_repo.
Checkout
(actual_url, '.')
svn.py
78
def
Checkout
(self, url, path):
86
return self._RunCommand([SVN, '
checkout
', url, path])
/external/chromium_org/tools/clang/scripts/
update.sh
234
echo
Checkout
failed, retrying
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
scm_unittest.py
48
from webkitpy.common.
checkout
.
checkout
import
Checkout
140
run_command(['svn', '
checkout
', '--quiet', svn_repo_url, svn_checkout_path])
178
# GitTest. We create a mock SVN repo once and then perform an SVN
checkout
from a filesystem copy of
189
test_object.svn_checkout_path = os.path.join(test_object.temp_directory, "
checkout
")
191
run_command(['svn', '
checkout
', '--quiet', test_object.svn_repo_url + "/trunk", test_object.svn_checkout_path])
202
# Create a test svn
checkout
204
run_command(['svn', '
checkout
', '--quiet', svn_repo_url, svn_checkout_path])
206
# Create and
checkout
a trunk dir to match the standard svn configuration to match git-svn's expectation
[
all
...]
Completed in 1728 milliseconds