HomeSort by relevance Sort by last modified time
    Searched refs:filename (Results 226 - 250 of 2618) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_genc.h 76 writeCCode(const char *filename, const char *destdir, const char *optName, const char *optFilename, char *outFilePath);
79 writeAssemblyCode(const char *filename, const char *destdir, const char *optEntryPoint, const char *optFilename, char *outFilePath);
82 writeObjectCode(const char *filename, const char *destdir, const char *optEntryPoint, const char *optMatchArch, const char *optFilename, char *outFilePath);
  /external/chromium_org/third_party/libvpx/
unpack_lib_posix.sh 61 filename="${f##*/}"
63 if [ -z "$(echo $filename | grep $1)" ]; then
68 # echo "Extract $filename from archive to $out_dir/$1."
69 $ar p $lib_file $filename > $out_dir/$1
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_misc.c 53 /* If the GALLIUM_LOG_FILE environment variable is set to a valid filename,
60 const char *filename = os_get_option("GALLIUM_LOG_FILE"); local
61 if (filename)
62 fout = fopen(filename, "w");
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_dl.c 45 util_dl_open(const char *filename)
48 return (struct util_dl_library *)dlopen(filename, RTLD_LAZY | RTLD_GLOBAL);
50 return (struct util_dl_library *)LoadLibraryA(filename);
  /external/chromium_org/tools/gyp/test/small/
gyptest-small.py 38 for filename in files_to_test:
40 name = os.path.splitext(os.path.split(filename)[1])[0]
42 full_filename = os.path.join(test._cwd, filename)
  /external/chromium_org/tools/idl_parser/
idl_parser_test.py 51 for filename in self.filenames:
52 filenode = ParseFile(self.parser, filename)
55 filename)
66 def _TestNode(self, filename, node):
72 filename, value, str(node))
77 filename, value, str(node)))
84 filename, key, expect, actual)
91 filename, lineno, value, quick)
95 for filename in self.filenames:
96 filenode = ParseFile(self.parser, filename)
    [all...]
  /external/chromium_org/tools/
remove_stale_pyc_files.py 15 for filename in filenames:
16 root, ext = os.path.splitext(filename)
20 pyc_path = os.path.join(dirname, filename)
  /external/icu/icu4c/source/tools/toolutil/
pkg_genc.h 76 writeCCode(const char *filename, const char *destdir, const char *optName, const char *optFilename, char *outFilePath);
79 writeAssemblyCode(const char *filename, const char *destdir, const char *optEntryPoint, const char *optFilename, char *outFilePath);
82 writeObjectCode(const char *filename, const char *destdir, const char *optEntryPoint, const char *optMatchArch, const char *optFilename, char *outFilePath);
  /external/libunwind/include/
libunwind-coredump.h 40 extern struct UCD_info *_UCD_create(const char *filename);
47 extern int _UCD_add_backing_file_at_segment(struct UCD_info *, int phdr_no, const char *filename);
50 const char *filename);
  /external/mesa3d/src/gallium/auxiliary/os/
os_misc.c 53 /* If the GALLIUM_LOG_FILE environment variable is set to a valid filename,
60 const char *filename = os_get_option("GALLIUM_LOG_FILE"); local
61 if (filename)
62 fout = fopen(filename, "w");
  /external/mesa3d/src/gallium/auxiliary/util/
u_dl.c 45 util_dl_open(const char *filename)
48 return (struct util_dl_library *)dlopen(filename, RTLD_LAZY | RTLD_GLOBAL);
50 return (struct util_dl_library *)LoadLibraryA(filename);
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormDataList.h 41 Item(PassRefPtrWillBeRawPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { }
45 const String& filename() const { return m_filename; } function in class:blink::FormDataList::Item
75 void appendBlob(const String& key, PassRefPtrWillBeRawPtr<Blob> blob, const String& filename = String())
78 appendBlob(blob, filename);
97 void appendBlob(PassRefPtrWillBeRawPtr<Blob>, const String& filename);
DOMFormData.cpp 65 void DOMFormData::append(const String& name, Blob* blob, const String& filename)
68 appendBlob(name, blob, filename);
FormData.idl 39 void append(DOMString name, Blob value, optional DOMString filename);
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
concatenate_module_scripts.py 33 def read_file(filename):
34 with open(path.normpath(filename), 'rt') as file:
38 def write_file(filename, content):
40 if path.exists(filename):
41 os.remove(filename)
42 with open(filename, 'wt') as file:
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 28 for filename in filenames:
30 if filename.startswith('.') or filename.startswith('_'):
32 if os.path.splitext(filename)[1] != '.py':
34 if not fnmatch.fnmatch(filename, pattern):
38 module_rel_path = os.path.relpath(os.path.join(dir_path, filename),
  /external/clang/utils/analyzer/
update_plist_test.pl 14 my $filename = $fh->filename;
50 `cp $filename $testFile`;
  /bootable/recovery/tools/ota/
add-property-tag.c 67 const char *filename = "/system/build.prop"; local
75 case 'f': filename = optarg; break;
94 FILE *input = fopen(filename, "r");
96 fprintf(stderr, "can't read %s: %s\n", filename, strerror(errno));
101 snprintf(tmpname, sizeof(tmpname), "%s.tmp", filename);
128 fprintf(stderr, "property %s not found in %s\n", propname, filename);
133 if (rename(tmpname, filename)) {
135 tmpname, filename, strerror(errno));
  /external/chromium-trace/trace-viewer/build/
parse_deps.py 34 code is responsible for figuring out what filename corresponds to 'bar' given
56 assert current_module.filename
58 filename = pathy_name + extension
59 absolute_path = os.path.join(self._root_dir, filename)
65 def find_and_load_raw_script(self, current_module, filename):
66 absolute_path = os.path.join(self._root_dir, filename)
78 def __init__(self, name, filename, contents):
80 self.filename = filename
89 def __init__(self, name, filename, contents)
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
erroroutput.py 25 def GetUnixErrorOutput(filename, error, new_error=False):
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
  /external/chromium_org/chromeos/
chromeos_test_utils.cc 15 const std::string& filename,
27 *data_dir = path.Append(filename);
  /external/chromium_org/media/base/
media_file_checker_unittest.cc 14 static void RunMediaFileChecker(const std::string& filename, bool expectation) {
15 base::File file(GetTestDataFilePath(filename),
  /external/chromium_org/mojo/public/tools/bindings/
mojom_bindings_generator.py 94 def ProcessFile(args, remaining_args, generator_modules, filename,
97 if filename in _processed_files:
98 return _processed_files[filename]
104 if filename in _imported_filename_stack:
105 print "%s: Error: Circular dependency" % filename + \
106 MakeImportStackMessage(_imported_filename_stack + [filename])
110 with open(filename) as f:
113 print "%s: Error: %s" % (e.filename, e.strerror) + \
114 MakeImportStackMessage(_imported_filename_stack + [filename])
118 tree = Parse(source, filename)
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
verify_filelist.py 23 def __init__(self, filename, line, message):
25 self.filename = filename
30 return '%s:%d: %s' % (self.filename, self.line, self.message)
50 def __init__(self, filename, platform=None, contents=None):
53 self.filename = filename
58 raise ParseException(self.filename, 1,
62 with open(filename) as f:
77 raise ParseException(self.filename, line_no, msg
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
FontCacheLinux.cpp 45 fallbackFont->filename = webFallbackFont.filename;

Completed in 649 milliseconds

1 2 3 4 5 6 7 8 91011>>