Searched refs:filename (Results 251 - 275 of 2845) sorted by relevance

<<11121314151617181920>>

/external/libunwind/include/
H A Dlibunwind-coredump.h40 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/
H A Dos_misc.c53 /* 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/
H A Du_dl.c45 util_dl_open(const char *filename) argument
48 return (struct util_dl_library *)dlopen(filename, RTLD_LAZY | RTLD_GLOBAL);
50 return (struct util_dl_library *)LoadLibraryA(filename);
/external/mesa3d/src/glsl/builtins/tools/
H A Dgenerate_builtins.py27 for filename in glob(path.join(path.join(builtins_dir, 'ir'), '*.ir')):
28 function_name = path.basename(filename).split('.')[0]
29 with open(filename) as f:
33 for filename in glob(path.join(path.join(builtins_dir, 'glsl'), '*.glsl')):
34 function_name = path.basename(filename).split('.')[0]
35 (output, returncode) = run_compiler([filename])
37 sys.stderr.write("Failed to compile builtin: " + filename + "\n")
99 def write_profile(filename, profile):
100 (proto_ir, returncode) = run_compiler([filename])
123 for (filename, profil
[all...]
/external/skia/dm/
H A DDMExpectations.h27 SkString filename = task.name(); variable
28 filename.append(".png");
29 const skiagm::Expectations expectations = fGMExpectations.get(filename.c_str());
/external/chromium_org/native_client_sdk/src/tools/
H A Dfix_deps.py57 def FixupDepFile(filename, output_filename=None):
58 if not os.path.exists(filename):
59 raise Error('File not found: %s' % filename)
62 output_filename = filename
67 with open(filename) as infile:
70 raise Error('Already processed: %s' % filename)
87 parser.add_option('-o', '--output', help='Output filename (defaults to '
H A Dcreate_html.py111 for filename in filenames:
112 if not os.path.exists(filename):
113 raise Error('file not found: %s' % filename)
115 if not os.path.isfile(filename):
116 raise Error('specified input is not a file: %s' % filename)
118 basename, ext = os.path.splitext(filename)
120 raise Error('input file must be .nexe, .pexe or .nmf: %s' % filename)
125 nmf = filename
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DFormDataList.h41 Item(PassRefPtrWillBeRawPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { } argument
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);
H A DDOMFormData.cpp65 void DOMFormData::append(const String& name, Blob* blob, const String& filename) argument
68 appendBlob(name, blob, filename);
H A DFormData.idl39 void append(DOMString name, Blob value, optional DOMString filename);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dconcatenate_module_scripts.py33 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/
H A Ddiscover.py28 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/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusFontCollection.h108 InstalledFontCollection::InstallFontFile(IN const WCHAR* filename) argument
110 return SetStatus(DllExports::GdipInstallFontFile(nativeFontCollection, filename));
114 InstalledFontCollection::UninstallFontFile(IN const WCHAR* filename) argument
116 return SetStatus(DllExports::GdipUninstallFontFile(nativeFontCollection, filename));
134 PrivateFontCollection::AddFontFile(IN const WCHAR* filename) argument
136 return SetStatus(DllExports::GdipPrivateAddFontFile(nativeFontCollection, filename));
/external/chromium-trace/trace-viewer/build/
H A Dparse_deps.py34 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, content
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derroroutput.py25 def GetUnixErrorOutput(filename, error, new_error=False):
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dfixjsstyle.py53 for filename in files:
54 style_checker.Check(filename)
/external/chromium_org/chromeos/
H A Dchromeos_test_utils.cc15 const std::string& filename,
27 *data_dir = path.Append(filename);
14 GetTestDataPath(const std::string& component, const std::string& filename, base::FilePath* data_dir) argument
/external/chromium_org/components/nacl/browser/
H A Dnacl_file_host.h35 const std::string& filename,
39 // Return true if the filename requested is valid for opening.
41 bool PnaclCanOpenFile(const std::string& filename,
/external/chromium_org/media/base/
H A Dmedia_file_checker_unittest.cc14 static void RunMediaFileChecker(const std::string& filename, bool expectation) { argument
15 base::File file(GetTestDataFilePath(filename),
/external/chromium_org/mojo/public/tools/bindings/
H A Dmojom_bindings_generator.py94 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/
H A Dgenerate_notice.py33 # filename.
35 for filename in files:
36 license_text = open(filename).read()
38 license_dict.setdefault(license_text, []).append(filename)
47 for filename in sorted(license_filenames):
48 filename = os.path.relpath(filename, root)
49 license_dir = os.path.dirname(filename)
54 output_file.write(' (Cf. %s):\n' % (filename,))
H A Dverify_filelist.py23 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_n
[all...]
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Ddev_fs_for_testing.h23 bool Exists(const char* filename) { argument
25 if (Open(nacl_io::Path(filename), O_RDONLY, &node))
/external/chromium_org/third_party/WebKit/Source/platform/fonts/linux/
H A DFontCacheLinux.cpp45 fallbackFont->filename = webFallbackFont.filename;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DFilePrintStream.cpp44 PassOwnPtr<FilePrintStream> FilePrintStream::open(const char* filename, const char* mode) argument
46 FILE* file = fopen(filename, mode);

Completed in 456 milliseconds

<<11121314151617181920>>