HomeSort by relevance Sort by last modified time
    Searched refs:relpath (Results 26 - 50 of 116) sorted by null

12 3 4 5

  /external/chromium_org/ui/resources/resource_check/
resource_scale_factors.py 63 repository_path = self.input_api.os_path.relpath(
78 relative_path = self.input_api.os_path.relpath(f.LocalPath(),
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 94 relpath = os.path.relpath(makeexe, makepath)
97 outpath = os.path.join(relpath, 'make.exe')
258 rel_path = os.path.relpath(pepperdir, os.path.dirname(out_path))
verify_ppapi.py 76 rel_root = os.path.relpath(root, relative_to)
176 rel_dsc_filename = os.path.relpath(dsc_filename, SRC_DIR)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
layout_tests_mover.py 93 return self._filesystem.normpath(self._filesystem.join(destination, self._filesystem.relpath(path, origin)))
139 expectations = expectations.union(self._get_expectations_for_test(model, self._filesystem.relpath(test, self._layout_tests_root)))
182 self._scm.add(self._filesystem.relpath(expectations_file, self._scm.checkout_root))
218 return self._filesystem.relpath(new_absolute_reference, new_root)
  /development/ndk/tools/
headers-diff-bionic-vs-ndk.py 60 relpath = os.path.relpath(path, includes_root)
61 includes.append((relpath, self.scan_dir(path)))
  /external/chromium_org/build/android/
asan_symbolize.py 42 asan_libs += [os.path.relpath(os.path.join(src_dir, f))
  /external/chromium_org/ppapi/
generate_ppapi_include_tests.py 61 relative_root = os.path.relpath(root, start_root)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
main.py 70 rel_path = filesystem.relpath(path, checkout_root)
  /external/chromium_org/tools/checkdeps/
java_checker.py 95 include_path = os.path.relpath(
  /external/chromium_org/tools/checklicenses/
checklicenses.py 431 filename = os.path.relpath(filename.strip(), options.base_directory)
  /external/chromium_org/tools/generate_shim_headers/
generate_shim_headers.py 52 os.path.relpath(root, source_tree_root))
  /external/chromium_org/tools/json_schema_compiler/
ppapi_generator_test.py 17 os.path.dirname(os.path.relpath(os.path.normpath(filename),
24 relpath = os.path.relpath(os.path.normpath(filename),
26 namespace = api_model.AddNamespace(api_def, relpath)
  /external/chromium_org/v8/tools/generate_shim_headers/
generate_shim_headers.py 69 os.path.relpath(root, source_tree_root))
  /external/icu4c/tools/tzcode/
zdump.c 986 static void getzones(char * basedir, char * relpath, struct listentry ** last, int * count) {
992 if (relpath != NULL) {
994 strcat(path, relpath);
999 if (strstr(relpath, ".tab") == NULL && strcmp(relpath, "Etc/Unknown") != 0) {
1003 if ((pzonename = malloc(strlen(relpath) + 1)) == NULL) {
1006 strcpy(pzonename, relpath);
1027 if (relpath != NULL) {
1028 strcpy(subpath, relpath);
  /system/media/camera/docs/
metadata-generate 41 function relpath() { function
42 python -c "import os.path; print os.path.relpath('$1', '$PWD')"
65 echo "OK: Generated $(relpath "$out")"
70 echo "FAIL: Errors while generating $(relpath "$out")" >& 2
125 echo "FAIL: Errors in inserting into $(relpath ${dst_file})" >& 2
131 echo "FAIL: Errors in inserting into $(relpath ${dst_file})" >& 2
137 echo "FAIL: Errors in inserting into $(relpath ${dst_file})" >& 2
152 echo "OK: Inserted $(relpath "$src_part") into $(relpath "$dst_file")"
  /external/chromium_org/remoting/host/installer/
build-installer-archive.py 69 rel_path = os.path.relpath(full_path, directory)
108 src_file = os.path.relpath(src_file, root)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 230 def relpath(self, path, start='.'): member in class:FileSystem
231 return os.path.relpath(path, start)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
queries.py 208 def _platform_for_path(self, relpath):
209 platform_matchobj = self._platform_regexp.match(relpath)
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zdump.c 986 static void getzones(char * basedir, char * relpath, struct listentry ** last, int * count) {
992 if (relpath != NULL) {
994 strcat(path, relpath);
999 if (strstr(relpath, ".tab") == NULL) {
1003 if ((pzonename = malloc(strlen(relpath) + 1)) == NULL) {
1006 strcpy(pzonename, relpath);
1027 if (relpath != NULL) {
1028 strcpy(subpath, relpath);
  /external/chromium_org/tools/grit/
grit_info.py 57 grit_root_dir = os.path.relpath(os.path.dirname(__file__), os.getcwd())
97 return [os.path.relpath(f, cwd) for f in sorted(files)]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner.py 150 relpath = filesystem.relpath(arg, self._base_path)
151 if filesystem.exists(filesystem.join(self._base_path, relpath)):
152 paths.append(filesystem.normpath(relpath))
160 relative_path = filesystem.relpath(path, self._base_path).replace('\\', '/')
  /bionic/libc/tools/
gensyscalls.py 29 def create_file( relpath ):
30 dir = os.path.dirname( bionic_temp + relpath )
32 return open( bionic_temp + relpath, "w" )
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
WebKitHitTestTest.java 175 String relpath = "/foo.html";
176 String fullpath = mWebServer.getResponseUrl(relpath);
177 String page = fullPageLink(relpath, ANCHOR_TEXT);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
loader.py 15 from os.path import relpath namespace
17 from unittest2.compatibility import relpath namespace
230 _relpath = relpath(path, self._top_level_dir)
  /external/chromium_org/build/android/gyp/
lint.py 31 return os.path.relpath(os.path.abspath(path), _SRC_ROOT)

Completed in 1620 milliseconds

12 3 4 5