Searched refs:file (Results 1 - 25 of 9296) sorted by relevance

1234567891011>>

/external/llvm/test/MC/AsmParser/
H A Ddirective_file-errors.s5 .file "hello"
6 .file 1 "world"
8 // CHECK: .file "hello"
9 // CHECK-ERRORS:6:9: error: input can't have .file dwarf directives when -g is used to generate dwarf debug info for assembly code
/external/llvm/test/MC/ARM/
H A Dcoff-file.s7 .file "null-padded.asm"
8 // CHECK: (nx 1) {{0x[0-9]+}} .file
11 .file "eighteen-chars.asm"
13 // CHECK: (nx 1) {{0x[0-9]+}} .file
16 .file "multiple-auxiliary-entries.asm"
18 // CHECK: (nx 2) {{0x[0-9]+}} .file
23 // CHECK-SCN: Name: .file
31 // CHECK-SCN: Name: .file
39 // CHECK-SCN: Name: .file
/external/llvm/test/MC/COFF/
H A Dfile.s7 .file "null-padded.asm"
8 // CHECK: (nx 1) {{0x[0-9]+}} .file
11 .file "eighteen-chars.asm"
13 // CHECK: (nx 1) {{0x[0-9]+}} .file
16 .file "multiple-auxiliary-entries.asm"
18 // CHECK: (nx 2) {{0x[0-9]+}} .file
23 // CHECK-SCN: Name: .file
31 // CHECK-SCN: Name: .file
39 // CHECK-SCN: Name: .file
/external/llvm/test/MC/ELF/
H A Dfile.s5 .file "foo"
H A Dempty-dwarf-lines.s5 .file 1 "test.c"
/external/llvm/test/MC/MachO/
H A Dfile.s3 .file 1 "dir/foo"
H A Dloc.s3 .file 1 "foo"
/external/chromium_org/third_party/protobuf/vsprojects/
H A Dconvert2008to2005.sh9 for file in *.sln; do
10 echo "downgrading $file..."
12 s/Visual Studio 2008/Visual Studio 2005/g;' $file
15 for file in *.vcproj; do
16 echo "downgrading $file..."
17 sed -i -re 's/Version="9.00"/Version="8.00"/g;' $file
/external/protobuf/vsprojects/
H A Dconvert2008to2005.sh9 for file in *.sln; do
10 echo "downgrading $file..."
12 s/Visual Studio 2008/Visual Studio 2005/g;' $file
15 for file in *.vcproj; do
16 echo "downgrading $file..."
17 sed -i -re 's/Version="9.00"/Version="8.00"/g;' $file
/external/chromium_org/chrome/common/safe_browsing/
H A Ddownload_protection_util.cc3 // found in the LICENSE file.
13 bool IsArchiveFile(const base::FilePath& file) { argument
15 return file.MatchesExtension(FILE_PATH_LITERAL(".zip"));
18 bool IsBinaryFile(const base::FilePath& file) { argument
21 file.MatchesExtension(FILE_PATH_LITERAL(".bas")) ||
22 file.MatchesExtension(FILE_PATH_LITERAL(".bat")) ||
23 file.MatchesExtension(FILE_PATH_LITERAL(".cab")) ||
24 file.MatchesExtension(FILE_PATH_LITERAL(".cmd")) ||
25 file.MatchesExtension(FILE_PATH_LITERAL(".com")) ||
26 file
46 GetDownloadType( const base::FilePath& file) argument
[all...]
/external/clang/test/Index/
H A Dcrash-recovery-code-complete.c3 // RUN: "-remap-file=%s,%S/Inputs/crash-recovery-code-complete-remap.c" \
12 // REQUIRES: can-remove-opened-file
14 #warning parsing original file
H A Dcrash-recovery-reparse.c3 // RUN: -remap-file="%s,%S/Inputs/crash-recovery-reparse-remap.c" \
11 #warning parsing original file
/external/clang/test/Preprocessor/
H A Dfile_to_include.h2 #warning file successfully included
/external/bison/lib/
H A Ddirname.h1 /* Take file names apart into directory and base names.
35 char *base_name (char const *file);
36 char *dir_name (char const *file);
39 char *mdir_name (char const *file);
40 size_t base_len (char const *file) _GL_ATTRIBUTE_PURE;
41 size_t dir_len (char const *file) _GL_ATTRIBUTE_PURE;
42 char *last_component (char const *file) _GL_ATTRIBUTE_PURE;
44 bool strip_trailing_slashes (char *file);
/external/chromium_org/third_party/zlib/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
12 gzFile file;
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
/external/qemu/distrib/zlib-1.2.8/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
12 gzFile file;
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
/external/zlib/src/
H A Dgzclose.c8 /* gzclose() is in a separate file so that it is linked in only if it is used.
11 int ZEXPORT gzclose(file)
12 gzFile file;
17 if (file == NULL)
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
23 return gzclose_r(file);
/external/chromium_org/third_party/ots/src/
H A Dcbdt.cc3 // found in the LICENSE file.
15 bool ots_cbdt_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
20 file->cbdt = new OpenTypeCBDT;
21 file->cbdt->data = data;
22 file->cbdt->length = length;
26 bool ots_cbdt_should_serialise(OpenTypeFile *file) { argument
27 return file->cbdt != NULL && file->cblc != NULL;
30 bool ots_cbdt_serialise(OTSStream *out, OpenTypeFile *file) { argument
31 if (!out->Write(file
37 ots_cbdt_free(OpenTypeFile *file) argument
[all...]
H A Dcblc.cc3 // found in the LICENSE file.
15 bool ots_cblc_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
20 file->cblc = new OpenTypeCBLC;
21 file->cblc->data = data;
22 file->cblc->length = length;
26 bool ots_cblc_should_serialise(OpenTypeFile *file) { argument
27 return file->cblc != NULL && file->cbdt != NULL;
30 bool ots_cblc_serialise(OTSStream *out, OpenTypeFile *file) { argument
31 if (!out->Write(file
37 ots_cblc_free(OpenTypeFile *file) argument
[all...]
H A Dhmtx.cc3 // found in the LICENSE file.
15 bool ots_hmtx_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { argument
18 file->hmtx = hmtx;
20 if (!file->hhea || !file->maxp) {
24 if (!ParseMetricsTable(&table, file->maxp->num_glyphs,
25 &file->hhea->header, &hmtx->metrics)) {
32 bool ots_hmtx_should_serialise(OpenTypeFile *file) { argument
33 return file->hmtx != NULL;
36 bool ots_hmtx_serialise(OTSStream *out, OpenTypeFile *file) { argument
43 ots_hmtx_free(OpenTypeFile *file) argument
[all...]
/external/chromium_org/ppapi/c/documentation/
H A Dcheck.sh4 # found in the LICENSE file.
22 for file in *.html ; do
23 CheckFile ${file}
26 for file in $* ; do
27 CheckFile ${file}
/external/chromium_org/ppapi/cpp/documentation/
H A Dcheck.sh4 # found in the LICENSE file.
22 for file in *.html ; do
23 CheckFile ${file}
26 for file in $* ; do
27 CheckFile ${file}
/external/chromium_org/tools/gyp/test/rules-use-built-dependencies/src/
H A Dmain.cc3 // found in the LICENSE file.
10 FILE* file; local
11 file = fopen(argv[1], "wb");
13 fwrite(output, 1, sizeof(output) - 1, file);
14 fclose(file);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileCallback.idl32 void handleEvent(File file);
/external/chromium_org/tools/gyp/test/ninja/s-needs-no-depfiles/
H A Dempty.s1 # This file intentionally left blank.

Completed in 482 milliseconds

1234567891011>>