HomeSort by relevance Sort by last modified time
    Searched defs:FILE (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/
add-include 33 $headerToAdd =~ /^([A-Za-z][A-Za-z0-9]+)\.h$/ or die "Header to add must be a .h file: $headerToAdd.\n";
37 FILE: for my $filename (@ARGV) {
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; }
    [all...]
  /external/clang/test/CodeGen/
2002-06-25-FWriteInterfaceFailure.c 3 typedef struct _IO_FILE FILE;
4 extern FILE *stderr;
5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
vfprintf.c 3 typedef struct _IO_FILE FILE;
4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
  /external/clang/test/Modules/Inputs/System/usr/include/
stdio.h 1 typedef struct { int id; } FILE;
2 int fprintf(FILE*restrict, const char* restrict format, ...);
3 extern FILE *__stderrp;
  /external/clang/test/Preprocessor/
include-directive1.c 1 // RUN: %clang_cc1 -E %s -fno-caret-diagnostics 2>&1 >/dev/null | grep 'file successfully included' | count 3
6 // expand macros to get to file to include
7 #define FILE "file_to_include.h"
8 #include XX FILE
10 #include FILE
  /external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
object.pxd 2 from libc.stdio cimport FILE
9 int PyObject_Print(object o, FILE *fp, int flags) except -1
10 # Print an object o, on file fp. Returns -1 on error. The flags
264 # Derives a file-descriptor from a Python object. If the object is
267 # return an integer or long integer, which is returned as the file
  /external/clang/test/Sema/
attr-bounded.c 6 typedef struct FILE FILE;
12 size_t fread(void *, size_t, size_t, FILE *)
format-strings-scanf.c 8 typedef struct _FILE FILE;
11 int fscanf(FILE * restrict, const char * restrict, ...) ;
17 int vfscanf(FILE * restrict, const char * restrict, va_list);
69 FILE *f = 0;
  /external/chromium_org/third_party/yasm/source/patched-yasm/
libyasm.h 2 * \file libyasm.h
3 * \brief YASM library primary header file.
34 typedef struct __FILE FILE;
69 #include <libyasm/file.h>
  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-simple-stream.h 10 } FILE;
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;
system-header-simulator.h 12 typedef struct _FILE FILE;
13 extern FILE *stdin;
14 extern FILE *stdout;
15 extern FILE *stderr;
16 // Include a variant of standard streams that occur in the pre-processed file.
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, ...)
    [all...]
  /external/compiler-rt/SDKs/linux/usr/include/
stdio.h 5 * This file is dual licensed under the MIT and the University of Illinois Open
10 * This is a stub SDK header file. This file is not part of the interface of
23 typedef struct _IO_FILE FILE;
29 #define SEEK_SET 0 /* set file offset to offset */
30 #define SEEK_CUR 1 /* set file offset to current plus offset */
31 #define SEEK_END 2 /* set file offset to EOF plus offset */
33 extern int fclose(FILE *);
34 extern int fflush(FILE *);
35 extern FILE *fopen(const char * restrict, const char * restrict)
    [all...]
  /external/lzma/CPP/Common/
StdOutStream.h 13 FILE *_stream;
16 CStdOutStream (FILE *stream): _streamIsOpen(false), _stream(stream) {};
18 operator FILE *() { return _stream; }
  /external/chromium_org/storage/common/fileapi/
directory_entry.h 3 // found in the LICENSE file.
17 // Holds metadata for file or directory entry.
20 FILE,
  /external/clang/test/PCH/
pr4489.c 8 typedef struct _IO_FILE FILE;
  /external/compiler-rt/SDKs/darwin/usr/include/
stdio.h 5 * This file is dual licensed under the MIT and the University of Illinois Open
10 * This is a stub SDK header file. This file is not part of the interface of
24 typedef struct __sFILE FILE;
61 extern FILE *__stderrp;
64 #define SEEK_SET 0 /* set file offset to offset */
67 #define SEEK_CUR 1 /* set file offset to current plus offset */
70 #define SEEK_END 2 /* set file offset to EOF plus offset */
73 int fclose(FILE *);
74 int fflush(FILE *);
    [all...]
  /external/chromium_org/net/ftp/
ftp_directory_listing_parser.h 3 // found in the LICENSE file.
21 FILE,
31 int64 size; // File size, in bytes. -1 if not applicable.
  /external/clang/test/Analysis/
taint-tester.cpp 4 typedef struct _FILE FILE;
6 extern FILE *stdin;
8 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
14 ssize_t getline(char ** __restrict, size_t * __restrict, FILE * __restrict);
18 FILE *fp;
stream.c 4 typedef struct _IO_FILE FILE;
5 #define SEEK_SET 0 /* Seek from beginning of file. */
7 #define SEEK_END 2 /* Seek from end of 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)
    [all...]
taint-generic.c 6 typedef struct _FILE FILE;
7 extern FILE *stdin;
8 int fscanf(FILE *restrict stream, const char *restrict format, ...);
  /external/chromium_org/content/public/browser/
browser_thread.h 3 // found in the LICENSE file.
71 // This is the thread that interacts with the file system.
72 FILE,
74 // Used for file system operations that block user interactions.
185 // Returns the thread pool used for blocking file I/O. Use this object to
186 // perform random blocking operations such as file writes or querying the
235 // (i.e. IO -> FILE -> IO), and thread switching delays can mean that the
236 // final IO tasks executes before the FILE task's stack unwinds.
237 // This would lead to the object destructing on the FILE thread, which often
279 struct DeleteOnFileThread : public DeleteOnThread<FILE> { };
    [all...]
  /external/chromium_org/ppapi/proxy/
serialized_handle.h 3 // found in the LICENSE file.
32 enum Type { INVALID, SHARED_MEMORY, SOCKET, FILE };
60 // Create a socket or file handle.
67 bool is_file() const { return type_ == FILE; }
103 type_ = FILE;
147 // This is valid if type == SOCKET || type == FILE.
150 // The following fields are valid if type == FILE.
152 // This is non-zero if file writes require quota checking.
  /external/chromium_org/chrome/browser/chromeos/drive/
change_list_processor_unittest.cc 3 // found in the LICENSE file.
31 FILE,
74 ResourceEntry file; local
76 file.set_title("File 1.txt");
77 file.set_resource_id("2_file_resource_id");
78 change_lists[0]->mutable_entries()->push_back(file);
81 file.set_title("SubDirectory File 1.txt");
82 file.set_resource_id("subdirectory_file_1_id")
468 ResourceEntry file; local
    [all...]
  /external/openfst/src/include/fst/extensions/far/
compile-strings.h 3 // you may not use this file except in compliance with the License.
33 // Construct a reader that provides FSTs from a file (stream) either on a
49 enum EntryType { LINE = 1, FILE = 2 };
87 done_ = true; // whitespace at the end of a file.
160 entry_type = StringReader<Arc>::FILE;
231 FSTERROR() << "FarCompileStrings: read from a file instead of stdin or"
238 (entry_type == StringReader<Arc>::FILE ? 1 :
260 << " in file " << inputs[i] << " failed with token_type = "
266 (fet == FET_FILE ? "file" : "unknown"));
283 if (entry_type != StringReader<Arc>::FILE) {
    [all...]
  /bionic/libc/include/
stdio.h 54 typedef off_t fpos_t; /* stdio file position type */
86 * try to write or read from a file that is in `read' or `write' mode.
107 int _flags; /* flags, below; this FILE is free if 0 */
110 short _flags; /* flags, below; this FILE is free if 0 */
139 } FILE;
141 extern FILE __sF[];
159 #define __SIGN 0x8000 /* ignore this file in _fwalk */
195 #define SEEK_SET 0 /* set file offset to offset */
198 #define SEEK_CUR 1 /* set file offset to current plus offset */
201 #define SEEK_END 2 /* set file offset to EOF plus offset *
    [all...]

Completed in 2820 milliseconds

1 2