Searched defs:files (Results 1 - 25 of 183) sorted by relevance

12345678

/external/google-breakpad/src/common/
H A Ddwarf_line_to_module_unittest.cc54 vector<Module::File *> files; local
55 m.GetFiles(&files);
56 EXPECT_EQ(1U, files.size());
57 EXPECT_STREQ("/file1", files[0]->name.c_str());
62 EXPECT_TRUE(lines[0].file == files[0]);
89 vector<Module::File *> files; local
90 m.GetFiles(&files);
91 ASSERT_EQ(5U, files.size());
92 EXPECT_STREQ("/directory1/file1", files[0]->name.c_str());
93 EXPECT_STREQ("/directory1/file2", files[
136 vector<Module::File *> files; local
154 vector<Module::File *> files; local
[all...]
/external/elfutils/src/libdw/
H A Ddwarf_macro_getsrcfiles.c37 Dwarf_Files **files, size_t *nfiles)
43 if (table->files == NULL)
48 *files = NULL;
78 NULL, &table->files) < 0)
79 table->files = (void *) -1;
82 if (table->files == (void *) -1)
85 *files = table->files;
86 *nfiles = table->files->nfiles;
36 dwarf_macro_getsrcfiles(Dwarf *dbg, Dwarf_Macro *macro, Dwarf_Files **files, size_t *nfiles) argument
H A Ddwarf_getsrcfiles.c40 dwarf_getsrcfiles (Dwarf_Die *cudie, Dwarf_Files **files, size_t *nfiles) argument
60 else if (cu->files != (void *) -1l)
66 assert (cu->files != NULL && cu->files != (void *) -1l);
67 *files = cu->files;
69 *nfiles = cu->files->nfiles;
/external/junit/
H A DCommon.mk2 # List of junit files include in documentation.
6 # core-junit-files, junit-runner-files, junit_to_document, junit4-target-src.
7 # They are lists of .java files relative to external/junit/.
13 core-junit-files := \
28 junit-runner-files := \
37 # List of junit javadoc source files for Android public API
40 $(core-junit-files) \
41 $(junit-runner-files)
46 $(call find-files
[all...]
/external/deqp/scripts/src_util/
H A Dcheck_all.py32 parser.add_argument("-i", "--only-changed", action="store_true", dest="useGitIndex", default=False, help="Check only modified files. Uses git.")
37 files = getChangedFiles() variable
39 files = getAllProjectFiles() variable
42 checkWhitespace(files),
43 checkIncludeGuards(files),
44 #todo checkRedundantIncludeGuards(files),
H A Dcheck_whitespace.py41 def checkWhitespace (files):
43 for file in files:
53 parser.add_argument("-i", "--only-changed", action="store_true", dest="useGitIndex", default=False, help="Check only modified files. Uses git.")
58 files = getChangedFiles() variable
60 files = getAllProjectFiles() variable
62 error = not checkWhitespace(files)
/external/harfbuzz_ng/src/
H A Dgen-arabic-table.py10 files = [file (x) for x in sys.argv[1:]] variable
12 headers = [[files[0].readline (), files[0].readline ()], [files[2].readline (), files[2].readline ()]]
14 while files[0].readline ().find ('##################') < 0:
250 print " * on files with these headers:"
261 read_blocks (files[2])
262 print_joining_table (files[0])
263 print_shaping_table (files[
[all...]
/external/libmtp/examples/
H A Dfiles.c2 * \file files.c
3 * Example program that lists all files on a device.
52 LIBMTP_file_t *files; local
61 fprintf(stdout, "mtp-files: No Devices have been found\n");
64 fprintf(stderr, "mtp-files: There has been an error connecting. Exit\n");
67 fprintf(stderr, "mtp-files: Memory Allocation Error. Exit\n");
73 fprintf(stderr, "mtp-files: Unknown error, please report "
79 fprintf(stdout, "mtp-files: Successfully connected\n");
99 files = LIBMTP_Get_Filelisting_With_Callback(iter, NULL, NULL);
100 if (files
[all...]
H A Demptyfolders.c25 static void prune_empty_folders(LIBMTP_mtpdevice_t *device, LIBMTP_file_t *files, LIBMTP_folder_t *folderlist, int do_delete) argument
34 file = files;
43 if(found == 0) { // no files claim this as a parent
55 prune_empty_folders(device,files,folderlist->child,do_delete); // recurse down
56 prune_empty_folders(device,files,folderlist->sibling,do_delete); // recurse along
84 LIBMTP_file_t *files; local
94 files = LIBMTP_Get_Filelisting_With_Callback(device,NULL,NULL);
102 prune_empty_folders(device,files,folders,do_delete);
106 LIBMTP_destroy_file_t(files);
H A Dconnect.c32 LIBMTP_file_t *files; variable
91 files = LIBMTP_Get_Filelisting_With_Callback (device, NULL, NULL);
/external/libvncserver/x11vnc/
H A Dallowed_input_t.h43 int files; member in struct:allowed_input
/external/libvncserver/webclients/novnc/include/
H A Djsunzip.js66 this.files = [];
122 this.files[fileName] =
139 var fileInfo = this.files[fileName];
/external/compiler-rt/
H A DAndroid.mk274 define get-libcompiler-rt-source-files
275 $(if $(findstring $(1),arm),$(call get-libcompiler-rt-arm-source-files),
276 $(if $(findstring $(1),mips),$(call get-libcompiler-rt-mips-source-files),
277 $(if $(findstring $(1),x86),$(call get-libcompiler-rt-x86-source-files),
278 $(if $(findstring $(1),x86_64),$(call get-libcompiler-rt-x86_64-source-files),
279 $(if $(findstring $(1),x32),$(call get-libcompiler-rt-x86-source-files),
280 $(if $(findstring $(1),arm64),$(call get-libcompiler-rt-arm64-source-files),
281 $(if $(findstring $(1),mips64),$(call get-libcompiler-rt-mips64-source-files),
291 define filter-libcompiler-rt-common-source-files
298 define get-libcompiler-rt-arm-common-source-files
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/component/
H A DFileDestroyable.java61 public void addFiles(Collection<File> files) argument
63 _files.addAll(files);
/external/libnfc-nci/halimpl/pn54x/
H A DAndroid.mk16 # function to find all *.cpp files under a directory
17 define all-cpp-files-under
30 LOCAL_SRC_FILES := $(call all-c-files-under, .) $(call all-cpp-files-under, .)
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
H A DPutStreamIntegrationTest.java41 public Response serve(String uri, Method method, Map<String, String> headers, Map<String, String> parms, Map<String, String> files) argument
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
H A DParseResponseWithGson.java37 for (Map.Entry<String, GistFile> entry : gist.files.entrySet()) {
44 Map<String, GistFile> files; field in class:ParseResponseWithGson.Gist
/external/openfst/
H A DAndroid.mk8 define private-function-all-cpp-files-under
22 LOCAL_SRC_FILES := $(call private-function-all-cpp-files-under, src/lib)
/external/toybox/toys/posix/
H A Dpaste.c15 Replace newlines in files.
18 -s process files sequentially instead of in parallel
69 FILE **files; local
72 files = (FILE**)(buf + 1);
73 for (; *args; args++, files++) {
74 if ((*args)[0] == '-' && !(*args)[1]) *files = stdin;
75 else if (!(*files = fopen(*args, "r"))) perror_exit("%s", *args);
/external/vogar/src/vogar/
H A DClasspath.java27 * A list of jar files and directories.
33 public static Classpath of(File... files) { argument
34 return of(Arrays.asList(files));
37 public static Classpath of(Collection<File> files) { argument
39 result.elements.addAll(files);
/external/vogar/src/vogar/commands/
H A DJavac.java77 public List<String> compile(Collection<File> files) { argument
78 return builder.args((Object[]) Strings.objectsToStrings(files)).execute();
81 public List<String> compile(File... files) { argument
82 return compile(Arrays.asList(files));
/external/elfutils/src/tests/
H A Dget-files.c70 Dwarf_Files *files; local
72 if (dwarf_getsrcfiles (die, &files, &nfiles) != 0)
74 printf ("%s: cannot get files\n", argv[cnt]);
81 if (dwarf_getsrcdirs (files, &dirs, &ndirs) != 0)
97 dwarf_filesrc (files, i, NULL, NULL));
/external/guava/guava-tests/test/com/google/common/io/
H A DFileTreeTraverserTest.java43 File[] files = dir.listFiles();
44 if (files == null) {
48 // we aren't creating any files in subdirs
49 for (File file : files) {
90 private void assertDirChildren(File... files) { argument
91 assertEquals(ImmutableSet.copyOf(files),
/external/icu/icu4c/source/test/depstest/
H A Ddependencies.py16 files: Set of "library/filename.o" files mentioned in the dependencies file.
19 A library or group item can have an optional set of "files" (as in the files attribute).
31 # item contents: {"type": "binary"} with optional files & deps
36 files = set() variable
76 global files
77 item_files = item.get("files")
82 if item_files == None: item_files = item["files"] = set()
86 if file_name in files
[all...]
/external/libxml2/
H A DtestRelax.c59 int files = 0; local
123 files = -1;
163 files ++;
168 if (files == 0) {
171 printf("\tParse the HTML files and output the result of the parsing\n");

Completed in 686 milliseconds

12345678