Searched defs:FILE (Results 1 - 25 of 39) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dadd-include37 FILE: for my $filename (@ARGV) { label
38 unless ($filename =~ /(\w+)\.cpp$/) { print STDERR "Command line args must be .cpp files: $filename.\n"; next FILE; }
55 unless (open INPUT, "<", $filename) { print STDERR "File does not exist: $filename\n"; next FILE; }
59 if ($pastIncludes) { print STDERR "Saw more includes after include section in $filename, line $.\n"; next FILE; }
63 unless ($sawConfig) { print STDERR "First include must be config.h in $filename, line $.\n"; next FILE; }
67 unless ($sawSelfInclude) { print STDERR "Second include must be $base.h in $filename, line $.\n"; next FILE; }
79 unless ($currentCondition eq "") { print STDERR "Nested #if in include section in $filename, line $.\n"; next FILE; }
84 unless ($currentCondition ne "") { print STDERR "Extra #endif in include section in $filename, line $.\n"; next FILE; }
94 unless ($currentCondition eq "") { print STDERR "Unterminated #if in include section in $filename, line $.\n"; next FILE; }
119 unless (open OUTPUT, ">", $filename) { print STDERR "Could not open file for writing: $filename\n"; next FILE; };
[all...]
/external/clang/test/CodeGen/
H A D2002-06-25-FWriteInterfaceFailure.c3 typedef struct _IO_FILE FILE; typedef in typeref:struct:_IO_FILE
4 extern FILE *stderr;
5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
H A Dvfprintf.c3 typedef struct _IO_FILE FILE; typedef in typeref:struct:_IO_FILE
4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
/external/clang/test/Modules/Inputs/System/usr/include/
H A Dstdio.h1 typedef struct { int id; } FILE; typedef in typeref:struct:__anon16189
2 int fprintf(FILE*restrict, const char* restrict format, ...);
/external/clang/test/Preprocessor/
H A Dinclude-directive1.c7 #define FILE "file_to_include.h" macro
8 #include XX FILE
10 #include FILE
/external/chromium_org/third_party/yasm/source/patched-yasm/
H A Dlibyasm.h34 typedef struct __FILE FILE; typedef in typeref:struct:__FILE
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-for-simple-stream.h10 } FILE; typedef in typeref:struct:__sFILE
11 FILE *fopen(const char * restrict, const char * restrict) __asm("_" "fopen" );
12 int fputc(int, FILE *);
13 int fputs(const char * restrict, FILE * restrict) __asm("_" "fputs" );
14 int fclose(FILE *);
19 FILE * p;
H A Dsystem-header-simulator.h12 typedef struct _FILE FILE; typedef in typeref:struct:_FILE
13 extern FILE *stdin;
14 extern FILE *stdout;
15 extern FILE *stderr;
17 extern FILE *__stdinp;
18 extern FILE *__stdoutp;
19 extern FILE *__stderrp;
22 int fscanf(FILE *restrict, const char *restrict, ...);
24 int fprintf(FILE *restrict, const char *restrict, ...);
44 void setbuf(FILE * restric
[all...]
/external/compiler-rt/SDKs/linux/usr/include/
H A Dstdio.h23 typedef struct _IO_FILE FILE; typedef in typeref:struct:_IO_FILE
33 extern int fclose(FILE *);
34 extern int fflush(FILE *);
35 extern FILE *fopen(const char * restrict, const char * restrict);
36 extern FILE *fdopen(int, const char * restrict);
37 extern int fprintf(FILE * restrict, const char * restrict, ...);
38 extern size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict);
39 extern size_t fread(void * restrict, size_t, size_t, FILE * restrict);
40 extern long ftell(FILE *);
41 extern int fseek(FILE *, lon
[all...]
/external/lzma/CPP/Common/
H A DStdOutStream.h13 FILE *_stream;
16 CStdOutStream (FILE *stream): _streamIsOpen(false), _stream(stream) {};
18 operator FILE *() { return _stream; }
/external/chromium_org/webkit/common/fileapi/
H A Ddirectory_entry.h18 FILE, enumerator in enum:fileapi::DirectoryEntry::DirectoryEntryType
/external/clang/test/Analysis/
H A Dtaint-tester.cpp4 typedef struct _FILE FILE; typedef in typeref:struct:_FILE
6 extern FILE *stdin;
8 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
13 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
17 FILE *fp;
H A Dstream.c4 typedef struct _IO_FILE FILE; typedef in typeref:struct:_IO_FILE
8 extern FILE *fopen(const char *path, const char *mode);
9 extern FILE *tmpfile(void);
10 extern int fclose(FILE *fp);
11 extern size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
12 extern int fseek (FILE *__stream, long int __off, int __whence);
13 extern long int ftell (FILE *__stream);
14 extern void rewind (FILE *__stream);
17 FILE *p = fopen("foo", "r");
24 FILE *
[all...]
H A Dtaint-generic.c6 typedef struct _FILE FILE; typedef in typeref:struct:_FILE
7 extern FILE *stdin;
8 int fscanf(FILE *restrict stream, const char *restrict format, ...);
/external/clang/test/PCH/
H A Dpr4489.c14 typedef struct _IO_FILE FILE; typedef in typeref:struct:_IO_FILE
/external/compiler-rt/SDKs/darwin/usr/include/
H A Dstdio.h24 typedef struct __sFILE FILE; typedef in typeref:struct:__sFILE
61 extern FILE *__stderrp;
73 int fclose(FILE *);
74 int fflush(FILE *);
75 FILE *fopen(const char * __restrict, const char * __restrict) __asm(__FOPEN_NAME);
76 FILE *fdopen(int, const char *) __asm(__FDOPEN_NAME);
77 int fprintf(FILE * __restrict, const char * __restrict, ...);
78 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict)
80 size_t fread(void * __restrict, size_t, size_t, FILE * __restrict);
81 long ftell(FILE *);
[all...]
/external/chromium/net/ftp/
H A Dftp_directory_listing_parser.h20 FILE, enumerator in enum:net::FtpDirectoryListingEntry::Type
/external/chromium_org/net/ftp/
H A Dftp_directory_listing_parser.h21 FILE, enumerator in enum:net::FtpDirectoryListingEntry::Type
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dchange_list_processor_unittest.cc29 FILE, enumerator in enum:drive::internal::__anon4360::FileOrDirectory
117 "file:2_file_resource_id", "fake_root", FILE},
119 "file:slash_file_resource_id", "fake_root", FILE},
121 "document:5_document_resource_id", "fake_root", FILE},
126 "file:subdirectory_file_1_id", "folder:1_folder_resource_id", FILE},
129 "folder:1_folder_resource_id", FILE},
136 "folder:slash_dir_folder_resource_id", FILE},
147 util::kDriveOtherDirSpecialResourceId, FILE},
156 entry->file_info().is_directory() ? DIRECTORY : FILE);
/external/chromium_org/content/public/browser/
H A Dbrowser_thread.h68 FILE, enumerator in enum:content::BrowserThread::ID
226 // when an object can hop between threads (i.e. IO -> FILE -> IO), and thread
227 // switching delays can mean that the final IO tasks executes before the FILE
229 // FILE thread, which often is not what you want (i.e. to unregister from
262 struct DeleteOnFileThread : public DeleteOnThread<FILE> { };
/external/chromium_org/ppapi/proxy/
H A Dserialized_handle.h29 enum Type { INVALID, SHARED_MEMORY, SOCKET, CHANNEL_HANDLE, FILE }; enumerator in enum:ppapi::proxy::SerializedHandle::Type
55 bool is_file() const { return type_ == FILE; }
94 type_ = FILE;
140 // This is valid if type == SOCKET || type == CHANNEL_HANDLE || type == FILE.
143 // This is valid if type == FILE.
/external/clang/test/Sema/
H A Dformat-strings-scanf.c8 typedef struct _FILE FILE; typedef in typeref:struct:_FILE
11 int fscanf(FILE * restrict, const char * restrict, ...) ;
17 int vfscanf(FILE * restrict, const char * restrict, va_list);
69 FILE *f = 0;
H A Dformat-strings.c8 typedef struct _FILE FILE; typedef in typeref:struct:_FILE
9 int fprintf(FILE *, const char *restrict, ...);
15 int vfprintf(FILE *, const char *restrict, va_list);
24 void check_string_literal( FILE* fp, const char* s, char *buf, ... ) {
65 void check_string_literal2( FILE* fp, const char* s, char *buf, ... ) {
126 void check_invalid_specifier(FILE* fp, char *buf)
333 void rdar8026030(FILE *fp) {
/external/openfst/src/include/fst/extensions/far/
H A Dcompile-strings.h49 enum EntryType { LINE = 1, FILE = 2 }; enumerator in enum:fst::StringReader::EntryType
160 entry_type = StringReader<Arc>::FILE;
238 (entry_type == StringReader<Arc>::FILE ? 1 :
283 if (entry_type != StringReader<Arc>::FILE) {
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dfile_manager_browsertest.cc44 FILE, enumerator in enum:file_manager::__anon4425::EntryType
74 { FILE, "text.txt", "hello.txt", "text/plain", NONE, "4 Sep 1998 12:34:56" },
75 { FILE, "image.png", "My Desktop Background.png", "text/plain", NONE,
77 { FILE, "music.ogg", "Beautiful Song.ogg", "text/plain", NONE,
79 { FILE, "video.ogv", "world.ogv", "text/plain", NONE,
86 { FILE, "", "Test Document", "application/vnd.google-apps.document", NONE,
88 { FILE, "", "Test Shared Document", "application/vnd.google-apps.document",
119 case FILE: {
167 case FILE:
442 FILE,
[all...]

Completed in 5028 milliseconds

12