Searched refs:filename (Results 126 - 150 of 2845) sorted by relevance

1234567891011>>

/external/chromium_org/tools/idl_parser/
H A Didl_lexer_test.py16 def FileToTokens(lexer, filename):
17 with open(filename, 'rb') as srcfile:
18 lexer.Tokenize(srcfile.read(), filename)
48 for filename in self.filenames:
49 tokens1 = FileToTokens(self.lexer, filename)
59 tokens2[i].value, tokens1[i].value, tokens1[i].lineno, filename)
73 for filename in self.filenames:
74 tokens = FileToTokens(self.lexer, filename)
84 actual_type, expect_type, tokens[index].lineno, filename)
/external/llvm/utils/lint/
H A Dcpp_lint.py13 def VerifyIncludes(filename, lines):
18 filename: the file under consideration as string
46 lint.append((filename, line_num,
57 lint.append((filename, line_num,
62 lint.append((filename, line_num,
76 def RunOnFile(self, filename, lines):
78 lint.extend(VerifyIncludes(filename, lines))
79 lint.extend(common_lint.VerifyLineLength(filename, lines,
81 lint.extend(common_lint.VerifyTabs(filename, lines))
82 lint.extend(common_lint.VerifyTrailingWhitespace(filename, line
[all...]
/external/valgrind/main/memcheck/tests/
H A Dfile_locking.c37 const char* const filename)
42 fd = open(filename, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
82 char filename[256]; local
84 snprintf(filename, sizeof(filename), "/tmp/valgrind-file-locking-test.%d",
87 unlink(filename);
89 if ((fd1 = open_lock_and_map("parent", filename)) >= 0)
102 fd2 = open_lock_and_map("child", filename);
124 unlink(filename);
36 open_lock_and_map(const char* const process_name, const char* const filename) argument
/external/chromium_org/chrome/browser/extensions/api/downloads_internal/
H A Ddownloads_internal_api.cc26 base::FilePath::StringType filename; local
27 EXTENSION_FUNCTION_VALIDATE(args_->GetString(1, &filename));
33 base::FilePath(filename),
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
H A Dtreescan.py67 for filename in filenames:
70 if ignore_hidden and filename.startswith('.'):
73 fullpath = os.path.join(dirpath, filename)
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DDownloadController.java68 String filename, long contentLength) {
80 .setFileName(filename)
92 * @param filename File name of the downloaded file.
96 public void onDownloadStarted(ContentViewCore view, String filename, String mimeType) { argument
100 downloadDelegate.onDownloadStarted(filename, mimeType);
110 String filename, String path, long contentLength, boolean successful, int downloadId) {
115 .setFileName(filename)
119 .setDescription(filename)
133 String filename, String path, long contentLength, boolean successful, int downloadId,
139 .setFileName(filename)
65 newHttpGetDownload(ContentViewCore view, String url, String userAgent, String contentDisposition, String mimeType, String cookie, String referer, boolean hasUserGesture, String filename, long contentLength) argument
109 onDownloadCompleted(Context context, String url, String mimeType, String filename, String path, long contentLength, boolean successful, int downloadId) argument
132 onDownloadUpdated(Context context, String url, String mimeType, String filename, String path, long contentLength, boolean successful, int downloadId, int percentCompleted, long timeRemainingInMs) argument
157 onDangerousDownload(ContentViewCore view, String filename, int downloadId) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dinvalid_file_test.cc30 const char *filename; member in struct:__anon12993::DecodeParam
34 return os << "threads: " << dp.threads << " file: " << dp.filename;
78 const std::string filename = input.filename; local
81 if (filename.substr(filename.length() - 3, 3) == "ivf") {
82 video = new libvpx_test::IVFVideoSource(filename);
83 } else if (filename.substr(filename.length() - 4, 4) == "webm") {
85 video = new libvpx_test::WebMVideoSource(filename);
[all...]
/external/chromium_org/third_party/skia/tools/
H A Dskdiff_utils.h34 /** Given an image filename, returns the name of the file containing
37 SkString filename_to_diff_filename(const SkString& filename);
39 /** Given an image filename, returns the name of the file containing
42 SkString filename_to_white_filename(const SkString& filename);
51 const SkString& filename);
/external/chromium_org/tools/
H A Dremove_stale_pyc_files.py15 for filename in filenames:
16 root, ext = os.path.splitext(filename)
20 pyc_path = os.path.join(dirname, filename)
/external/eigen/bench/btl/generic_bench/static/
H A Dbench_static.hh42 string filename = "bench_" + Action<Interface<REAL_TYPE,10> >::name() + ".dat";
44 INFOS("starting " << filename);
53 dump_xy_file(tab_sizes,tab_mflops,filename);
/external/skia/tools/
H A Dskdiff_utils.h34 /** Given an image filename, returns the name of the file containing
37 SkString filename_to_diff_filename(const SkString& filename);
39 /** Given an image filename, returns the name of the file containing
42 SkString filename_to_white_filename(const SkString& filename);
51 const SkString& filename);
/external/srec/portable/include/
H A DPFileImpl.h41 LCHAR* filename; member in struct:PFileImpl_t
61 * @param filename Name of the file
65 PORTABLE_API ESR_ReturnCode PFileCreateImpl(PFile* self, const LCHAR* filename, ESR_BOOL littleEndian);
75 PORTABLE_API ESR_ReturnCode PFileGetFilenameImpl(PFile* self, LCHAR* filename, size_t* len);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSerializerFoo.java47 protected String filename; field in class:GrammarSerializerFoo
58 public void open(String filename) throws IOException { argument
59 this.filename = filename;
60 FileOutputStream fos = new FileOutputStream(filename);
89 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
99 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
108 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
118 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
128 ErrorManager.error(ErrorManager.MSG_CANNOT_WRITE_FILE, filename);
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
H A Dtest_parser.py42 def __init__(self, options, filename):
44 self.filename = filename
50 self.load_file(filename)
52 def load_file(self, filename):
53 if self.filesystem.isfile(filename):
55 self.test_doc = Parser(self.filesystem.read_binary_file(filename))
58 _log.error("Failed to parse %s", filename)
61 if self.filesystem.isdir(filename):
63 _log.error("Trying to load %s, which is a directory", filename)
[all...]
/external/aac/libMpegTPDec/src/
H A DmpegFileFormat.h108 * \param filename name of the file to be analysed.
112 TRANSPORT_TYPE GetTransportType(const char* filename, FILE_FORMAT *fileFormat);
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derrorhandler.py35 def HandleFile(self, filename, first_token):
36 """Notifies this ErrorHandler that subsequent errors are in filename.
39 filename: The file being linted.
/external/chromium_org/android_webview/native/
H A Daw_assets.h21 bool OpenAsset(const std::string& filename,
/external/chromium_org/chrome/browser/
H A Dlogging_chrome_unittest.cc39 base::FilePath filename = logging::GetLogFileName(); local
41 filename.value().find(FILE_PATH_LITERAL("chrome_debug.log")));
50 base::FilePath filename = logging::GetLogFileName(); local
52 filename.value());
/external/chromium_org/components/translate/core/browser/
H A Dtranslate_event_details.cc12 : filename(in_filename),
/external/chromium_org/native_client_sdk/src/doc/doxygen/
H A Drst_index.py102 def GetName(filename):
103 filename = os.path.splitext(filename)[0]
105 if filename.startswith('struct_p_p_b__'):
106 mangle = filename[7:] # skip "struct_"
107 elif filename.startswith('struct_p_p_p__'):
108 mangle = filename[7:] # skip "struct_"
109 elif filename.startswith('struct_p_p__'):
110 mangle = filename[7:] # skip "struct_"
111 elif filename
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
H A DSQLiteFileSystem.h58 static int openDatabase(const String& filename, sqlite3** database, bool forWebSQLDatabase);
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Derrorhandler.py35 def HandleFile(self, filename, first_token):
36 """Notifies this ErrorHandler that subsequent errors are in filename.
39 filename: The file being linted.
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dgenrb.h47 const char *filename,
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Ddebug.h79 _mesa_dump_color_buffer(const char *filename);
82 _mesa_dump_depth_buffer(const char *filename);
85 _mesa_dump_stencil_buffer(const char *filename);
88 _mesa_dump_image(const char *filename, const void *image, GLuint w, GLuint h,
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dlinemap.h94 * \param filename physical file name (if NULL, not changed)
100 void yasm_linemap_set(yasm_linemap *linemap, /*@null@*/ const char *filename,
108 * \param filename physical file name (if NULL, not changed)
114 /*@null@*/ const char *filename,
120 * \param filename physical file name (output)
125 /*@out@*/ const char **filename,
129 * filename.
139 int (*func) (const char *filename, void *d));

Completed in 993 milliseconds

1234567891011>>