Searched refs:file (Results 26 - 50 of 2662) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/
H A Ddescriptor_database_unittest.cc35 // This file makes extensive use of RFC 3092. :)
86 virtual bool AddToDatabase(const FileDescriptorProto& file) = 0;
104 virtual bool AddToDatabase(const FileDescriptorProto& file) { argument
105 return database_.Add(file);
124 virtual bool AddToDatabase(const FileDescriptorProto& file) { argument
126 file.SerializeToString(&data);
147 virtual bool AddToDatabase(const FileDescriptorProto& file) { argument
148 return pool_.BuildFile(file);
191 FileDescriptorProto file; local
192 EXPECT_TRUE(database_->FindFileByName("foo.proto", &file));
198 FileDescriptorProto file; local
206 FileDescriptorProto file; local
236 FileDescriptorProto file; local
243 FileDescriptorProto file; local
250 FileDescriptorProto file; local
257 FileDescriptorProto file; local
264 FileDescriptorProto file; local
271 FileDescriptorProto file; local
278 FileDescriptorProto file; local
285 FileDescriptorProto file; local
292 FileDescriptorProto file; local
299 FileDescriptorProto file; local
306 FileDescriptorProto file; local
312 FileDescriptorProto file; local
339 FileDescriptorProto file; local
345 FileDescriptorProto file; local
352 FileDescriptorProto file; local
360 FileDescriptorProto file; local
368 FileDescriptorProto file; local
374 FileDescriptorProto file; local
381 FileDescriptorProto file; local
564 FileDescriptorProto file; local
572 FileDescriptorProto file; local
580 FileDescriptorProto file; local
588 FileDescriptorProto file; local
596 FileDescriptorProto file; local
604 FileDescriptorProto file; local
612 FileDescriptorProto file; local
620 FileDescriptorProto file; local
628 FileDescriptorProto file; local
637 FileDescriptorProto file; local
644 FileDescriptorProto file; local
653 FileDescriptorProto file; local
662 FileDescriptorProto file; local
671 FileDescriptorProto file; local
680 FileDescriptorProto file; local
690 FileDescriptorProto file; local
697 FileDescriptorProto file; local
[all...]
/external/clang/test/Index/Inputs/
H A Dcrash-recovery-code-complete-remap.c3 // RUN: -remap-file="%s;%S/Inputs/crash-recovery-code-complete-remap.c" \
10 #warning parsing original file
/external/clang/test/SemaCXX/
H A Dwarn-deprecated-header.cpp4 // expected-warning@+2 {{This file is deprecated.}}
6 #warning This file is deprecated.
/external/libsepol/tests/policies/test-expander/
H A Duser-module.conf4 class file {read write};
/external/chromium/base/test/
H A Dtest_file_util_mac.cc3 // found in the LICENSE file.
14 bool EvictFileFromSystemCache(const FilePath& file) { argument
15 // There aren't any really direct ways to purge a file from the UBC. From
16 // talking with Amit Singh, the safest is to mmap the file with MAP_FILE (the
18 // open should then have to load the file from disk.
21 if (!mapped_file.Initialize(file)) {
22 DLOG(WARNING) << "failed to memory map " << file.value();
28 DLOG(WARNING) << "failed to invalidate memory map of " << file.value()
/external/clang/bindings/python/tests/cindex/
H A Dtest_file.py6 file = File.from_name(tu, "t.c")
7 assert str(file) == "t.c"
8 assert file.name == "t.c"
9 assert repr(file) == "<File: t.c>"
/external/libsepol/tests/policies/test-deps/
H A Dmodreq-bool-global.conf5 class file { read write };
14 allow a_t b_t : file { read write };
H A Dmodreq-type-global.conf5 class file { read write };
12 allow test_t type_req_t : file { read write };
H A Dmodreq-type-opt.conf5 class file { read write };
15 allow type_req_t file_t : file { read write };
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
H A DFileUtils.java5 * you may not use this file except in compliance with the License.
18 * As per the Apache license requirements, this file has been modified
44 * Reads the named file, translating {@link IOException} to a
47 * @param fileName non-null; name of the file to read
48 * @return non-null; contents of the file
52 File file = new File(fileName);
53 return readFile(file);
57 * Reads the given file, translating {@link IOException} to a
60 * @param file non-null; the file t
63 readFile(File file) argument
78 readFile(File file, int offset, int length) argument
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/common/
H A Ddebug.cpp4 // found in the LICENSE file.
29 FILE *file = fopen(TRACE_OUTPUT_FILE, "a"); local
31 if (file)
35 vfprintf(file, format, vararg);
38 fclose(file);
/external/webkit/Tools/Scripts/
H A Dupdate-webkit-auxiliary-libs35 my $file = "WebKitAuxiliaryLibrary";
36 my $zipFile = "$file.zip";
H A Dupdate-webkit-wincairo-libs35 my $file = "WinCairoRequirements";
36 my $zipFile = "$file.zip";
H A Ddo-webcore-rename81 my $file = $_;
84 if ($directoriesToIgnore{$file} or $file =~ /^\../ or $file =~ /^ChangeLog/) {
90 return if -d $file;
180 my $file = shift;
187 # time is to avoid accidental file renamings for short, non-DOM renames.
190 $newFile = "$1$renames{$2}$3" if $file =~ /^(.*\/\w*)($key)(\w*\.\w+)$/;
196 $file = "$1$renames{$2}$3" if $file
[all...]
/external/bison/lib/
H A Ddirname.h1 /* Take file names apart into directory and base names.
40 char *base_name (char const *file);
41 char *dir_name (char const *file);
42 size_t base_len (char const *file);
43 size_t dir_len (char const *file);
45 bool strip_trailing_slashes (char *file);
H A Ddirname.c1 /* dirname.c -- return all but the last element in a file name
33 dir_len (char const *file) argument
35 size_t prefix_length = FILE_SYSTEM_PREFIX_LEN (file);
39 for (length = base_name (file) - file; prefix_length < length; length--)
40 if (! ISSLASH (file[length - 1]))
44 return prefix_length + ISSLASH (file[prefix_length]);
53 dir_name (char const *file) argument
55 size_t length = dir_len (file);
56 bool append_dot = (length == FILE_SYSTEM_PREFIX_LEN (file));
111 char file[MAX_BUFF_LEN]; local
[all...]
/external/webkit/LayoutTests/http/tests/appcache/resources/
H A Dfail-on-update-2.php6 function setState($newState, $file)
8 file_put_contents($file, $newState);
11 function getState($file)
13 if (!file_exists($file)) {
16 return file_get_contents($file);
H A Dfail-on-update.php6 function setState($newState, $file)
8 file_put_contents($file, $newState);
11 function getState($file)
13 if (!file_exists($file)) {
16 return file_get_contents($file);
/external/kernel-headers/original/linux/
H A Dfile.h37 struct file ** fd; /* current fd array */
46 * Open file table structure
62 struct file * fd_array[NR_OPEN_DEFAULT];
67 extern void FASTCALL(__fput(struct file *));
68 extern void FASTCALL(fput(struct file *));
70 static inline void fput_light(struct file *file, int fput_needed) argument
73 fput(file);
76 extern struct file * FASTCALL(fget(unsigned int fd));
77 extern struct file * FASTCAL
96 struct file * file = NULL; local
[all...]
/external/valgrind/dynamic_annotations/
H A Ddynamic_annotations.c32 # error "This file should be built as pure C to avoid name mangling"
61 const char *file, int line, const volatile void *lock) {DYNAMIC_ANNOTATIONS_IMPL}
63 const char *file, int line, const volatile void *lock) {DYNAMIC_ANNOTATIONS_IMPL}
65 const char *file, int line, const volatile void *lock, long is_w) {DYNAMIC_ANNOTATIONS_IMPL}
67 const char *file, int line, const volatile void *lock, long is_w) {DYNAMIC_ANNOTATIONS_IMPL}
69 const char *file, int line, const volatile void *barrier, long count,
72 const char *file, int line, const volatile void *barrier) {DYNAMIC_ANNOTATIONS_IMPL}
74 const char *file, int line, const volatile void *barrier) {DYNAMIC_ANNOTATIONS_IMPL}
76 const char *file, int line, const volatile void *barrier) {DYNAMIC_ANNOTATIONS_IMPL}
79 const char *file, in
60 AnnotateRWLockCreate( const char *file, int line, const volatile void *lock) argument
62 AnnotateRWLockDestroy( const char *file, int line, const volatile void *lock) argument
64 AnnotateRWLockAcquired( const char *file, int line, const volatile void *lock, long is_w) argument
66 AnnotateRWLockReleased( const char *file, int line, const volatile void *lock, long is_w) argument
68 AnnotateBarrierInit( const char *file, int line, const volatile void *barrier, long count, long reinitialization_allowed) argument
71 AnnotateBarrierWaitBefore( const char *file, int line, const volatile void *barrier) argument
73 AnnotateBarrierWaitAfter( const char *file, int line, const volatile void *barrier) argument
75 AnnotateBarrierDestroy( const char *file, int line, const volatile void *barrier) argument
78 AnnotateCondVarWait( const char *file, int line, const volatile void *cv, const volatile void *lock) argument
81 AnnotateCondVarSignal( const char *file, int line, const volatile void *cv) argument
83 AnnotateCondVarSignalAll( const char *file, int line, const volatile void *cv) argument
85 AnnotateHappensBefore( const char *file, int line, const volatile void *obj) argument
87 AnnotateHappensAfter( const char *file, int line, const volatile void *obj) argument
89 AnnotatePublishMemoryRange( const char *file, int line, const volatile void *address, long size) argument
91 AnnotateUnpublishMemoryRange( const char *file, int line, const volatile void *address, long size) argument
93 AnnotatePCQCreate( const char *file, int line, const volatile void *pcq) argument
95 AnnotatePCQDestroy( const char *file, int line, const volatile void *pcq) argument
97 AnnotatePCQPut( const char *file, int line, const volatile void *pcq) argument
99 AnnotatePCQGet( const char *file, int line, const volatile void *pcq) argument
101 AnnotateNewMemory( const char *file, int line, const volatile void *mem, long size) argument
103 AnnotateExpectRace( const char *file, int line, const volatile void *mem, const char *description) argument
106 AnnotateFlushExpectedRaces( const char *file, int line) argument
108 AnnotateBenignRace( const char *file, int line, const volatile void *mem, const char *description) argument
111 AnnotateBenignRaceSized( const char *file, int line, const volatile void *mem, long size, const char *description) argument
114 AnnotateMutexIsUsedAsCondVar( const char *file, int line, const volatile void *mu) argument
116 AnnotateMutexIsNotPHB( const char *file, int line, const volatile void *mu) argument
118 AnnotateTraceMemory( const char *file, int line, const volatile void *arg) argument
120 AnnotateThreadName( const char *file, int line, const char *name) argument
122 AnnotateIgnoreReadsBegin( const char *file, int line) argument
124 AnnotateIgnoreReadsEnd( const char *file, int line) argument
126 AnnotateIgnoreWritesBegin( const char *file, int line) argument
128 AnnotateIgnoreWritesEnd( const char *file, int line) argument
130 AnnotateIgnoreSyncBegin( const char *file, int line) argument
132 AnnotateIgnoreSyncEnd( const char *file, int line) argument
134 AnnotateEnableRaceDetection( const char *file, int line, int enable) argument
136 AnnotateNoOp( const char *file, int line, const volatile void *arg) argument
138 AnnotateFlushState( const char *file, int line) argument
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DOpenRandomFileTest.java2 * contributor license agreements. See the NOTICE file distributed with
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
37 File file = File.createTempFile("test", "tmp");
38 assertTrue(file.exists());
39 file.deleteOnExit();
40 FileOutputStream fos = new FileOutputStream(file);
44 String fileName = file.getCanonicalPath();
50 File file = File.createTempFile("test", "tmp");
51 assertTrue(file
[all...]
/external/proguard/src/proguard/io/
H A DFileDataEntry.java28 * This <code>DataEntry</code> represents a file.
35 private final File file; field in class:FileDataEntry
40 File file)
43 this.file = file;
51 // Chop the directory name from the file name and get the right separators.
52 return file.equals(directory) ?
53 file.getName() :
54 file.getPath()
62 return file
39 FileDataEntry(File directory, File file) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DFileUtils.java5 * you may not use this file except in compliance with the License.
35 * Reads the named file, translating {@link IOException} to a
38 * @param fileName {@code non-null;} name of the file to read
39 * @return {@code non-null;} contents of the file
42 File file = new File(fileName);
43 return readFile(file);
47 * Reads the given file, translating {@link IOException} to a
50 * @param file {@code non-null;} the file to read
51 * @return {@code non-null;} contents of the file
53 readFile(File file) argument
[all...]
/external/compiler-rt/lib/
H A Dint_util.c5 * This file is dual licensed under the MIT and the University of Illinois Open
14 /* NOTE: The definitions in this file are declared weak because we clients to be
28 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
29 panic("%s:%d: abort in %s", file, line, function);
35 extern void __assert_rtn(const char *func, const char *file,
40 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
41 __assert_rtn(function, file, line, "libcompiler_rt abort");
52 void compilerrt_abort_impl(const char *file, int line, const char *function) { argument
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DFieldIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a field reference inside a Dalvik file.
42 public void addContents(DexFile file) { argument
43 super.addContents(file);
45 TypeIdsSection typeIds = file.getTypeIds();
60 protected int getTypoidIdx(DexFile file) { argument
61 TypeIdsSection typeIds = file.getTypeIds();

Completed in 470 milliseconds

1234567891011>>