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

1 2 3 4 5 6 7 8

  /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/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/webkit/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...]
  /ndk/sources/android/support/src/wcstox/
intscan.c 30 // ANDROID: Redefine FILE to use our custom stream abstraction.
31 #undef FILE
32 #define FILE struct fake_file_t
54 unsigned long long __intscan(FILE *f, unsigned base, int pok, unsigned long long lim)
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
FileFileFilter.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
19 import java.io.File;
23 * This filter accepts <code>File</code>s that are files (not directories).
29 * File dir = new File(".");
30 * String[] files = dir.list( FileFileFilter.FILE );
41 /** Singleton instance of file filter */
42 public static final IOFileFilter FILE = new FileFileFilter()
    [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...]
  /ndk/sources/android/support/src/stdio/
stdio_impl.h 2 // crafted FILE object to represent the output/input buffers. However, this
3 // doesn't work when using FILE handle from Bionic.
5 // This header is used to 'cheat' by redefining FILE and a few other macro
13 // A structure that wraps either a real FILE* handle, or an input/output
16 FILE* file; member in struct:__anon42830
22 // Initialize FakeFILE wrapper |file| to use a FILE* handle |f|
23 void fake_file_init_file(FakeFILE* file, FILE* f) __HIDDEN__
    [all...]
  /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
234 // when an object can hop between threads (i.e. IO -> FILE -> IO), and thread
235 // switching delays can mean that the final IO tasks executes before the FILE
237 // FILE thread, which often is not what you want (i.e. to unregister from
270 struct DeleteOnFileThread : public DeleteOnThread<FILE> { };
    [all...]
  /external/owasp/sanitizer/tools/
update_tree_in_svn.py 13 FILE = 'f'
30 Syncrhonize the destination file tree with the source file tree
37 return FILE
48 # of a source file and a destination file
99 (NO_EXIST, FILE) : (remove, svn_delete,),
101 (FILE, NO_EXIST): (copy, svn_add,),
102 (FILE, FILE) : (copy_if_different,)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mbstring.h 2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the mingw-w64 runtime package.
4 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
28 typedef struct _iobuf FILE;
  /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.

Completed in 432 milliseconds

1 2 3 4 5 6 7 8