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

1 2

  /bionic/libc/bionic/
lfs64_support.cpp 30 int ftw64(const char *dirpath,
32 return ftw(dirpath, reinterpret_cast<ftw_fn>(fn), nopenfd);
35 int nftw64(const char * dirpath,
38 return nftw(dirpath, reinterpret_cast<nftw_fn>(fn), nopenfd, flags);
  /bionic/tests/
TemporaryFile.h 23 GenericTemporaryFile(const char* dirpath = NULL) {
24 if (dirpath != NULL) {
25 init(dirpath);
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/support/
find_files.py 15 for dirpath, _, filenames in walk(top, **kwargs):
17 matches.append(join(dirpath, filename))
  /external/chromium_org/tools/gyp/test/mac/
gyptest-framework.py 20 for dirpath, _, files in os.walk(path):
22 result.append(os.path.join(dirpath, f)[len(path) + 1:])
gyptest-app.py 28 for dirpath, _, files in os.walk(path):
30 result.append(os.path.join(dirpath, f)[len(path) + 1:])
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
treescan.py 60 for dirpath, dirnames, filenames in os.walk(root, onerror=OnError):
73 fullpath = os.path.join(dirpath, filename)
  /external/chromium-trace/trace-viewer/build/
check_grit.py 31 for (dirpath, dirnames, filenames) in os.walk('src/images'):
33 known_images.append(os.path.join(dirpath, name))
check_gyp.py 25 for (dirpath, dirnames, filenames) in os.walk('src'):
28 known_files.append(os.path.join(dirpath, name))
generate_deps_js_contents.py 14 for dirpath, dirnames, filenames in os.walk(srcdir):
16 all_filenames.append(os.path.join(dirpath, f))
generate_template_contents.py 14 for dirpath, dirnames, filenames in os.walk(srcdir):
16 all_filenames.append(os.path.join(dirpath, f))
  /external/chromium_org/tools/telemetry/telemetry/web_components/
web_components_project.py 14 for dirpath, _, filenames in os.walk(source_path):
18 x = os.path.abspath(os.path.join(dirpath, f))
  /development/ndk/platforms/android-3/include/
dirent.h 63 extern DIR* opendir(const char* dirpath);
  /external/chromium_org/tools/code_coverage/
croc_html.py 345 print ' ' + cov_dir.dirpath + '/'
348 subdir = self.output_root + '/' + cov_dir.dirpath
352 if cov_dir.dirpath:
353 title = 'Coverage for ' + cov_dir.dirpath + '/'
354 f = self.CreateHtmlDoc(cov_dir.dirpath + '/index.html', title)
361 dirs = [''] + cov_dir.dirpath.split('/')
368 if cov_dir.dirpath:
369 self.AddCaptionForSubdir(body, cov_dir.dirpath)
croc.py 111 def __init__(self, dirpath):
115 dirpath: Full path of directory, '/'-delimited.
117 self.dirpath = dirpath
153 os.path.split(self.dirpath)[1] + '/',
458 for (dirpath, dirnames, filenames) in self.add_files_walk(src_dir):
464 dpath = self.CleanupFilename(dirpath + '/' + d) + '/'
477 local_path = dirpath + '/' + f
583 if parent.dirpath:
584 parent.subdirs[d] = CoveredDir(parent.dirpath + '/' + d
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 90 def filter_all(fs, dirpath, basename):
103 for (dirpath, dirnames, filenames) in os.walk(path):
109 if file_filter(self, dirpath, filename):
110 files.append(self.join(dirpath, filename))
crashlogs.py 51 def is_crash_log(fs, dirpath, basename):
  /external/chromium_org/native_client_sdk/src/build_tools/
build_projects.py 139 dirpath = os.path.join(libdir, '%s_%s_host' % (platform, arch), config)
141 buildbot_common.RemoveDir(dirpath)
142 buildbot_common.MakeDir(dirpath)
146 dirpath = os.path.join(pepperdir, branch)
148 buildbot_common.RemoveDir(dirpath)
149 buildbot_common.MakeDir(dirpath)
  /development/testrunner/test_defs/
test_walker.py 239 dirpath = os.path.dirname(path)
241 return self._FindUpstreamTestFactory(dirpath)
  /external/chromium_org/tools/protoc_wrapper/
protoc_wrapper.py 53 for dirpath, dirnames, filenames in os.walk(real_scan_root):
62 dirpath, filename) + '\n')
  /external/chromium-trace/trace-viewer/
run_dev_server.py 45 for dirpath, dirnames, filenames in os.walk(src_dir):
47 x = os.path.join(dirpath, f)
64 for dirpath, dirnames, filenames in os.walk(test_data_dir):
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
results.py 221 for dirpath, _, filenames in os.walk(root):
223 builder = os.path.basename(dirpath)
226 full_path = os.path.join(dirpath, matching_filename)
compare_to_expectations.py 184 for dirpath, _, filenames in os.walk(root):
186 builder = os.path.basename(dirpath)
189 fullpath = os.path.join(dirpath, matching_filename)
  /external/chromium_org/tools/
licenses.py 363 dirpath = os.path.join(path, dir)
364 if dirpath not in prune_paths:
365 third_party_dirs.add(dirpath)
  /art/runtime/
common_runtime_test.cc 237 void CommonRuntimeTest::ClearDirectory(const char* dirpath) {
238 ASSERT_TRUE(dirpath != nullptr);
239 DIR* dir = opendir(dirpath);
247 std::string filename(dirpath);
common_runtime_test.h 91 void ClearDirectory(const char* dirpath);

Completed in 1332 milliseconds

1 2