Searched defs:file (Results 201 - 225 of 1433) sorted by relevance

1234567891011>>

/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_generator.cc55 bool CppGenerator::Generate(const FileDescriptor* file, argument
98 string basename = StripProto(file->name());
101 FileGenerator file_generator(file, file_options);
111 // Generate cc file.
H A Dcpp_helpers.h115 // Convert a file name into a valid identifier.
118 // Return the name of the AddDescriptors() function for a given file.
121 // Return the name of the AssignDescriptors() function for a given file.
124 // Return the qualified C++ name for a file level symbol.
127 // Return the name of the ShutdownFile() function for a given file.
138 // Do message classes in this file use UnknownFieldSet?
140 inline bool UseUnknownFieldSet(const FileDescriptor* file) { argument
141 return file->options().optimize_for() != FileOptions::LITE_RUNTIME;
145 // Does this file have any enum type definitions?
146 bool HasEnumDefinitions(const FileDescriptor* file);
150 HasGeneratedMethods(const FileDescriptor* file) argument
155 HasDescriptorMethods(const FileDescriptor* file) argument
160 HasGenericServices(const FileDescriptor* file) argument
167 HasUtf8Verification(const FileDescriptor* file) argument
174 HasFastArraySerialization(const FileDescriptor* file) argument
[all...]
/external/selinux/libselinux/utils/
H A Dselabel_lookup.c12 "usage: %s -b backend [-v] [-r] -k key [-t type] [-f file]\n\n"
14 "-b The backend - \"file\", \"media\", \"x\", \"db\" or "
20 "-f Optional file containing the specs (defaults to\n\t"
23 "%s -v -b file -k /run -t 0\n\t"
25 " \"file\" backend for path \"/run\" with mode = 0\n\t"
36 char *validate = NULL, *key = NULL, *context = NULL, *file = NULL; local
40 { SELABEL_OPT_PATH, file },
50 if (!strcasecmp(optarg, "file")) {
67 file = optarg;
86 selabel_option[0].value = file;
[all...]
H A Dselabel_partial_match.c13 "usage: %s [-v] -p <path> [-f file]\n\n"
17 " against a regex entry in the file_contexts file.\n\t"
18 "-f Optional file_contexts file (defaults to current policy).\n\n"
31 char *validate = NULL, *path = NULL, *file = NULL; local
35 { SELABEL_OPT_PATH, file },
45 file = optarg;
58 selabel_option[0].value = file;
/external/skia/platform_tools/android/launcher/
H A Dskia_launcher.cpp5 * found in the LICENSE file.
18 FILE* file = fopen(fileName, "r"); local
19 if (file) {
20 fclose(file);
/external/skia/tools/
H A Dchrome_fuzz.cpp3 // found in the LICENSE file.
14 FILE* file = sk_fopen(filename, kRead_SkFILE_Flag); local
15 if (!file) {
16 SkDebugf("couldn't open file %s\n", filename);
19 size_t len = sk_fgetsize(file);
21 SkDebugf("couldn't read file %s\n", filename);
25 (void) sk_fread(testdata->writable_str(), len, file);
/external/skia/tools/lua/
H A Dlua_app.cpp5 * found in the LICENSE file.
22 static SkData* read_into_data(const char file[]) { argument
23 SkData* data = SkData::NewFromFileName(file);
/external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/internal/
H A DProgressListener.java33 public void onDirectory(File file); argument
35 public void onFileAddition(File file); argument
39 public void onFileScan(File file); argument
41 public void onInplaceConversion(File file); argument
/external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/internal/
H A DNopProgressListener.java33 public void onDirectory(File file) { argument
39 public void onFileAddition(File file) { argument
42 public void onFileScan(File file) { argument
45 public void onInplaceConversion(File file) { argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
H A DFileDataStore.java12 public FileDataStore(@Nonnull File file) throws FileNotFoundException, IOException { argument
13 this.raf = new RandomAccessFile(file, "rw");
/external/smali/util/src/main/java/org/jf/util/
H A DPathUtil.java62 //path from one to the other, so just return the canonical file
108 private static ArrayList<String> getPathComponents(File file) { argument
111 while (file != null) {
112 File parentFile = file.getParentFile();
115 path.add(0, file.getPath());
117 path.add(0, file.getName());
120 file = parentFile;
/external/squashfs-tools/kernel/fs/squashfs/
H A Dsymlink.c25 * This file implements code to handle symbolic links.
46 static int squashfs_symlink_readpage(struct file *file, struct page *page) argument
/external/toybox/kconfig/
H A Dutil.c11 /* file already present in list? If not add it */
12 struct file *file_lookup(const char *name)
14 struct file *file; local
16 for (file = file_list; file; file = file->next) {
17 if (!strcmp(name, file->name))
18 return file;
32 struct file *file; local
[all...]
/external/toybox/toys/other/
H A Dlosetup.c15 Associate a loopback device with a file, or show current file (if any)
24 -c Check capacity (file size changed)
49 todo: basic /dev file association
61 static void loopback_setup(char *device, char *file) argument
67 // Open file (ffd) and loop device (lfd)
69 if (file) ffd = xopen(file, TT.openflags);
90 if (errno != ENXIO || !file) {
100 // Check size of file o
181 char *file = (toys.optflags & (FLAG_d|FLAG_c)) ? NULL : toys.optargs[1]; local
[all...]
/external/v8/src/base/
H A Dlogging.cc3 // found in the LICENSE file.
104 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { argument
107 v8::base::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file,
/external/v8/tools/
H A Dshell-utils.h44 FILE* file = fopen(name, "rb"); local
46 if (file == NULL) return NULL;
48 fseek(file, 0, SEEK_END);
49 int file_size = static_cast<int>(ftell(file));
50 rewind(file);
56 int read = static_cast<int>(fread(&chars[i], 1, file_size - i, file));
59 fclose(file);
/external/valgrind/drd/tests/
H A Dunified_annotations.h31 AnnotateCondVarSignal(const char *file, int line, const volatile void *cv) argument
37 AnnotateCondVarWait(const char *file, int line, const volatile void *cv, argument
/external/valgrind/none/tests/
H A Dvalgrind_cpp_test.cpp43 void VG_(assert_fail)(Bool isCore, const HChar* expr, const HChar* file, argument
/external/vogar/src/vogar/
H A DActionFinder.java5 * you may not use this file except in compliance with the License.
37 public void findActions(File file) { argument
38 findActionsRecursive(file, 0);
41 private void findActionsRecursive(File file, int depth) { argument
42 if (file.isDirectory()) {
44 for (File child : file.listFiles()) {
48 log.verbose("found " + (actions.size() - size) + " actions in " + file);
53 // Don't try to treat this file as a class unless it resembles a .java file
54 if (!matches(file)) {
69 matches(File file) argument
90 getSourcePath(File file, String className) argument
[all...]
H A DClasspath.java5 * you may not use this file except in compliance with the License.
63 public boolean contains(File file) { argument
64 return elements.contains(file);
/external/vogar/src/vogar/target/
H A DProfiler.java5 * you may not use this file except in compliance with the License.
29 public abstract void shutdown(File file); argument
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/webrtc/webrtc/base/
H A Dcommon.cc5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
54 void LogAssert(const char* function, const char* file, int line, argument
57 custom_assert_logger_(function, file, line, expression);
59 LOG(LS_ERROR) << file << "(" << line << ")" << ": ASSERT FAILED: "
H A Dposix.cc5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
45 bool RunAsDaemon(const char *file, const char *const argv[]) { argument
84 execvp(file, const_cast<char *const *>(argv));
H A Dunittest_main.cc5 * that can be found in the LICENSE file in the root of the source
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
39 const wchar_t* file,
43 LOG(LS_ERROR) << expression << std::endl << function << std::endl << file
37 TestInvalidParameterHandler(const wchar_t* expression, const wchar_t* function, const wchar_t* file, unsigned int line, uintptr_t pReserved) argument

Completed in 732 milliseconds

1234567891011>>