Home
last modified time | relevance | path

Searched defs:file (Results 1 – 25 of 1918) sorted by relevance

12345678910>>...77

/external/chromium_org/third_party/protobuf/src/google/protobuf/
Ddescriptor_database_unittest.cc104 virtual bool AddToDatabase(const FileDescriptorProto& file) { in AddToDatabase()
124 virtual bool AddToDatabase(const FileDescriptorProto& file) { in AddToDatabase()
147 virtual bool AddToDatabase(const FileDescriptorProto& file) { in AddToDatabase()
191 FileDescriptorProto file; in TEST_P() local
198 FileDescriptorProto file; in TEST_P() local
206 FileDescriptorProto file; in TEST_P() local
236 FileDescriptorProto file; in TEST_P() local
243 FileDescriptorProto file; in TEST_P() local
250 FileDescriptorProto file; in TEST_P() local
257 FileDescriptorProto file; in TEST_P() local
[all …]
/external/protobuf/src/google/protobuf/
Ddescriptor_database_unittest.cc104 virtual bool AddToDatabase(const FileDescriptorProto& file) { in AddToDatabase()
124 virtual bool AddToDatabase(const FileDescriptorProto& file) { in AddToDatabase()
147 virtual bool AddToDatabase(const FileDescriptorProto& file) { in AddToDatabase()
191 FileDescriptorProto file; in TEST_P() local
198 FileDescriptorProto file; in TEST_P() local
206 FileDescriptorProto file; in TEST_P() local
236 FileDescriptorProto file; in TEST_P() local
243 FileDescriptorProto file; in TEST_P() local
250 FileDescriptorProto file; in TEST_P() local
257 FileDescriptorProto file; in TEST_P() local
[all …]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
Ddynamic_annotations.c67 void AnnotateRWLockCreate(const char *file, int line, in AnnotateRWLockCreate()
69 void AnnotateRWLockDestroy(const char *file, int line, in AnnotateRWLockDestroy()
71 void AnnotateRWLockAcquired(const char *file, int line, in AnnotateRWLockAcquired()
73 void AnnotateRWLockReleased(const char *file, int line, in AnnotateRWLockReleased()
75 void AnnotateBarrierInit(const char *file, int line, in AnnotateBarrierInit()
78 void AnnotateBarrierWaitBefore(const char *file, int line, in AnnotateBarrierWaitBefore()
80 void AnnotateBarrierWaitAfter(const char *file, int line, in AnnotateBarrierWaitAfter()
82 void AnnotateBarrierDestroy(const char *file, int line, in AnnotateBarrierDestroy()
85 void AnnotateCondVarWait(const char *file, int line, in AnnotateCondVarWait()
88 void AnnotateCondVarSignal(const char *file, int line, in AnnotateCondVarSignal()
[all …]
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
Ddynamic_annotations.c67 void AnnotateRWLockCreate(const char *file, int line, in AnnotateRWLockCreate()
69 void AnnotateRWLockDestroy(const char *file, int line, in AnnotateRWLockDestroy()
71 void AnnotateRWLockAcquired(const char *file, int line, in AnnotateRWLockAcquired()
73 void AnnotateRWLockReleased(const char *file, int line, in AnnotateRWLockReleased()
75 void AnnotateBarrierInit(const char *file, int line, in AnnotateBarrierInit()
78 void AnnotateBarrierWaitBefore(const char *file, int line, in AnnotateBarrierWaitBefore()
80 void AnnotateBarrierWaitAfter(const char *file, int line, in AnnotateBarrierWaitAfter()
82 void AnnotateBarrierDestroy(const char *file, int line, in AnnotateBarrierDestroy()
85 void AnnotateCondVarWait(const char *file, int line, in AnnotateCondVarWait()
88 void AnnotateCondVarSignal(const char *file, int line, in AnnotateCondVarSignal()
[all …]
/external/chromium_org/tools/deep_memory_profiler/
Dpolicies.json3 "file": "policy.android.browser.json", string
7 "file": "policy.android.renderer.json", string
11 "file": "policy.android.webview.json", string
15 "file": "policy.sourcefile.json", string
19 "file": "policy.l0.json", string
23 "file": "policy.l1.json", string
27 "file": "policy.l2.json", string
31 "file": "policy.linux.browser.json", string
35 "file": "policy.t0.json", string
/external/chromium_org/base/
Dplatform_file_posix.cc49 static bool IsOpenAppend(PlatformFile file) { in IsOpenAppend()
53 static int CallFtruncate(PlatformFile file, int64 length) { in CallFtruncate()
57 static int CallFsync(PlatformFile file) { in CallFsync()
61 static int CallFutimes(PlatformFile file, const struct timeval times[2]) { in CallFutimes()
78 static PlatformFileError CallFctnlFlock(PlatformFile file, bool do_lock) { in CallFctnlFlock()
90 static bool IsOpenAppend(PlatformFile file) { in IsOpenAppend()
97 static int CallFtruncate(PlatformFile file, int64 length) { in CallFtruncate()
102 static int CallFsync(PlatformFile file) { in CallFsync()
107 static int CallFutimes(PlatformFile file, const struct timeval times[2]) { in CallFutimes()
112 static PlatformFileError CallFctnlFlock(PlatformFile file, bool do_lock) { in CallFctnlFlock()
[all …]
Dplatform_file_win.cc86 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL, in CreatePlatformFileUnsafe() local
106 FILE* FdopenPlatformFile(PlatformFile file, const char* mode) { in FdopenPlatformFile()
115 bool ClosePlatformFile(PlatformFile file) { in ClosePlatformFile()
120 int64 SeekPlatformFile(PlatformFile file, in SeekPlatformFile()
135 int ReadPlatformFile(PlatformFile file, int64 offset, char* data, int size) { in ReadPlatformFile()
156 int ReadPlatformFileAtCurrentPos(PlatformFile file, char* data, int size) { in ReadPlatformFileAtCurrentPos()
170 int ReadPlatformFileNoBestEffort(PlatformFile file, int64 offset, char* data, in ReadPlatformFileNoBestEffort()
175 int ReadPlatformFileCurPosNoBestEffort(PlatformFile file, in ReadPlatformFileCurPosNoBestEffort()
180 int WritePlatformFile(PlatformFile file, int64 offset, in WritePlatformFile()
200 int WritePlatformFileAtCurrentPos(PlatformFile file, const char* data, in WritePlatformFileAtCurrentPos()
[all …]
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_helpers.h116 inline bool HasUnknownFields(const FileDescriptor *file) { in HasUnknownFields()
122 inline bool HasGeneratedMethods(const FileDescriptor *file) { in HasGeneratedMethods()
127 inline bool HasDescriptorMethods(const FileDescriptor *file) { in HasDescriptorMethods()
132 inline bool HasGenericServices(const FileDescriptor *file) { in HasGenericServices()
139 inline bool HasUtf8Verification(const FileDescriptor* file) { in HasUtf8Verification()
146 inline bool HasFastArraySerialization(const FileDescriptor* file) { in HasFastArraySerialization()
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_helpers.h125 inline bool HasUnknownFields(const FileDescriptor* file) { in HasUnknownFields()
135 inline bool HasGeneratedMethods(const FileDescriptor* file) { in HasGeneratedMethods()
140 inline bool HasDescriptorMethods(const FileDescriptor* file) { in HasDescriptorMethods()
145 inline bool HasGenericServices(const FileDescriptor* file) { in HasGenericServices()
152 inline bool HasUtf8Verification(const FileDescriptor* file) { in HasUtf8Verification()
159 inline bool HasFastArraySerialization(const FileDescriptor* file) { in HasFastArraySerialization()
/external/chromium_org/gpu/command_buffer/
Dbuild_gles2_cmd_buffer.py2696 def WriteStruct(self, func, file): argument
2757 def WriteHandlerImplementation(self, func, file): argument
2762 def WriteCmdSizeTest(self, func, file): argument
2766 def WriteFormatTest(self, func, file): argument
2789 def WriteImmediateFormatTest(self, func, file): argument
2793 def WriteBucketFormatTest(self, func, file): argument
2797 def WriteGetDataSizeCode(self, func, file): argument
2801 def WriteImmediateCmdSizeTest(self, func, file): argument
2806 def WriteImmediateHandlerImplementation (self, func, file): argument
2811 def WriteBucketHandlerImplementation (self, func, file): argument
[all …]
/external/chromium_org/build/mac/
Dchange_mach_o_flags.py102 def CheckedSeek(file, offset): argument
113 def CheckedRead(file, count): argument
125 def ReadUInt32(file, endian): argument
137 def ReadMachHeader(file, endian): argument
151 def ReadFatArch(file): argument
164 def WriteUInt32(file, uint32, endian): argument
175 def HandleMachOFile(file, options, offset=0): argument
221 def HandleFatFile(file, options, fat_offset=0): argument
/external/chromium/base/
Dplatform_file_posix.cc138 bool ClosePlatformFile(PlatformFile file) { in ClosePlatformFile()
142 int ReadPlatformFile(PlatformFile file, int64 offset, char* data, int size) { in ReadPlatformFile()
149 int WritePlatformFile(PlatformFile file, int64 offset, in WritePlatformFile()
157 bool TruncatePlatformFile(PlatformFile file, int64 length) { in TruncatePlatformFile()
161 bool FlushPlatformFile(PlatformFile file) { in FlushPlatformFile()
165 bool TouchPlatformFile(PlatformFile file, const base::Time& last_access_time, in TouchPlatformFile()
182 bool GetPlatformFileInfo(PlatformFile file, PlatformFileInfo* info) { in GetPlatformFileInfo()
Dplatform_file_win.cc70 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL, in CreatePlatformFile() local
107 bool ClosePlatformFile(PlatformFile file) { in ClosePlatformFile()
112 int ReadPlatformFile(PlatformFile file, int64 offset, char* data, int size) { in ReadPlatformFile()
133 int WritePlatformFile(PlatformFile file, int64 offset, in WritePlatformFile()
153 bool TruncatePlatformFile(PlatformFile file, int64 length) { in TruncatePlatformFile()
179 bool FlushPlatformFile(PlatformFile file) { in FlushPlatformFile()
184 bool TouchPlatformFile(PlatformFile file, const base::Time& last_access_time, in TouchPlatformFile()
196 bool GetPlatformFileInfo(PlatformFile file, PlatformFileInfo* info) { in GetPlatformFileInfo()
/external/icu4c/io/
Dufile.c198 u_fflush(UFILE *file) in u_fflush()
212 u_frewind(UFILE *file) in u_frewind()
227 u_fclose(UFILE *file) in u_fclose()
254 u_fgetlocale( UFILE *file) in u_fgetlocale()
260 u_fsetlocale(UFILE *file, in u_fsetlocale()
271 u_fgetcodepage(UFILE *file) in u_fgetcodepage()
286 UFILE *file) in u_fsetcodepage()
304 u_fgetConverter(UFILE *file) in u_fgetConverter()
309 U_CAPI const UNumberFormat* U_EXPORT2 u_fgetNumberFormat(UFILE *file) in u_fgetNumberFormat()
/external/chromium_org/third_party/ots/src/
Dvmtx.cc16 bool ots_vmtx_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { in ots_vmtx_parse()
33 bool ots_vmtx_should_serialise(OpenTypeFile *file) { in ots_vmtx_should_serialise()
40 bool ots_vmtx_serialise(OTSStream *out, OpenTypeFile *file) { in ots_vmtx_serialise()
47 void ots_vmtx_free(OpenTypeFile *file) { in ots_vmtx_free()
Dvhea.cc16 bool ots_vhea_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { in ots_vhea_parse()
36 bool ots_vhea_should_serialise(OpenTypeFile *file) { in ots_vhea_should_serialise()
44 bool ots_vhea_serialise(OTSStream *out, OpenTypeFile *file) { in ots_vhea_serialise()
51 void ots_vhea_free(OpenTypeFile *file) { in ots_vhea_free()
Dhmtx.cc15 bool ots_hmtx_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { in ots_hmtx_parse()
32 bool ots_hmtx_should_serialise(OpenTypeFile *file) { in ots_hmtx_should_serialise()
36 bool ots_hmtx_serialise(OTSStream *out, OpenTypeFile *file) { in ots_hmtx_serialise()
43 void ots_hmtx_free(OpenTypeFile *file) { in ots_hmtx_free()
Dhhea.cc15 bool ots_hhea_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { in ots_hhea_parse()
34 bool ots_hhea_should_serialise(OpenTypeFile *file) { in ots_hhea_should_serialise()
38 bool ots_hhea_serialise(OTSStream *out, OpenTypeFile *file) { in ots_hhea_serialise()
45 void ots_hhea_free(OpenTypeFile *file) { in ots_hhea_free()
Dfpgm.cc12 bool ots_fpgm_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { in ots_fpgm_parse()
31 bool ots_fpgm_should_serialise(OpenTypeFile *file) { in ots_fpgm_should_serialise()
36 bool ots_fpgm_serialise(OTSStream *out, OpenTypeFile *file) { in ots_fpgm_serialise()
46 void ots_fpgm_free(OpenTypeFile *file) { in ots_fpgm_free()
Dprep.cc12 bool ots_prep_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { in ots_prep_parse()
31 bool ots_prep_should_serialise(OpenTypeFile *file) { in ots_prep_should_serialise()
36 bool ots_prep_serialise(OTSStream *out, OpenTypeFile *file) { in ots_prep_serialise()
46 void ots_prep_free(OpenTypeFile *file) { in ots_prep_free()
Dcvt.cc12 bool ots_cvt_parse(OpenTypeFile *file, const uint8_t *data, size_t length) { in ots_cvt_parse()
35 bool ots_cvt_should_serialise(OpenTypeFile *file) { in ots_cvt_should_serialise()
42 bool ots_cvt_serialise(OTSStream *out, OpenTypeFile *file) { in ots_cvt_serialise()
52 void ots_cvt_free(OpenTypeFile *file) { in ots_cvt_free()
/external/chromium_org/third_party/zlib/
Dgzlib.c230 int ZEXPORT gzbuffer(file, size) in gzbuffer() argument
255 int ZEXPORT gzrewind(file) in gzrewind() argument
277 z_off64_t ZEXPORT gzseek64(file, offset, whence) in gzseek64() argument
353 z_off_t ZEXPORT gzseek(file, offset, whence) in gzseek() argument
365 z_off64_t ZEXPORT gztell64(file) in gztell64() argument
382 z_off_t ZEXPORT gztell(file) in gztell() argument
392 z_off64_t ZEXPORT gzoffset64(file) in gzoffset64() argument
415 z_off_t ZEXPORT gzoffset(file) in gzoffset() argument
425 int ZEXPORT gzeof(file) in gzeof() argument
443 const char * ZEXPORT gzerror(file, errnum) in gzerror() argument
[all …]
/external/e2fsprogs/lib/ext2fs/
Dfileio.c39 ext2_file_t file; in ext2fs_file_open2() local
91 ext2_filsys ext2fs_file_get_fs(ext2_file_t file) in ext2fs_file_get_fs()
102 errcode_t ext2fs_file_flush(ext2_file_t file) in ext2fs_file_flush()
140 static errcode_t sync_buffer_position(ext2_file_t file) in sync_buffer_position()
165 static errcode_t load_buffer(ext2_file_t file, int dontfill) in load_buffer()
192 errcode_t ext2fs_file_close(ext2_file_t file) in ext2fs_file_close()
208 errcode_t ext2fs_file_read(ext2_file_t file, void *buf, in ext2fs_file_read()
250 errcode_t ext2fs_file_write(ext2_file_t file, const void *buf, in ext2fs_file_write()
296 errcode_t ext2fs_file_llseek(ext2_file_t file, __u64 offset, in ext2fs_file_llseek()
316 errcode_t ext2fs_file_lseek(ext2_file_t file, ext2_off_t offset, in ext2fs_file_lseek()
[all …]
/external/zlib/src/
Dgzlib.c314 int ZEXPORT gzbuffer(file, size) in gzbuffer() argument
339 int ZEXPORT gzrewind(file) in gzrewind() argument
362 z_off64_t ZEXPORT gzseek64(file, offset, whence) in gzseek64() argument
439 z_off_t ZEXPORT gzseek(file, offset, whence) in gzseek() argument
451 z_off64_t ZEXPORT gztell64(file) in gztell64() argument
468 z_off_t ZEXPORT gztell(file) in gztell() argument
478 z_off64_t ZEXPORT gzoffset64(file) in gzoffset64() argument
501 z_off_t ZEXPORT gzoffset(file) in gzoffset() argument
511 int ZEXPORT gzeof(file) in gzeof() argument
528 const char * ZEXPORT gzerror(file, errnum) in gzerror() argument
[all …]
/external/emma/ant/ant14/com/vladium/emma/data/
DmergeTask.java55 public void setMergefile (final File file) in setMergefile()
64 public void setOutfile (final File file) in setOutfile()
73 public void setTofile (final File file) in setTofile()
82 public void setFile (final File file) in setFile()

12345678910>>...77