HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 51 - 75 of 2724) sorted by null

1 23 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
IdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
22 * Representation of a reference to an item inside a Dalvik file.
47 public void addContents(DexFile file) {
48 TypeIdsSection typeIds = file.getTypeIds();
MemberIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
20 * Member (field or method) refs list section of a {@code .dex} file.
24 * Constructs an instance. The file offset is initially unknown.
28 * @param file {@code non-null;} file that this instance is part of
30 public MemberIdsSection(String name, DexFile file) {
31 super(name, file, 4);
  /dalvik/dx/src/com/android/dx/dex/file/
IdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a reference to an item inside a Dalvik file.
47 public void addContents(DexFile file) {
48 TypeIdsSection typeIds = file.getTypeIds();
  /external/bison/examples/calc++/
calc++-driver.hh 35 std::string file; member in class:calcxx_driver
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
IdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
22 * Representation of a reference to an item inside a Dalvik file.
47 public void addContents(DexFile file) {
48 TypeIdsSection typeIds = file.getTypeIds();
  /external/doclava/src/com/google/doclava/apicheck/
ApiParseException.java 5 * you may not use this file except in compliance with the License.
20 public String file; field in class:ApiParseException
  /external/elfutils/src/tests/
buildid.c 3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
38 error (EXIT_FAILURE, 0, "No input file given");
44 const char *file = argv[i]; local
45 int fd = open (file, O_RDONLY);
47 error (EXIT_FAILURE, errno, "couldn't open file '%s'", file);
52 printf("%s: elf_begin failed: %s\n", file, elf_errmsg (-1));
62 printf ("%s: <no NT_GNU_BUILD_ID note>\n", file);
66 file, elf_errmsg (-1))
    [all...]
debugaltlink.c 3 This file is part of elfutils.
5 This file is free software; you can redistribute it and/or modify
38 error (EXIT_FAILURE, 0, "No input file given");
44 const char *file = argv[i]; local
45 int fd = open (file, O_RDONLY);
47 error (EXIT_FAILURE, errno, "couldn't open file '%s'", file);
52 printf("%s: dwarf_begin failed: %s\n", file, dwarf_errmsg (-1));
64 printf ("%s: <no .gnu_debugaltlink section>\n", file);
68 file, dwarf_errmsg (-1))
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/file/
FileDecoder.java 1 package com.bumptech.glide.load.resource.file;
6 import java.io.File;
9 * A simple {@link com.bumptech.glide.load.ResourceDecoder} that creates resource for a given {@link java.io.File}.
11 public class FileDecoder implements ResourceDecoder<File, File> {
14 public Resource<File> decode(File source, int width, int height) {
  /external/guava/guava-tests/test/com/google/common/io/
FileTreeTraverserTest.java 5 * you may not use this file except in compliance with the License.
23 import java.io.File;
34 private File dir;
43 File[] files = dir.listFiles();
49 for (File file : files) {
50 file.delete();
61 File file = newFile("test"); local
62 assertDirChildren(file);
66 File file = newDir("test"); local
79 File file = new File(dir, name); local
85 File file = new File(dir, name); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
textfile.h 18 * This class implements access to a text data file located in the
24 * Open a file with the given name, in the given encoding, in the
34 * this file's encoding to Unicode. The EOL character(s) are not
60 FileStream* file; member in class:TextFile
  /external/icu/icu4c/source/tools/gentest/
genres32.c 8 * file name: genres32.c
53 char file[512]; local
54 FILE *out;
56 uprv_strcpy(file,path);
57 if(file[strlen(file)-1]!=U_FILE_SEP_CHAR) {
58 uprv_strcat(file,U_FILE_SEP_STRING);
60 uprv_strcat(file,"testtable32.txt");
61 out = fopen(file, "w");
62 /*puts(file);*/
    [all...]
  /external/libmtp/examples/
emptyfolders.c 2 * \file emptyfolders.c
31 // therefore, check every file for this parent_id
33 LIBMTP_file_t *file; local
34 file = files;
35 while (file != NULL) {
36 if(file->parent_id == folderlist->folder_id) { // folder has a child
40 file = file->next;
93 // Get file listing.
files.c 2 * \file files.c
26 static void dump_fileinfo(LIBMTP_file_t *file)
28 printf("File ID: %u\n", file->item_id);
29 if (file->filename != NULL)
30 printf(" Filename: %s\n", file->filename);
33 if (file->filesize == (uint32_t) -1) {
34 printf(" None. (abstract file, size = -1)\n");
37 printf(" File size %llu (0x%016I64X) bytes\n", file->filesize, file->filesize)
105 LIBMTP_file_t *file, *tmp; local
    [all...]
  /external/libvpx/libvpx/
video_writer.c 5 * 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.
19 FILE *file; member in struct:VpxVideoWriterStruct
23 static void write_header(FILE *file, const VpxVideoInfo *info,
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
39 FILE *const file = fopen(filename, "wb") local
    [all...]
  /external/linux-tools-perf/src/tools/perf/scripts/perl/Perf-Trace-Util/
Context.c 2 * This file was generated automatically by ExtUtils::ParseXS version 2.18_02 from the
3 * contents of Context.xs. Do not edit this file, edit Context.xs instead.
122 const char* file = __FILE__; local
128 newXSproto("Perf::Trace::Context::common_pc", XS_Perf__Trace__Context_common_pc, file, "$");
129 newXSproto("Perf::Trace::Context::common_flags", XS_Perf__Trace__Context_common_flags, file, "$");
130 newXSproto("Perf::Trace::Context::common_lock_depth", XS_Perf__Trace__Context_common_lock_depth, file, "$");
  /external/llvm/utils/
clang-parse-diagnostics-file 67 file = file_diags.get('main-file') variable
69 # Ignore diagnostics for 'conftest.c', which is the file autoconf uses
71 if os.path.basename(file) == 'conftest.c':
79 to_report.append((file, selected_diags))
88 for file,selected_diags in to_report:
89 print "*** %s ***" % file
  /external/lzma/C/
7zFile.h 1 /* 7zFile.h -- File IO
21 /* ---------- File ---------- */
28 FILE *file;
43 /* reads max(*size, remain file's size) bytes */
58 CSzFile file; member in struct:__anon15821
67 CSzFile file; member in struct:__anon15822
76 CSzFile file; member in struct:__anon15823
  /external/lzma/CPP/Common/
ListFileUtils.cpp 22 NWindows::NFile::NIO::CInFile file; local
23 if (!file.Open(fileName))
26 if (!file.GetLength(length))
33 if (!file.Read(p, (UInt32)length, processed))
37 file.Close();
  /external/nanopb-c/tests/basic_stream/
decode_stream.c 60 FILE *file = (FILE*)stream->state; local
63 status = (fread(buf, 1, count, file) == count);
65 if (feof(file))
  /external/skia/platform_tools/android/launcher/
skia_launcher.cpp 5 * found in the LICENSE file.
18 FILE* file = fopen(fileName, "r"); local
19 if (file) {
20 fclose(file);
  /external/toybox/toys/other/
lsmod.c 21 FILE * file = xfopen(modfile, "r"); local
25 while (fgets(toybuf, sizeof(toybuf), file)) {
35 fclose(file);
lsusb.c 20 FILE *file; local
28 file = fopen(toybuf, "r");
29 if (file) {
32 while (fgets(toybuf, sizeof(toybuf), file))
39 fclose(file);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
video_writer.c 5 * 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.
19 FILE *file; member in struct:VpxVideoWriterStruct
23 static void write_header(FILE *file, const VpxVideoInfo *info,
31 ivf_write_file_header(file, &cfg, info->codec_fourcc, frame_count);
39 FILE *const file = fopen(filename, "wb") local
    [all...]
  /system/extras/tests/cpueater/
daemonize.c 5 * you may not use this file except in compliance with the License.
36 char *file = 0; local
53 file = *argv;
55 file = *++argv;
71 if (file) {
72 if(open(file, O_WRONLY|mode|O_CREAT, 0666) < 0) {
73 perror(file);

Completed in 190 milliseconds

1 23 4 5 6 7 8 91011>>