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

1 23 4 5 6 7 8 91011

  /external/skia/tools/
reformat-json.py 47 parser.add_argument('filenames', metavar='FILENAME', nargs='+',
50 for filename in args.filenames:
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
checker.py 119 def Run(self, filenames, error_handler):
120 """Run GJsLint on the given filenames.
123 filenames: The filenames to check
129 for filename in filenames:
  /external/chromium_org/build/android/
generate_emma_html.py 30 for root, _, filenames in os.walk(root_dir):
31 basenames = fnmatch.filter(filenames, '*.' + ext)
  /external/chromium_org/third_party/closure_linter/closure_linter/
checker.py 119 def Run(self, filenames, error_handler):
120 """Run GJsLint on the given filenames.
123 filenames: The filenames to check
129 for filename in filenames:
  /external/chromium_org/ui/base/dragdrop/
os_exchange_data_provider_aura.h 35 virtual void SetFilenames(const std::vector<FileInfo>& filenames) OVERRIDE;
43 virtual bool GetFilenames(std::vector<FileInfo>* filenames) const OVERRIDE;
  /external/deqp/executor/tools/
xeTestLogCompare.cpp 116 vector<string> filenames; member in struct:CommandLine
270 XE_CHECK(!cmdLine.filenames.empty());
275 results.resize(cmdLine.filenames.size());
279 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++)
281 readers.push_back(de::SharedPtr<LogFileReader>(new LogFileReader(results[ndx], cmdLine.filenames[ndx].c_str())));
285 for (int ndx = 0; ndx < (int)cmdLine.filenames.size(); ndx++)
290 batchNames.push_back(de::FilePath(cmdLine.filenames[ndx].c_str()).getBaseName());
379 std::cout << argv[0] << ": [options] [filenames]\n";
387 cmdLine.filenames = opts.getArgs();
  /external/llvm/utils/lint/
cpp_lint.py 86 def CppLintMain(filenames):
87 all_lint = common_lint.RunLintOverAllFiles(CppLint(), filenames)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 49 for dirpath, dirnames, filenames in os.walk(proj_dir):
50 for filename in filenames:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
support.py 49 for dirpath, dirnames, filenames in os.walk(proj_dir):
50 for filename in filenames:
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
linemap.c 58 /* Shared storage for filenames */
59 /*@only@*/ /*@null@*/ HAMT *filenames; member in struct:yasm_linemap
130 mapping->filename = HAMT_insert(linemap->filenames, copy, copy,
169 linemap->filenames = HAMT_create(0, yasm_internal_error_);
202 if (linemap->filenames)
203 HAMT_destroy(linemap->filenames, filename_delete_one);
276 return HAMT_traverse(linemap->filenames, d, (int (*) (void *, void *))func);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-symline.c 349 if (!dbgfmt_cv->filenames[filenum].filename ||
350 strcmp(dbgfmt_cv->filenames[filenum].filename, filename) == 0)
360 dbgfmt_cv->filenames = yasm_xrealloc(dbgfmt_cv->filenames,
363 dbgfmt_cv->filenames[i].pathname = NULL;
364 dbgfmt_cv->filenames[i].filename = NULL;
365 dbgfmt_cv->filenames[i].str_off = 0;
366 dbgfmt_cv->filenames[i].info_off = 0;
378 yasm_md5_final(dbgfmt_cv->filenames[filenum].digest, &context);
383 if (dbgfmt_cv->filenames[filenum].pathname
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-line.c 206 if (!dbgfmt_dwarf2->filenames[filenum].filename ||
207 (dbgfmt_dwarf2->filenames[filenum].dir == dir
208 && strcmp(dbgfmt_dwarf2->filenames[filenum].filename,
219 dbgfmt_dwarf2->filenames = yasm_xrealloc(dbgfmt_dwarf2->filenames,
222 dbgfmt_dwarf2->filenames[i].pathname = NULL;
223 dbgfmt_dwarf2->filenames[i].filename = NULL;
224 dbgfmt_dwarf2->filenames[i].dir = 0;
229 if (dbgfmt_dwarf2->filenames[filenum].pathname)
230 yasm_xfree(dbgfmt_dwarf2->filenames[filenum].pathname)
    [all...]
  /libcore/luni/src/main/java/java/io/
File.java 47 * <p>On Android strings are converted to UTF-8 byte sequences when sending filenames to
60 * Reusing a Random makes temporary filenames slightly harder to predict.
66 * The system-dependent character used to separate components in filenames ('/').
75 * The system-dependent string used to separate components in filenames ('/').
752 * {@code null} then all filenames match.
762 String[] filenames = list(); local
763 if (filter == null || filenames == null) {
764 return filenames;
766 List<String> result = new ArrayList<String>(filenames.length);
767 for (String filename : filenames) {
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ResourceExtractor.java 38 private static final String PAK_FILENAMES = "Pak filenames";
68 HashSet<String> filenames = (HashSet<String>) prefs.getStringSet( local
74 && filenames.size() >= sMandatoryPaks.length) {
76 for (String file : filenames) {
143 filenames.add(file);
183 prefs.edit().putStringSet(PAK_FILENAMES, filenames).apply();
  /external/chromium_org/native_client_sdk/src/build_tools/
verify_ppapi.py 40 def PartitionFiles(filenames):
45 for filename in filenames:
140 # For ppapi_cpp_private, we don't fail if there are expected filenames...
142 # unexpected filenames, though.
164 for lib_name, filenames in lib_files.iteritems():
165 if not filenames:
169 GetChangedAndRemovedFilenames(filenames, directory_list)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
finder.py 52 filenames = self.filesystem.files_under(search_directory, file_filter=file_filter)
53 return [self.to_module(filename) for filename in filenames]
68 filenames = self.filesystem.files_under(self.search_directory)
69 for filename in filenames:
70 if filename.endswith(".pyc") and filename[:-1] not in filenames:
  /external/chromium_org/tools/clang/scripts/
run_tool.py 71 normalize the filenames.
75 A dictionary mapping filenames to the associated edits.
128 def __init__(self, toolname, build_directory, filenames):
134 filenames: The files to run the tool over.
138 self.__filenames = filenames
190 edits: A dict mapping filenames to Edit instances that apply to that file.
284 filenames = frozenset(_GetFilesFromGit(argv[2:]))
288 [f for f in filenames
295 if k in filenames},
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipEntryTest.java 53 // Create a zip file containing non-ASCII filenames.
55 List<String> filenames = Arrays.asList("us-ascii", local
60 for (String filename : filenames) {
68 for (String filename : filenames) {
76 assertTrue(entry.getName(), filenames.contains(entry.getName()));
79 assertEquals(filenames.size(), entryCount);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
scm.py 67 filenames = []
75 filenames.append(filename)
76 return filenames
  /external/chromium_org/tools/
sort-headers.py 175 opts, filenames = parser.parse_args()
177 if len(filenames) < 1:
181 for filename in filenames:
  /external/chromium-trace/trace-viewer/build/
generate_standalone_timeline_view.py 61 filenames = _get_input_filenames()
62 load_sequence = parse_deps.calc_load_sequence(filenames, srcdir)
90 filenames = _get_input_filenames()
91 load_sequence = parse_deps.calc_load_sequence(filenames, srcdir)
  /external/chromium_org/chrome/browser/ui/webui/extensions/
install_extension_handler.cc 71 if (drop_data->filenames.empty()) {
76 const ui::FileInfo& file_info = drop_data->filenames.front();
  /external/chromium_org/ppapi/generators/
idl_option.py 96 opts, filenames = getopt.getopt(args, short_opts, long_opts)
108 return filenames
idl_parser.py     [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 23 pattern: Unix shell-style pattern for filtering the filenames to import.
29 for dir_path, _, filenames in os.walk(start_dir):
30 for filename in filenames:
31 # Filter out unwanted filenames.
64 pattern: Unix shell-style pattern for filtering the filenames to import.

Completed in 2284 milliseconds

1 23 4 5 6 7 8 91011