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

  /external/chromium_org/tools/checkperms/
checkperms.py 227 def is_ignored(rel_path):
228 """Returns True if rel_path is in our whitelist of files to ignore."""
229 rel_path = rel_path.lower()
231 os.path.basename(rel_path) in IGNORED_FILENAMES or
232 rel_path.startswith(IGNORED_PATHS))
235 def must_be_executable(rel_path):
240 os.path.splitext(rel_path)[1][1:].lower() in EXECUTABLE_EXTENSIONS or
241 rel_path in EXECUTABLE_PATHS)
244 def must_not_be_executable(rel_path)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
main.py 70 rel_path = filesystem.relpath(path, checkout_root)
71 if rel_path.startswith(filesystem.pardir):
93 rel_paths.append(rel_path)
filereader_unittest.py 64 def _create_file(self, rel_path, text):
67 file_path = self.filesystem.join(self._temp_dir, rel_path)
144 rel_path = self.filesystem.join('foo_dir', 'file2.txt')
145 file_path2 = self._create_file(rel_path, 'bar')
  /external/wpa_supplicant_8/src/utils/
os_unix.c 210 char * os_rel2abs_path(const char *rel_path)
216 if (!rel_path)
219 if (rel_path[0] == '/')
220 return os_strdup(rel_path);
242 rel_len = os_strlen(rel_path);
248 os_memcpy(ret + cwd_len + 1, rel_path, rel_len);
os_internal.c 135 char * os_rel2abs_path(const char *rel_path)
140 if (rel_path[0] == '/')
141 return os_strdup(rel_path);
160 rel_len = strlen(rel_path);
166 os_memcpy(ret + cwd_len + 1, rel_path, rel_len);
os_win32.c 142 char * os_rel2abs_path(const char *rel_path)
144 return _strdup(rel_path);
os_none.c 64 char * os_rel2abs_path(const char *rel_path)
66 return NULL; /* strdup(rel_path) can be used here */
os.h 107 * @rel_path: Relative path to a file
114 * buffer, e.g., return strdup(rel_path). This function is only used to find
118 char * os_rel2abs_path(const char *rel_path);
  /development/testrunner/coverage/
coverage_targets.py 120 rel_path = src_element.getAttribute(self._PATH_ATTR)
121 target.AddPath(os.path.join(target.GetBuildPath(), rel_path))
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_object.h 45 // Assumes |out_mount| and |rel_path| are non-NULL.
48 Path* rel_path);
  /external/chromium_org/native_client_sdk/src/build_tools/tests/
sdktools_test.py 100 def _BuildUpdaterArchive(self, rel_path, revision):
104 rel_path: The relative path to build the updater.
110 self._BuildUpdater(os.path.join(self.basedir, rel_path), revision)
112 new_sdk_tools_tgz = os.path.join(self.basedir, rel_path, 'sdk_tools.tgz')
118 archive.url = self.server.GetURL('%s/sdk_tools.tgz' % (rel_path,))
update_nacl_manifest_test.py 52 def MakeGsUrl(rel_path):
53 return update_nacl_manifest.GS_BUCKET_PATH + rel_path
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem_mock.py 350 rel_path = path[len(common_root):]
352 if not rel_path:
355 if rel_path[0] == self.sep:
359 rel_path = rel_path.lstrip(self.sep)
362 # path = "/tmp/foobar", start = "/tmp/foo" -> rel_path = "bar"
365 rel_path = path[len(common_root) + 1:]
367 return dot_dot + rel_path
  /external/chromium_org/remoting/host/installer/
build-installer-archive.py 69 rel_path = os.path.relpath(full_path, directory)
70 zip.write(full_path, os.path.join(zipfile_base, rel_path))
  /external/chromium_org/native_client_sdk/src/tools/tests/
oshelpers_test.py 67 def MakeFile(self, rel_path, size):
68 with open(os.path.join(self.tempdir, rel_path), 'wb') as f:
70 return rel_path
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 245 rel_path = os.path.relpath(pepperdir, os.path.dirname(out_path))
248 'rel_sdk' : rel_path,
  /external/chromium_org/remoting/webapp/
build-webapp.py 53 rel_path = os.path.relpath(full_path, directory)
54 zip.write(full_path, os.path.join(zipfile_base, rel_path))
  /external/chromium_org/chrome/tools/build/win/
create_installer_archive.py 443 " <probing privatePath='{rel_path}'/>\n"
451 chrome_exe_config_file.write(exe_config.format(rel_path=current_version))
458 setup_exe_config_file.write(exe_config.format(rel_path='..'))
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 

Completed in 238 milliseconds