HomeSort by relevance Sort by last modified time
    Searched refs:absolute_path (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
detection.py 66 absolute_path = self._filesystem.abspath(path)
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)
74 if Git.in_working_directory(absolute_path, executive=self._executive):
75 return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive)
scm_mock.py 76 def absolute_path(self, *comps): member in class:MockSCM
109 self._filesystem.move(self.absolute_path(origin), self.absolute_path(destination))
scm.py 63 def absolute_path(self, repository_relative_path): member in class:SCM
git.py 100 return self._filesystem.exists(self.absolute_path(self._filesystem.join('.git', 'rebase-apply')))
  /external/chromium_org/chrome/browser/chromeos/file_manager/
fileapi_util.h 35 base::FilePath absolute_path; member in struct:file_manager::util::FileDefinition
95 // if |absolute_path| is not managed by the external filesystem provider.
97 const base::FilePath& absolute_path,
103 // |absolute_path| is not managed by the external filesystem provider.
107 const base::FilePath& absolute_path,
fileapi_util.cc 281 const base::FilePath& absolute_path,
287 absolute_path,
298 const base::FilePath& absolute_path,
312 if (!backend->GetVirtualPath(absolute_path, virtual_path))
file_browser_handlers.cc 249 file_definition.absolute_path = local_path;
422 handler_pid, iter->absolute_path);
426 GrantCreateReadWriteFile(handler_pid, iter->absolute_path);
  /external/chromium_org/mojo/spy/ui/
dev_server.py 20 return module_resource.absolute_path.startswith(project.spy_path)
  /external/chromium_org/tools/telemetry/telemetry/web_components/
dev_server.py 20 return module_resource.absolute_path.startswith(project.telemetry_path)
  /external/chromium-trace/trace-viewer/build/
parse_deps.py 45 def _find_and_load_filename(self, absolute_path):
46 if not os.path.exists(absolute_path):
49 f = open(absolute_path, 'r')
53 return absolute_path, contents
59 absolute_path = os.path.join(self._root_dir, filename)
60 return self._find_and_load_filename(absolute_path)
66 absolute_path = os.path.join(self._root_dir, filename)
67 return self._find_and_load_filename(absolute_path)
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 106 absolute_path = affected_file.AbsoluteLocalPath()
107 if not os.path.exists(absolute_path):
113 contents = _ReadFile(absolute_path)
120 absolute_path])
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 150 def get_this_script_path_(absolute_path):
151 absolute_path = os.path.abspath(absolute_path)
162 fill_recursive(absolute_path, 4)
  /external/chromium_org/storage/browser/fileapi/
external_mount_points.h 102 bool GetVirtualPath(const base::FilePath& absolute_path,
  /external/chromium_org/tools/
licenses.py 250 absolute_path = os.path.join(root, filename[1:])
252 absolute_path = os.path.join(root, path, filename)
253 if os.path.exists(absolute_path):
254 return absolute_path
  /external/chromium_org/ppapi/proxy/
file_ref_resource.cc 200 std::string absolute_path; local
202 BROWSER, PpapiHostMsg_FileRef_GetAbsolutePath(), &absolute_path);
205 absolute_path_var_ = new StringVar(absolute_path);
  /external/chromium_org/chrome/browser/extensions/
component_loader.cc 185 base::FilePath absolute_path = base::MakeAbsoluteFilePath(path); local
188 file_util::LoadManifest(absolute_path, &error));
191 absolute_path.value() << "'. " << error;
194 Remove(GenerateId(manifest.get(), absolute_path));
196 return Add(manifest.release(), absolute_path);
  /art/runtime/
oat_file.cc 160 char* absolute_path = realpath(elf_filename.c_str(), NULL); local
161 if (absolute_path == NULL) {
165 dlopen_handle_ = dlopen(absolute_path, RTLD_NOW);
166 free(absolute_path);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/renamepackage/
ApplicationPackageNameRefactoring.java 381 String absolute_path = AndroidManifest.combinePackageAndClassName( local
386 addQuotes(absolute_path));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover_unittest.py 82 return self.host.scm().absolute_path('LayoutTests', *paths)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py     [all...]

Completed in 682 milliseconds