HomeSort by relevance Sort by last modified time
    Searched refs:filenames (Results 126 - 150 of 271) sorted by null

1 2 3 4 56 7 8 91011

  /external/chromium_org/build/android/gyp/util/
build_utils.py 52 for root, _dirnames, filenames in os.walk(directory):
53 matched_files = fnmatch.filter(filenames, filename_filter)
  /external/chromium_org/chrome/test/mini_installer/
test_installer.py 182 def ParsePropertyFiles(directory, filenames):
186 property_filenames: An array of Property filenames.
195 for filename in filenames:
  /external/chromium_org/ppapi/generators/
idl_generator.py 269 filenames = ParseOptions(args)
270 ast = ParseFiles(filenames)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 103 for (dirpath, dirnames, filenames) in os.walk(path):
108 for filename in filenames:
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
layout_test_finder.py 65 def _read_test_names_from_file(self, filenames, test_path_separator):
68 for filename in filenames:
  /external/chromium_org/third_party/protobuf/python/
ez_setup.py 249 def update_md5(filenames):
254 for name in filenames:
setup.py 122 for (dirpath, dirnames, filenames) in os.walk("."):
123 for filename in filenames:
  /external/chromium_org/tools/grit/
grit_info.py 58 for root, dirs, filenames in os.walk(grit_root_dir):
59 grit_src = [os.path.join(root, f) for f in filenames
  /external/chromium_org/tools/gyp/tools/
pretty_vcproj.py 113 def FixFilenames(filenames, current_directory):
115 for filename in filenames:
304 # Fix the filenames to be absolute.
  /external/chromium_org/tools/telemetry/
cloud_storage 92 for root, _, filenames in os.walk(path):
93 for filename in filenames:
  /external/chromium_org/tools/valgrind/
tsan_analyze.py 220 files: A list of filenames.
263 filenames = args
267 return analyzer.Report(filenames, None)
valgrind_test.py 472 filenames = glob.glob(self.log_dir + "/" + self.ToolName() + ".*")
478 for f in filenames if re.search("\.[0-9]+\.[0-9]+$", f)])
483 return analyzer.Report(filenames, None, check_sanity)
507 ppid_filenames = [f for f in filenames \
784 filenames = glob.glob(self.log_dir + "/tsan.*")
786 ret = analyzer.Report(filenames, None, check_sanity)
    [all...]
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_win.cc 355 const std::vector<FileInfo>& filenames) {
356 for (size_t i = 0; i < filenames.size(); ++i) {
357 STGMEDIUM* storage = GetStorageForFileName(filenames[i].path);
434 std::vector<base::string16> filenames; local
435 bool success = ClipboardUtil::GetFilenames(source_object_, &filenames);
437 *path = base::FilePath(filenames[0]);
442 std::vector<FileInfo>* filenames) const {
447 filenames->push_back(
    [all...]
os_exchange_data_provider_win.h 157 virtual void SetFilenames(const std::vector<FileInfo>& filenames);
169 virtual bool GetFilenames(std::vector<FileInfo>* filenames) const;
  /external/jsoncpp/
doxybuild.py 11 def find_program(*filenames):
13 @param filenames: a list of possible names of the program to search for
18 for filename in filenames:
  /external/protobuf/python/
ez_setup.py 241 def update_md5(filenames):
246 for name in filenames:
  /frameworks/base/tools/layoutlib/rename_font/
build_font.py 81 for dirname, dirnames, filenames in os.walk(src_dir):
82 for filename in filenames:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 165 for dirpath, dirnames, filenames in os.walk(base_dir):
166 for name in filenames:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 165 for dirpath, dirnames, filenames in os.walk(base_dir):
166 for name in filenames:
  /external/harfbuzz_ng/test/shaping/
hb_test_tools.py 499 for dirpath, dirnames, filenames in os.walk (s, followlinks=True):
504 if f in filenames:
505 filenames.remove (f)
507 filenames.sort ()
511 for f in filenames:
  /external/chromium_org/ui/base/l10n/
l10n_util_unittest.cc 112 std::string filenames[] = { local
128 for (size_t i = 0; i < arraysize(filenames); ++i) {
130 filenames[i] + ".pak");
  /external/deqp/modules/gles2/functional/
es2fTextureWrapTests.cpp 60 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames);
106 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const std::vector<std::string>& filenames)
118 , m_filenames (filenames)
  /ndk/sources/host-tools/make-3.81/
read.c 134 static void record_files PARAMS ((struct nameseq *filenames, char *pattern, char *pattern_percent,
138 static void record_target_var PARAMS ((struct nameseq *filenames, char *defn,
468 struct nameseq *filenames = 0;
479 if (filenames != 0) \
482 record_files (filenames, pattern, pattern_percent, deps, \
486 filenames = 0; \
499 The strategy is to accumulate target names in FILENAMES, dependencies
545 if (filenames != 0)
804 /* If no filenames, it's a no-op. */
1005 filenames = multi_glob (parse_file_seq (&p2, '\0'
464 struct nameseq *filenames = 0; local
    [all...]
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
select_file_dialog_impl_gtk2.cc 587 GSList* filenames = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(dialog)); local
588 if (!filenames) {
594 for (GSList* iter = filenames; iter != NULL; iter = g_slist_next(iter)) {
601 g_slist_free(filenames);
select_file_dialog_impl_kde.cc 492 std::vector<std::string> filenames; local
493 Tokenize(output, "\n", &filenames);
495 for (std::vector<std::string>::iterator iter = filenames.begin();
496 iter != filenames.end(); ++iter) {

Completed in 938 milliseconds

1 2 3 4 56 7 8 91011