Searched refs:file (Results 201 - 225 of 2662) sorted by relevance

1234567891011>>

/external/bison/src/
H A Dlocation.c5 This file is part of Bison, the GNU Compiler Compiler.
18 along with Bison; see the file COPYING. If not, write to
37 quotearg_n_style (3, escape_quoting_style, loc.start.file),
40 if (loc.start.file != loc.end.file)
42 quotearg_n_style (3, escape_quoting_style, loc.end.file),
/external/chromium/chrome/browser/ui/webui/
H A Ddownloads_dom_handler.cc3 // found in the LICENSE file.
152 DownloadItem* file = GetDownloadByValue(args); local
153 if (file)
154 file->OpenDownload();
158 DownloadItem* file = GetDownloadByValue(args); local
159 if (file) {
161 gfx::Image* icon = im->LookupIcon(file->GetUserVerifiedFilePath(),
164 download_util::DragDownload(file, icon, view);
169 DownloadItem* file = GetDownloadByValue(args); local
170 if (file)
175 DownloadItem* file = GetDownloadByValue(args); local
181 DownloadItem* file = GetDownloadByValue(args); local
187 DownloadItem* file = GetDownloadByValue(args); local
193 DownloadItem* file = GetDownloadByValue(args); local
199 DownloadItem* file = GetDownloadByValue(args); local
[all...]
/external/clang/unittests/Basic/
H A DFileManagerTest.cpp5 // This file is distributed under the University of Illinois Open Source
21 // Used to create a fake file system for running the tests with such
23 // file system on the machine running the tests.
26 // Maps a file/directory path to its desired stat result. Anything
27 // not in this map is considered to not exist in the file system.
37 statBuf.st_mode = IsFile ? (0777 | S_IFREG) // a regular file
43 // Inject a file with the given inode value to the fake file system.
48 // Inject a directory with the given inode value to the fake file system.
61 return CacheMissing; // This means the file/director
78 const FileEntry *file = manager.getVirtualFile("foo.cpp", 42, 0); local
131 const FileEntry *file = manager.getFile("/tmp/test"); local
146 const FileEntry *file = manager.getFile("virtual/dir/bar.h"); local
185 const FileEntry *file = manager.getFile("xyz.txt"); local
[all...]
/external/clang/utils/analyzer/
H A Dreducer.pl6 die "$prog <code file> <error string> [optional command]\n" if ($#ARGV < 0);
7 my $file = shift @ARGV;
8 die "$prog: [error] cannot read file $file\n" if (! -r $file);
13 # Create a backup of the file.
16 my $srcFile = "$dir/$file";
17 `cp $file $srcFile`;
63 # Copy the final file.
64 `cp $srcFile $file
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationSetRefItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
57 public void addContents(DexFile file) { argument
58 MixedItemSection wordData = file.getWordData();
71 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
/external/doclava/res/assets/templates/
H A Dcomponents.cs1 <?cs # This default template file is meant to be replaced. ?>
2 <?cs # Use the -tempatedir arg to javadoc to set your own directory with a replacement for this file in it. ?>
/external/elfutils/tests/
H A Dtest-subr.sh3 # This file is part of Red Hat elfutils.
27 # This file is sourced by ". $srcdir/test-subr.sh" at the start of
46 for file; do
47 bunzip2 -c $srcdir/${file}.bz2 > ${file} 2>/dev/null || exit 77
48 remove_files="$remove_files $file"
H A Dline2addr.c2 This file is part of Red Hat elfutils.
71 char *file; member in struct:args
87 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0)
93 const char *file = dwfl_lineinfo (lines[inner], &addr, &line, &col, local
95 if (file != NULL)
101 if (strcmp (file, a->file) || line != a->line || col != 0)
103 file, line);
107 || strcmp (file, a->file) || lin
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-debug.h18 void Android_Debug(const char* file, int line, const char* function, const char* format, ...)
/external/icu4c/test/perf/unisetperf/draft/
H A Dcontperf.sh12 for file in udhr_eng.txt \
21 $PERF Contains --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
H A Dspan16perf.sh12 for file in udhr_eng.txt \
21 $PERF SpanUTF16 --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
H A Dspan8perf.sh12 for file in udhr_eng.txt \
21 $PERF SpanUTF8 --type $type -f ~/udhr/$file -v -e UTF-8 --passes 3 --iterations 10000
/external/jpeg/
H A Djinclude.h5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
8 * This file exists to provide a single place to fix any problems with
11 * you may have to edit this file.)
13 * NOTE: this file is NOT intended to be included by applications using the
18 /* Include auto-config file to find out which system include files we need. */
88 #define JFREAD(file,buf,sizeofbuf) \
89 ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
90 #define JFWRITE(file,buf,sizeofbuf) \
91 ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
[all...]
/external/libmtp/examples/
H A Dgetfile.c2 * \file getfile.c
3 * Example program to retrieve a file off the device.
48 printf("\nError getting file from MTP device.\n");
60 char *file; local
62 // We need file ID and filename
74 fprintf(stderr, "bad file/track id %u\n", id);
79 file = argv[2];
80 printf("Getting file/track %d to local file %s\n", id, file);
[all...]
/external/llvm/include/llvm/Support/
H A DValgrind.h5 // This file is distributed under the University of Illinois Open Source
27 LLVM_ATTRIBUTE_WEAK void AnnotateHappensAfter(const char *file, int line,
29 LLVM_ATTRIBUTE_WEAK void AnnotateHappensBefore(const char *file, int line,
31 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesBegin(const char *file, int line);
32 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesEnd(const char *file, int line);
/external/openssl/crypto/x509/
H A Dx509_d2.c83 int X509_STORE_load_locations(X509_STORE *ctx, const char *file, argument
88 if (file != NULL)
92 if (X509_LOOKUP_load_file(lookup,file,X509_FILETYPE_PEM) != 1)
102 if ((path == NULL) && (file == NULL))
/external/proguard/src/proguard/
H A DFileWordReader.java28 * A <code>WordReader</code> that returns words from a file or a URL.
39 * Creates a new FileWordReader for the given file.
41 public FileWordReader(File file) throws IOException argument
43 super(file.getParentFile());
45 this.name = file.getPath();
48 new FileReader(file)));
76 return "line " + reader.getLineNumber() + " of file '" + name + "'";
/external/qemu/distrib/jpeg-6b/
H A Djinclude.h5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file.
8 * This file exists to provide a single place to fix any problems with
11 * you may have to edit this file.)
13 * NOTE: this file is NOT intended to be included by applications using the
18 /* Include auto-config file to find out which system include files we need. */
88 #define JFREAD(file,buf,sizeofbuf) \
89 ((size_t) fread((void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
90 #define JFWRITE(file,buf,sizeofbuf) \
91 ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
[all...]
/external/skia/src/images/
H A DSkImageEncoder.cpp6 * found in the LICENSE file.
23 bool SkImageEncoder::encodeFile(const char file[], const SkBitmap& bm, argument
26 SkFILEWStream stream(file);
30 bool SkImageEncoder::EncodeFile(const char file[], const SkBitmap& bm, Type t, argument
33 return enc.get() && enc.get()->encodeFile(file, bm, quality);
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dlighttpd.conf11 index-file.names = ( "index.php", "index.pl", "index.cgi",
39 # which extensions should not be handle via static-file transfer
42 static-file.exclude-extensions = ( ".php", ".pl", ".cgi" )
56 #debug.log-file-not-found = "enable"
/external/webkit/Tools/android/flex-2.5.4a/
H A Dmkinstalldirs12 for file in ${1+"$@"} ; do
16 set - `echo ${file} | sed -e 's@/@%@g' -e 's@^%@/@'`
/external/xmp_toolkit/XMPCore/
H A DAndroid.mk9 # The name of the jar file to create.
12 # Build a static jar file.
/external/chromium/net/disk_cache/
H A Dstorage_block_unittest.cc3 // found in the LICENSE file.
14 scoped_refptr<disk_cache::MappedFile> file(new disk_cache::MappedFile);
16 ASSERT_TRUE(file->Init(filename, 8192));
18 disk_cache::CacheEntryBlock entry1(file, disk_cache::Addr(0xa0010001));
34 scoped_refptr<disk_cache::MappedFile> file(new disk_cache::MappedFile);
36 ASSERT_TRUE(file->Init(filename, 8192));
38 disk_cache::CacheEntryBlock entry1(file, disk_cache::Addr(0xa0010001));
41 disk_cache::CacheEntryBlock entry2(file, disk_cache::Addr(0xa0010002));
54 scoped_refptr<disk_cache::MappedFile> file(new disk_cache::MappedFile);
56 ASSERT_TRUE(file
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/model/
H A DTestCaseInputFile.java42 public TestCaseInputFile(String file) { argument
43 this.fileName = file;
/external/bluetooth/bluedroid/stack/include/
H A Dwcassert.h6 * you may not use this file except in compliance with the License.
38 extern "C" wc_assert(char *message, char *file, UINT32 line);
40 void wc_assert(char *message, char *file, UINT32 line);

Completed in 1263 milliseconds

1234567891011>>