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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/components/nacl/browser/
nacl_file_host.h 35 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/native_client_sdk/src/tests/nacl_io_test/
dev_fs_for_testing.h 23 bool Exists(const char* filename) {
25 if (Open(nacl_io::Path(filename), O_RDONLY, &node))
  /external/chromium_org/tools/git/
for-all-touched-files.py 10 The special token [[FILENAME]] (or whatever you choose using the -t
19 %prog -x gyp,gypi "tools/format_xml.py [[FILENAME]]"
20 %prog -c "tools/sort-headers.py [[FILENAME]]"
66 filename = line.split()[0]
67 if filename:
68 filename = filename.rstrip()
69 ext = filename.rsplit('.')[-1]
71 filenames.append(filename)
77 run command with token replaced with the filename. If extensions i
    [all...]
  /external/deqp/executor/
xeTestLogWriter.hpp 41 void writeBatchResultToFile (const BatchResult& batchResult, const char* filename);
45 void writeTestResultToFile (const TestCaseResult& result, const char* filename);
  /external/elfutils/0.153/src/
arlib2.c 39 /* Add long file name FILENAME of length FILENAMELEN to the symbol table
42 arlib_add_long_name (const char *filename, size_t filenamelen)
46 obstack_grow (&symtab.longnamesob, filename, filenamelen);
  /external/llvm/include/llvm/Support/
ToolOutputFile.h 32 /// Filename - The name of the file.
33 std::string Filename;
38 explicit CleanupInstaller(const char *filename);
49 tool_output_file(const char *filename, std::string &ErrorInfo,
52 tool_output_file(const char *Filename, int FD);
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.h 56 GrFmtJpegReader( const char* filename );
75 GrFmtJpegWriter( const char* filename );
94 virtual bool Open( const char* filename );
112 GrFmtJpegReader( const char* filename );
173 virtual bool Open( const char* filename );
187 GrFmtJpegWriter( const char* filename );
209 GrFmtReader* NewReader( const char* filename );
210 GrFmtWriter* NewWriter( const char* filename );
grfmt_base.cpp 48 GrFmtReader::GrFmtReader( const char* filename )
50 strncpy( m_filename, filename, sizeof(m_filename) - 1 );
73 GrFmtWriter::GrFmtWriter( const char* filename )
75 strncpy( m_filename, filename, sizeof(m_filename) - 1 );
93 bool GrFmtFilterFactory::CheckFile( const char* filename )
100 if( !filename ) return false;
103 f = fopen( filename, "rb" );
263 GrFmtReader* GrFmtFactoriesList::FindReader( const char* filename )
265 if( !filename ) return 0;
273 if( tempFactory->CheckFile( filename ) )
    [all...]
  /external/openssl/crypto/dso/
dso_lib.c 167 if(dso->filename != NULL)
168 OPENSSL_free(dso->filename);
194 DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags)
218 if(ret->filename != NULL)
223 /* filename can only be NULL if we were passed a dso that already has
225 if(filename != NULL)
226 if(!DSO_set_filename(ret, filename))
231 filename = ret->filename;
232 if(filename == NULL
    [all...]
  /external/oprofile/libpp/
op_header.h 23 * @param filename sample filename
29 std::string const & filename);
31 bool is_jit_sample(std::string const & filename);
  /external/openfst/src/include/fst/extensions/far/
far.h 35 inline bool IsFst(const string &filename) {
36 ifstream strm(filename.c_str());
39 return IsFstHeader(strm, filename);
48 bool Read(const string &filename) {
50 if (filename.empty()) {
55 } else if (IsSTTable(filename)) { // Check if STTable
56 ReadSTTableHeader(filename, &fsthdr);
60 } else if (IsSTList(filename)) { // Check if STList
61 ReadSTListHeader(filename, &fsthdr);
65 } else if (IsFst(filename)) { // Check if Fs
    [all...]
  /external/chromium_org/components/tools/metrics/
count_ifdefs.py 18 # Filename extensions we know will be handled by the C preprocessor.
28 def _IsTestFile(filename):
32 return re.match('(test|mock|dummy)_.*|.*_[a-z]*test\.(h|cc|mm)', filename)
46 for filename in files:
47 if os.path.splitext(filename)[1] in CPP_EXTENSIONS:
48 if not skip_tests or not _IsTestFile(filename):
49 with open(os.path.join(root, filename)) as f:
  /external/chromium_org/skia/tools/filter_fuzz_stub/
filter_fuzz_stub.cc 15 bool ReadTestCase(const char* filename, std::string* ipc_filter_message) {
16 base::FilePath filepath = base::FilePath::FromUTF8Unsafe(filename);
19 LOG(ERROR) << filename << ": couldn't read file.";
55 bool ReadAndRunTestCase(const char* filename, SkBitmap& bitmap,
59 LOG(INFO) << "Test case: " << filename;
62 if (!ReadTestCase(filename, &ipc_filter_message))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
split-file-by-class 39 for my $filename (@ARGV) {
41 $filename =~ m/^(\w+)\.h$/ or die "Command line args must be .h files.\n";
44 open(OLDFILE, "<", $filename) or die "File does not exist: $filename\n";
45 print "Splitting class $filename.{h,cpp}:\n";
73 print "Skipping $filename, already correctly named.\n";
75 print "$filename only includes one class, renaming to $classname.h\n";
82 print "Skipping $filename, already correctly named.\n";
94 open(NEWHEADER, ">", "$classname.h") or die "File does not exist: $filename\n";
109 open(OLDCPP, "<", "$classname.cpp.original") or die "Failed to copy file for reading: $filename\n"
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrSurface.cpp 23 bool GrSurface::savePixels(const char* filename) {
32 SkDebugf("------ failed to read pixels for %s\n", filename);
37 remove(filename);
39 if (!SkImageEncoder::EncodeFile(filename, bm, SkImageEncoder::kPNG_Type, 100)) {
40 SkDebugf("------ failed to encode %s\n", filename);
41 remove(filename); // remove any partial file
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
profiler_unittest.cc 83 fprintf(stderr, "USAGE: %s <iters> [num_threads] [filename]\n", argv[0]);
88 fprintf(stderr, " filename: The name of the output profile.\n");
96 const char* filename = NULL; local
101 filename = argv[3];
104 if (filename) {
105 ProfilerStart(filename);
119 if (filename) {
120 printf("FORK test only makes sense when no filename is specified.\n");
137 if (filename) {
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
profiler_unittest.cc 83 fprintf(stderr, "USAGE: %s <iters> [num_threads] [filename]\n", argv[0]);
88 fprintf(stderr, " filename: The name of the output profile.\n");
96 const char* filename = NULL; local
101 filename = argv[3];
104 if (filename) {
105 ProfilerStart(filename);
119 if (filename) {
120 printf("FORK test only makes sense when no filename is specified.\n");
137 if (filename) {
  /external/deqp/framework/delibs/scripts/
update-copyright-year.py 13 def isSrcFile (filename):
15 if fnmatch.fnmatch(filename, pattern):
27 def processFile (filename):
28 print filename
29 file = open(filename, "rb")
33 file = open(filename, "wb")
  /external/doclava/src/com/google/doclava/
Doclava2.java 35 for (String filename : files) {
36 InfoBuilder infoBuilder = new InfoBuilder(filename);
37 System.out.println(filename);
66 for (String filename : files) {
67 InfoBuilder infoBuilder = new InfoBuilder(filename);
68 System.out.println(filename);
  /external/fio/examples/
enospc-pressure.fio 30 filename=raicer
36 filename=raicer
51 filename=aio-dio-verifier
  /external/e2fsprogs/lib/blkid/
save.c 62 const char *filename; local
76 filename = cache->bic_filename ? cache->bic_filename: BLKID_CACHE_FILE;
79 if (((ret = stat(filename, &st)) < 0 && errno != ENOENT) ||
80 (ret == 0 && access(filename, W_OK) < 0)) {
82 printf("can't write to cache file %s\n", filename));
94 tmp = malloc(strlen(filename) + 8);
96 sprintf(tmp, "%s-XXXXXX", filename);
107 file = fopen(filename, "w");
108 opened = filename;
113 filename, opened))
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
verify_ppapi.py 42 for filename in sorted(expected):
43 msg += ' %s\n' % filename
46 for filename in sorted(unexpected):
47 msg += ' %s\n' % filename
57 for filename in filenames:
58 if os.path.splitext(filename)[1] not in ('.cc', '.h'):
61 parts = filename.split(os.sep)
62 basename = os.path.basename(filename)
66 if 'private' in filename:
67 if 'flash' in filename
    [all...]
  /external/chromium_org/net/tools/flip_server/
mem_cache.cc 54 const std::string& filename,
56 : filename_(filename), body_(body) {
121 void MemoryCache::ReadToString(const char* filename, std::string* output) {
123 int fd = open(filename, 0, "r");
137 void MemoryCache::ReadAndStoreFileContents(const char* filename) {
143 ReadToString(filename, &filename_contents);
157 " framing file: " << filename;
191 DCHECK_GE(std::string(filename).size(), cwd_.size() + 1);
192 DCHECK_EQ(std::string(filename).substr(0, cwd_.size()), cwd_);
193 DCHECK_EQ(filename[cwd_.size()], '/')
    [all...]
  /external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java 107 * Verifies that the specified filename represents an absolute path.
108 * Differs from new java.io.File("filename").isAbsolute() in that a path
111 * @param filename the filename to be checked.
112 * @return true if the filename represents an absolute path.
113 * @throws java.lang.NullPointerException if filename is null.
116 public static boolean isAbsolutePath(String filename) {
117 int len = filename.length();
122 filename = filename.replace('/', sep).replace('\\', sep)
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
link_converter.py 15 def _ReadFile(filename):
16 with open(filename) as f:
19 def _WriteFile(filename, contents):
20 with open(filename, 'w') as f:
23 def _Replace(matches, filename):
35 page = '%s.html' % SanitizeAPIName(filename.rsplit(os.sep, 1)[-1])
55 def _ConvertFile(filename, use_stdout):
57 contents = _ReadFile(filename)
59 lambda m: _Replace(m, filename),
66 _WriteFile(filename, contents
    [all...]

Completed in 1033 milliseconds

1 2 3 4 5 67 8 91011>>