HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 126 - 150 of 965) sorted by null

1 2 3 4 56 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoConstants.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
130 * Sets the current file that that line numbers refer to. All subsequent
131 * line number entries make reference to this source file name, instead
137 * file name.
FieldAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
76 public void addContents(DexFile file) {
77 FieldIdsSection fieldIds = file.getFieldIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int fieldIdx = file.getFieldIds().indexOf(field);
FieldIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
28 * Field refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public FieldIdsSection(DexFile file) {
43 super("field_ids", file);
73 * Writes the portion of the file header that refers to this instance.
MethodAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
76 public void addContents(DexFile file) {
77 MethodIdsSection methodIds = file.getMethodIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int methodIdx = file.getMethodIds().indexOf(method);
MethodIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
28 * Method refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public MethodIdsSection(DexFile file) {
43 super("method_ids", file);
73 * Writes the portion of the file header that refers to this instance.
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoConstants.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
130 * Sets the current file that that line numbers refer to. All subsequent
131 * line number entries make reference to this source file name, instead
137 * file name.
FieldAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
76 public void addContents(DexFile file) {
77 FieldIdsSection fieldIds = file.getFieldIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int fieldIdx = file.getFieldIds().indexOf(field);
FieldIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
28 * Field refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public FieldIdsSection(DexFile file) {
43 super("field_ids", file);
73 * Writes the portion of the file header that refers to this instance.
MethodAnnotationStruct.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
76 public void addContents(DexFile file) {
77 MethodIdsSection methodIds = file.getMethodIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) {
86 int methodIdx = file.getMethodIds().indexOf(method);
MethodIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
28 * Method refs list section of a {@code .dex} file.
38 * Constructs an instance. The file offset is initially unknown.
40 * @param file {@code non-null;} file that this instance is part of
42 public MethodIdsSection(DexFile file) {
43 super("method_ids", file);
73 * Writes the portion of the file header that refers to this instance.
StringIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
25 * Representation of a string inside a Dalvik file.
86 public void addContents(DexFile file) {
89 MixedItemSection stringData = file.getStringData();
97 public void writeTo(DexFile file, AnnotatedOutput out) {
  /external/bluetooth/glib/gio/win32/
gwinhttpfileinputstream.c 40 GWinHttpFile *file; member in struct:_GWinHttpFileInputStream
72 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->request);
74 G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpCloseHandle (winhttp_stream->connection);
76 g_object_unref (winhttp_stream->file);
77 winhttp_stream->file = NULL;
101 * @file: the GWinHttpFile being read
108 _g_winhttp_file_input_stream_new (GWinHttpFile *file,
116 stream->file = g_object_ref (file);
136 if (!G_WINHTTP_VFS_GET_CLASS (winhttp_stream->file->vfs)->funcs->pWinHttpSendReques
    [all...]
  /external/chromium/base/
platform_file_win.cc 3 // found in the LICENSE file.
70 HANDLE file = CreateFile(name.value().c_str(), access, sharing, NULL, local
73 if (created && (INVALID_HANDLE_VALUE != file)) {
81 if (file != kInvalidPlatformFileValue)
104 return file;
107 bool ClosePlatformFile(PlatformFile file) {
109 return (CloseHandle(file) != 0);
112 int ReadPlatformFile(PlatformFile file, int64 offset, char* data, int size) {
114 if (file == kInvalidPlatformFileValue)
125 if (::ReadFile(file, data, size, &bytes_read, &overlapped) != 0
    [all...]
  /external/doclava/src/com/google/doclava/
SourcePositionInfo.java 5 * you may not use this file except in compliance with the License.
22 public SourcePositionInfo(String file, int line, int column) {
23 this.file = file;
29 this.file = that.file;
53 return new SourcePositionInfo(that.file, line, 0);
69 return new SourcePositionInfo(that.file, line, 0);
74 return file + ':' + line;
79 int r = this.file.compareTo(that.file)
100 public String file; field in class:SourcePositionInfo
    [all...]
  /external/icu4c/tools/gencfu/
gencfu.cpp 7 * File gencfu.c
17 // Usage: gencfu [options] -r confusables-file.txt -w whole-script-confusables.txt -o output-file.cfu
62 printf("Usage: %s [-v] [-options] -r confusablesRules.txt -w wholeScriptConfusables.txt -o output-file\n", progName);
156 fprintf(stderr, "confusables file, whole script confusables file and output file must all be specified.\n");
169 /* Combine the directory with the file name */
178 // spoof detection data file parsing is dependent on regular expressions.
189 /* write the dummy data file */
305 FILE *file; local
    [all...]
  /external/icu4c/tools/gentest/
gentest.c 8 * file name: gentest.c
16 * This program writes a little data file for testing the udata API.
80 "\tcreate the test file " DATA_NAME "." DATA_TYPE " unless the -r option is given.\n"
84 "\t\t-r or --genres generate resource file testtable32.txt instead of UData test \n"
95 /* printf("Generating the test memory mapped file\n"); */
101 /* Create data file ----------------------------------------------------- */
118 /* write the data to the file */
126 fprintf(stderr, "gentest: error %d writing the output file\n", *errorCode);
139 /* Create Java file ----------------------------------------------------- */
144 char file[512] local
    [all...]
  /external/iproute2/ip/
rtmon.c 31 static void write_stamp(FILE *fp)
51 FILE *fp = (FILE*)arg;
61 fprintf(stderr, "Usage: rtmon file FILE [ all | LISTofOBJECTS]\n");
69 FILE *fp;
76 char *file = NULL; local
105 } else if (matches(argv[1], "file") == 0) {
110 file = argv[1];
131 if (file == NULL)
    [all...]
  /external/iptables/extensions/
libipt_realm.c 36 const char file[] = "/etc/iproute2/rt_realms"; local
37 realms = xtables_lmap_init(file);
39 fprintf(stderr, "Warning: %s: %s\n", file, strerror(errno));
libxt_devgroup.c 39 const char file[] = "/etc/iproute2/group_map"; local
40 devgroups = xtables_lmap_init(file);
42 fprintf(stderr, "Warning: %s: %s\n", file, strerror(errno));
  /external/oprofile/daemon/liblegacy/
opd_mapping.c 2 * @file opd_mapping.c
6 * @remark Read the file COPYING
111 char file[PATH_MAX]; local
112 char * c = &file[PATH_MAX-1];
156 /* possibly deleted file */
  /external/oprofile/libpopt/
poptconfig.c 2 * \file popt/poptconfig.c
6 file accompanying popt source distributions, available from
98 const char * file, * chptr, * end; local
116 file = alloca(fileLength + 1);
117 if (read(fd, (char *)file, fileLength) != fileLength) {
129 chptr = file;
130 end = (file + fileLength);
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 193 static int search(FILE *file,const char *text,struct sockaddr *addr,int length,
200 while (fgets(line,MAX_ATM_NAME_LEN,file)) {
216 FILE *file; local
219 if (!(file = fopen(HOSTS_ATM,"r"))) return TRY_OTHER;
220 result = search(file,text,addr,length,flags);
221 (void) fclose(file);
  /external/proguard/src/proguard/io/
DirectoryWriter.java 36 private final File baseFile;
39 private File currentFile;
48 public DirectoryWriter(File baseFile,
60 // Should we close the current file?
67 File directory = getFile(dataEntry);
87 File file = getFile(dataEntry); local
89 // Should we close the current file?
92 !currentFile.equals(file))
101 File parentDirectory = file.getParentFile()
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
plugin.cc 71 CodeGeneratorResponse::File* file = response_->add_file(); local
72 file->set_name(filename);
73 return new io::StringOutputStream(file->mutable_content());
78 CodeGeneratorResponse::File* file = response_->add_file(); local
79 file->set_name(filename);
80 file->set_insertion_point(insertion_point);
81 return new io::StringOutputStream(file->mutable_content());
108 const FileDescriptor* file = pool.BuildFile(request.proto_file(i)) local
119 const FileDescriptor* file = local
    [all...]
  /external/v8/test/cctest/
cctest.cc 36 CcTest::CcTest(TestFunction* callback, const char* file, const char* name,
40 char *basename = strrchr(const_cast<char *>(file), '/');
42 basename = strrchr(const_cast<char *>(file), '\\');
45 basename = v8::internal::StrDup(file);
65 current->file(), current->name(), current->dependency());
67 printf("%s/%s<\n", current->file(), current->name());
89 char* file = arg_copy; local
94 && strcmp(test->file(), file) == 0
103 // Run all tests with the specified file or test name
    [all...]

Completed in 1252 milliseconds

1 2 3 4 56 7 8 91011>>