Searched refs:file (Results 1 - 25 of 2668) 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
H A Ddirective_file.s3 .file "hello"
4 .file 1 "world"
5 .file 2 "directory" "file"
7 # CHECK: .file "hello"
8 # CHECK: .file 1 "world"
9 # CHECK: .file 2 "directory" "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/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/elfutils/tests/
H A Drun-get-files.sh3 # This file is part of Red Hat elfutils.
34 file[0] = "???"
35 file[1] = "/home/drepper/gnu/new-bu/build/ttt/m.c"
38 file[0] = "???"
39 file[1] = "/home/drepper/gnu/new-bu/build/ttt/b.c"
40 file[2] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stddef.h"
41 file[3] = "/usr/lib/gcc-lib/i386-redhat-linux/2.96/include/stdarg.h"
42 file[4] = "/usr/include/bits/types.h"
43 file[5] = "/usr/include/bits/sched.h"
44 file[
[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 #warning parsing original file
H A Dcrash-recovery-reparse.c3 // RUN: -remap-file="%s;%S/Inputs/crash-recovery-reparse-remap.c" \
12 #warning parsing original file
/external/clang/test/Preprocessor/
H A Dfile_to_include.h2 #warning file successfully included
/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/kernel-headers/original/linux/
H A Dandroid_pmem.h24 /* This ioctl will allocate pmem space, backing the file, it will fail
25 * if the file already has an allocation, pass it the len as the argument
28 /* This will connect a one pmem file to another, pass the file that is already
61 int is_pmem_file(struct file *file);
63 unsigned long *end, struct file **filp);
64 int get_pmem_user_addr(struct file *file, unsigned long *start,
66 void put_pmem_file(struct file* fil
75 is_pmem_file(struct file *file) argument
79 get_pmem_user_addr(struct file *file, unsigned long *start, unsigned long *end) argument
81 put_pmem_file(struct file* file) argument
82 flush_pmem_file(struct file *file, unsigned long start, unsigned long len) argument
88 pmem_remap(struct pmem_region *region, struct file *file, unsigned operation) argument
[all...]
/external/webkit/Source/WebKit/mac/Misc/
H A DOldWebAssertions.c29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion) argument
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...) argument
/external/webkit/LayoutTests/http/tests/appcache/resources/
H A Dversioned-manifest.php6 function getCount($file)
8 if (!file_exists($file)) {
9 file_put_contents($file, "0");
12 return file_get_contents($file);
15 function stepCounter($file)
17 if (file_exists($file)) {
18 $value = getCount($file);
19 file_put_contents($file, ++$value);
H A Dcounter.php6 function stepCounter($file)
8 if (!file_exists($file)) {
9 file_put_contents($file, "0");
12 $value = file_get_contents($file);
13 file_put_contents($file, ++$value);
/external/qemu/distrib/sdl-1.2.15/src/main/macos/exports/
H A Dgendef.pl7 while ( ($file = shift(@ARGV)) ) {
8 if ( ! defined(open(FILE, $file)) ) {
9 warn "Couldn't open $file: $!\n";
13 $file =~ s,.*/,,;
/external/webkit/Source/WebCore/platform/qt/
H A DSharedBufferQt.cpp38 QFile file(fileName);
39 if (!file.exists() || !file.open(QFile::ReadOnly))
42 Vector<char> buffer(file.size());
43 file.read(buffer.data(), buffer.size());
/external/webkit/Tools/Scripts/
H A Ddo-file-rename29 # Script to do file renaming.
54 my $file = $_;
56 if ($file eq "icu") {
61 if ($file =~ /^\../) {
66 return if $file =~ /^ChangeLog/;
67 return if -d $file;
81 for my $file (sort @paths) {
82 my $f = $file;
84 $newFile{$file} = $f if $f ne $file;
[all...]
H A Dfind-extra-includes41 my $file = $_;
43 if ($file eq "icu") {
48 if ($file !~ /^\./ && $file =~ /\.(h|cpp|c|mm|m)$/) {
49 $paths{$file} = $File::Find::name;
50 open FILE, $file or die;
54 $includes{$file}{$include}++;
65 my ($file) = @_;
67 return if defined $totalIncludes{$file};
69 for my $include (keys %{ $includes{$file} }) {
[all...]
H A Dreport-include-statistics42 my $file = $_;
44 if ($file eq "icu") {
49 if ($file !~ /^\./ && $file =~ /\.(h|cpp|c|mm|m)$/) {
50 $paths{$file} = $File::Find::name;
51 $sources{$file} = $File::Find::name if $file !~ /\.h/;
52 open FILE, $file or die;
56 $includes{$file}{$include}++;
67 my ($file)
[all...]
/external/chromium/base/third_party/dynamic_annotations/
H A Ddynamic_annotations.c35 # error "This file should be built as pure C to avoid name mangling"
54 const char *file, int line, const volatile void *lock){}
56 const char *file, int line, const volatile void *lock){}
58 const char *file, int line, const volatile void *lock, long is_w){}
60 const char *file, int line, const volatile void *lock, long is_w){}
62 const char *file, int line, const volatile void *barrier, long count,
65 const char *file, int line, const volatile void *barrier) {}
67 const char *file, int line, const volatile void *barrier) {}
69 const char *file, int line, const volatile void *barrier) {}
72 const char *file, in
53 AnnotateRWLockCreate( const char *file, int line, const volatile void *lock) argument
55 AnnotateRWLockDestroy( const char *file, int line, const volatile void *lock) argument
57 AnnotateRWLockAcquired( const char *file, int line, const volatile void *lock, long is_w) argument
59 AnnotateRWLockReleased( const char *file, int line, const volatile void *lock, long is_w) argument
61 AnnotateBarrierInit( const char *file, int line, const volatile void *barrier, long count, long reinitialization_allowed) argument
64 AnnotateBarrierWaitBefore( const char *file, int line, const volatile void *barrier) argument
66 AnnotateBarrierWaitAfter( const char *file, int line, const volatile void *barrier) argument
68 AnnotateBarrierDestroy( const char *file, int line, const volatile void *barrier) argument
71 AnnotateCondVarWait( const char *file, int line, const volatile void *cv, const volatile void *lock) argument
74 AnnotateCondVarSignal( const char *file, int line, const volatile void *cv) argument
76 AnnotateCondVarSignalAll( const char *file, int line, const volatile void *cv) argument
78 AnnotatePublishMemoryRange( const char *file, int line, const volatile void *address, long size) argument
80 AnnotateUnpublishMemoryRange( const char *file, int line, const volatile void *address, long size) argument
82 AnnotatePCQCreate( const char *file, int line, const volatile void *pcq) argument
84 AnnotatePCQDestroy( const char *file, int line, const volatile void *pcq) argument
86 AnnotatePCQPut( const char *file, int line, const volatile void *pcq) argument
88 AnnotatePCQGet( const char *file, int line, const volatile void *pcq) argument
90 AnnotateNewMemory( const char *file, int line, const volatile void *mem, long size) argument
92 AnnotateExpectRace( const char *file, int line, const volatile void *mem, const char *description) argument
95 AnnotateFlushExpectedRaces( const char *file, int line) argument
97 AnnotateBenignRace( const char *file, int line, const volatile void *mem, const char *description) argument
100 AnnotateBenignRaceSized( const char *file, int line, const volatile void *mem, long size, const char *description) argument
103 AnnotateMutexIsUsedAsCondVar( const char *file, int line, const volatile void *mu) argument
105 AnnotateMutexIsNotPHB( const char *file, int line, const volatile void *mu) argument
107 AnnotateTraceMemory( const char *file, int line, const volatile void *arg) argument
109 AnnotateThreadName( const char *file, int line, const char *name) argument
111 AnnotateIgnoreReadsBegin( const char *file, int line) argument
113 AnnotateIgnoreReadsEnd( const char *file, int line) argument
115 AnnotateIgnoreWritesBegin( const char *file, int line) argument
117 AnnotateIgnoreWritesEnd( const char *file, int line) argument
119 AnnotateIgnoreSyncBegin( const char *file, int line) argument
121 AnnotateIgnoreSyncEnd( const char *file, int line) argument
123 AnnotateEnableRaceDetection( const char *file, int line, int enable) argument
125 AnnotateNoOp( const char *file, int line, const volatile void *arg) argument
127 AnnotateFlushState( const char *file, int line) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dfileio.c2 * fileio.c --- Simple file I/O routines
7 * This file may be redistributed under the terms of the GNU Library
33 #define BMAP_BUFFER (file->buf + fs->blocksize)
39 ext2_file_t file; local
43 * Don't let caller create or open a file for writing if the
50 retval = ext2fs_get_mem(sizeof(struct ext2_file), &file);
54 memset(file, 0, sizeof(struct ext2_file));
55 file->magic = EXT2_ET_MAGIC_EXT2_FILE;
56 file->fs = fs;
57 file
91 ext2fs_file_get_fs(ext2_file_t file) argument
102 ext2fs_file_flush(ext2_file_t file) argument
140 sync_buffer_position(ext2_file_t file) argument
165 load_buffer(ext2_file_t file, int dontfill) argument
192 ext2fs_file_close(ext2_file_t file) argument
208 ext2fs_file_read(ext2_file_t file, void *buf, unsigned int wanted, unsigned int *got) argument
250 ext2fs_file_write(ext2_file_t file, const void *buf, unsigned int nbytes, unsigned int *written) argument
296 ext2fs_file_llseek(ext2_file_t file, __u64 offset, int whence, __u64 *ret_pos) argument
316 ext2fs_file_lseek(ext2_file_t file, ext2_off_t offset, int whence, ext2_off_t *ret_pos) argument
333 ext2fs_file_get_lsize(ext2_file_t file, __u64 *ret_size) argument
344 ext2fs_file_get_size(ext2_file_t file) argument
360 ext2fs_file_set_size(ext2_file_t file, ext2_off_t size) argument
[all...]
/external/libmtp/examples/
H A Dfiles.c2 * \file files.c
26 static void dump_fileinfo(LIBMTP_file_t *file) argument
28 printf("File ID: %u\n", file->item_id);
29 if (file->filename != NULL)
30 printf(" Filename: %s\n", file->filename);
33 if (file->filesize == (uint32_t) -1) {
34 printf(" None. (abstract file, size = -1)\n");
37 printf(" File size %llu (0x%016I64X) bytes\n", file->filesize, file->filesize);
40 (long long unsigned int) file
105 LIBMTP_file_t *file, *tmp; local
[all...]
/external/elfutils/libdw/
H A Ddwarf_filesrc.c1 /* Find source file information.
3 This file is part of Red Hat elfutils.
26 those well defined interfaces identified in the file named EXCEPTION
37 covered by this exception. If you modify this file, you may extend this
38 exception to your version of the file, but you are not obligated to do
41 this file solely under the GPL without exception.
59 dwarf_filesrc (Dwarf_Files *file, size_t idx, Dwarf_Word *mtime, argument
62 if (file == NULL || idx >= file->nfiles)
66 *mtime = file
[all...]

Completed in 717 milliseconds

1234567891011>>