HomeSort by relevance Sort by last modified time
    Searched refs:scm (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
scm_unittest.py 39 from webkitpy.common.checkout.scm.detection import detect_scm_system
40 from webkitpy.common.checkout.scm.git import Git, AmbiguousCommitError
41 from webkitpy.common.checkout.scm.scm import SCM
42 from webkitpy.common.checkout.scm.svn import SVN
61 self.scm = None
207 self.scm.add("added_dir/added_file")
208 self.assertIn("added_dir/added_file", self.scm._added_files())
213 self.scm.add("added_dir/added_file"
    [all...]
__init__.py 6 from .scm import SCM
detection_unittest.py 49 scm = OutputCapture().assert_outputs(self, detector.detect_scm_system, ["/"], expected_logs=expected_logs)
50 self.assertIsNone(scm)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
png_unittest.py 34 def __init__(self, scm, prop=None):
35 self._scm = scm
69 scm = MockSCMDetector('svn')
70 checker = PNGChecker(file_path, mock_handle_style_error, scm, MockSystemHost(filesystem=fs))
78 scm = MockSCMDetector('git')
80 checker = PNGChecker("config", mock_handle_style_error, scm, MockSystemHost(os_name='linux', filesystem=fs))
86 scm = MockSCMDetector('git')
88 checker = PNGChecker("config", mock_handle_style_error, scm, MockSystemHost(os_name='linux', filesystem=fs))
94 scm = MockSCMDetector('git')
96 checker = PNGChecker("config", mock_handle_style_error, scm, MockSystemHost(os_name='linux', filesystem=fs)
    [all...]
png.py 33 from webkitpy.common.checkout.scm.detection import SCMDetector
40 def __init__(self, file_path, handle_style_error, scm=None, host=None):
45 self._detector = scm or SCMDetector(self._fs, self._host.executive).detect_scm_system(self._fs.getcwd())
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
rebaselineserver.py 41 def __init__(self, test_port, layout_tests_directory, results_directory, platforms, filesystem, scm):
47 self.scm = scm
78 scm = self._tool.scm()
87 self._test_config = TestConfig(port, layout_tests_directory, results_directory, platforms, filesystem, scm)
rebaseline.py 170 if not self._tool.scm().exists(new_baseline):
194 if not self._tool.scm().exists(target_baseline):
323 stderr = self._tool.executive.run_command([self._tool.path()] + verbose_args + args, cwd=self._tool.scm().checkout_root, return_stderr=True)
352 cwd = self._tool.scm().checkout_root
402 # We don't run this in parallel because modifying the SCM in parallel is unreliable.
454 self._tool.scm().add_list(list(files_to_add))
683 for line in tool.scm().blame(expectations_file_path).split("\n"):
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
main.py 60 return self.scm().supports_local_commits()
68 if command.requires_local_commits and not self.scm().supports_local_commits():
69 failure_reason = "%s requires local commits using %s in %s." % (command.name, self.scm().display_name(), self.scm().checkout_root)
  /external/wpa_supplicant_8/wpa_supplicant/
main_winsvc.c 256 SC_HANDLE svc, scm; local
261 scm = OpenSCManager(0, 0, SC_MANAGER_CREATE_SERVICE);
262 if (!scm) {
267 svc = CreateService(scm, WPASVC_NAME, WPASVC_DISPLAY_NAME,
274 CloseServiceHandle(scm);
287 CloseServiceHandle(scm);
297 SC_HANDLE svc, scm; local
302 scm = OpenSCManager(0, 0, SC_MANAGER_CREATE_SERVICE);
303 if (!scm) {
308 svc = OpenService(scm, WPASVC_NAME, SERVICE_ALL_ACCESS | DELETE)
    [all...]
  /external/chromium/chrome/browser/sync/engine/net/
syncapi_server_connection_manager.h 23 SyncAPIBridgedPost(browser_sync::ServerConnectionManager* scm,
syncapi_server_connection_manager.cc 17 browser_sync::ServerConnectionManager* scm,
19 : Post(scm), factory_(factory) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
host.py 34 from webkitpy.common.checkout.scm.detection import SCMDetector
56 # In order to instantiate a port correctly, we have to pass it at least an executive, user, scm, and filesystem
98 from webkitpy.common.checkout.scm.svn import SVN
118 from webkitpy.common.checkout.scm.git import Git
129 def scm(self): member in class:Host
host_mock.py 29 from webkitpy.common.checkout.scm.scm_mock import MockSCM
46 # FIXME: we should never initialize the SCM by default, since the real
63 def scm(self): member in class:MockHost
  /external/chromium_org/sync/internal_api/
syncapi_server_connection_manager.h 25 SyncAPIBridgedConnection(ServerConnectionManager* scm,
syncapi_server_connection_manager.cc 15 ServerConnectionManager* scm,
17 : Connection(scm), factory_(factory) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
confirmdiff.py 66 changed_files = self._tool.scm().changed_files(self._options.git_commit)
67 return self._tool.scm().create_patch(self._options.git_commit,
  /external/chromium_org/cloud_print/service/win/
service_controller.cc 69 ServiceHandle scm;
70 HRESULT hr = OpenServiceManager(&scm);
74 service->Set(::OpenService(scm, name.c_str(), access));
191 ServiceHandle scm; local
192 hr = OpenServiceManager(&scm);
200 scm, name_.c_str(), display_name.c_str(), SERVICE_ALL_ACCESS,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
main.py 143 paths = change_directory(host.filesystem, checkout_root=host.scm().checkout_root, paths=paths)
152 patch = host.scm().create_patch(options.git_commit, changed_files=changed_files)
patchreader.py 37 from webkitpy.common.checkout.scm.detection import SCMDetector
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/
update_webgl_conformance_tests.py 30 from webkitpy.common.checkout import scm namespace
95 detector = scm.SCMDetector(FileSystem(), Executive())
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpagui.cpp 1627 SC_HANDLE svc, scm; local
1654 SC_HANDLE svc, scm; local
1682 SC_HANDLE svc, scm; local
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_proto_util.h 111 // Post the message using the scm, and do some processing on the returned
113 static bool PostAndProcessHeaders(browser_sync::ServerConnectionManager* scm,
syncer_proto_util.cc 141 bool SyncerProtoUtil::PostAndProcessHeaders(ServerConnectionManager* scm,
154 ScopedServerStatusWatcher server_status_watcher(scm, &http_response);
155 if (!scm->PostBufferWithCachedAuth(&params, &server_status_watcher)) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py 67 scm = test_config.scm
117 exit_code = scm.add(destination_path, return_exit_code=True)
119 log(' Could not update %s in SCM, exit code %d' %
153 exit_code = test_config.scm.add(destination_path, return_exit_code=True)
155 log(' Could not update %s in SCM, exit code %d' %
  /external/chromium_org/sync/engine/
syncer_proto_util.h 126 // Post the message using the scm, and do some processing on the returned
128 static bool PostAndProcessHeaders(ServerConnectionManager* scm,

Completed in 428 milliseconds

1 2 3