Searched defs:file (Results 101 - 125 of 1831) sorted by relevance

1234567891011>>

/external/lldb/tools/debugserver/source/
H A DPThreadMutex.cpp5 // This file is distributed under the University of Illinois Open Source
24 PThreadMutex::Locker::Locker(PThreadMutex& m, const char *function, const char *file, const int line) : argument
27 m_file(file),
34 PThreadMutex::Locker::Locker(PThreadMutex* m, const char *function, const char *file, const int line) : argument
37 m_file(file),
44 PThreadMutex::Locker::Locker(pthread_mutex_t *mutex, const char *function, const char *file, const int line) : argument
47 m_file(file),
/external/llvm/utils/
H A Dclang-parse-diagnostics-file67 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/
H A D7zFile.h28 FILE *file;
43 /* reads max(*size, remain file's size) bytes */
58 CSzFile file; member in struct:__anon26694
67 CSzFile file; member in struct:__anon26695
76 CSzFile file; member in struct:__anon26696
/external/proguard/src/proguard/gui/
H A DExtensionFileFilter.java59 public boolean accept(File file) argument
61 if (file.isDirectory())
66 String fileName = file.getName().toLowerCase();
/external/proguard/src/proguard/io/
H A DDirectoryPump.java27 * This class can read a given file or directory, recursively, applying a given
50 throw new IOException("No such file or directory");
61 private void readFiles(File file, DataEntryReader dataEntryReader) argument
64 // Pass the file data entry to the reader.
65 dataEntryReader.read(new FileDataEntry(directory, file));
67 if (file.isDirectory())
70 File[] files = file.listFiles();
/external/skia/bench/
H A DBenchLogger.cpp5 * found in the LICENSE file.
21 bool BenchLogger::SetLogFile(const char *file) { argument
22 fFileStream = SkNEW_ARGS(SkFILEWStream, (file));
/external/valgrind/main/none/tests/
H A Dmmap_fcntl_bug.c3 * mmap. Feed it a r/w file, such as its own source code. */
19 const char *file = /* argv[1]; */ local
24 if (!file)
25 errx(1, "Usage: %s <normal-file>", argv[0]);
27 fd = open(file, O_RDWR);
29 err(1, "Opening %s", file);
45 err(1, "Locking %s", file);
47 /* If under valgrind, mmap re-opens and closes file, screwing us */
49 err(1, "mmap of %s", file);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DEncodedMember.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
69 * @param file {@code non-null;} the file to populate
71 public abstract void addContents(DexFile file); argument
76 * @param file {@code non-null;} file this instance is part of
84 public abstract int encode(DexFile file, AnnotatedOutput out, argument
H A DFieldAnnotationStruct.java5 * 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) { argument
77 FieldIdsSection fieldIds = file.getFieldIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) { argument
86 int fieldIdx = file.getFieldIds().indexOf(field);
H A DFieldIdsSection.java5 * 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) { argument
43 super("field_ids", file);
73 * Writes the portion of the file header that refers to this instance.
H A DMethodAnnotationStruct.java5 * 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) { argument
77 MethodIdsSection methodIds = file.getMethodIds();
78 MixedItemSection wordData = file.getWordData();
85 public void writeTo(DexFile file, AnnotatedOutput out) { argument
86 int methodIdx = file.getMethodIds().indexOf(method);
H A DMethodIdsSection.java5 * 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) { argument
43 super("method_ids", file);
73 * Writes the portion of the file header that refers to this instance.
H A DParameterAnnotationStruct.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
100 public void addContents(DexFile file) { argument
101 MethodIdsSection methodIds = file.getMethodIds();
102 MixedItemSection wordData = file.getWordData();
109 public void writeTo(DexFile file, AnnotatedOutput out) { argument
110 int methodIdx = file.getMethodIds().indexOf(method);
H A DProtoIdItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
28 * Representation of a method prototype reference inside a Dalvik file.
111 public void addContents(DexFile file) { argument
112 StringIdsSection stringIds = file.getStringIds();
113 TypeIdsSection typeIds = file.getTypeIds();
114 MixedItemSection typeLists = file.getTypeLists();
126 public void writeTo(DexFile file, AnnotatedOutput out) { argument
127 int shortyIdx = file.getStringIds().indexOf(shortForm);
128 int returnIdx = file
[all...]
H A DProtoIdsSection.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
29 * {@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 ProtoIdsSection(DexFile file) { argument
43 super("proto_ids", file, 4);
61 * Writes the portion of the file header that refers to this instance.
H A DStringIdItem.java5 * 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) { argument
89 MixedItemSection stringData = file.getStringData();
97 public void writeTo(DexFile file, AnnotatedOutput out) { argument
H A DStringIdsSection.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
29 * Strings list section of a {@code .dex} file.
40 * Constructs an instance. The file offset is initially unknown.
42 * @param file {@code non-null;} file that this instance is part of
44 public StringIdsSection(DexFile file) { argument
45 super("string_ids", file, 4);
75 * Writes the portion of the file header that refers to this instance.
H A DTypeIdsSection.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
29 * Type identifiers 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 TypeIdsSection(DexFile file) { argument
43 super("type_ids", file, 4);
74 * Writes the portion of the file header that refers to this instance.
H A DTypeListItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
66 public void addContents(DexFile file) { argument
67 TypeIdsSection typeIds = file.getTypeIds();
92 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
93 TypeIdsSection typeIds = file.getTypeIds();
H A DUniformItemSection.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
25 * A section of a {@code .dex} file which consists of a sequence of
31 * Constructs an instance. The file offset is initially unknown.
35 * @param file {@code non-null;} file that this instance is part of
39 public UniformItemSection(String name, DexFile file, int alignment) { argument
40 super(name, file, alignment);
71 DexFile file = getFile();
76 one.addContents(file);
[all...]
H A DAnnotationSetItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
115 public void addContents(DexFile file) { argument
116 MixedItemSection byteData = file.getByteData();
133 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
H A DCatchStructs.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
115 * @param file {@code non-null;} file this instance is part of
117 public void encode(DexFile file) { argument
120 TypeIdsSection typeIds = file.getTypeIds();
190 * @param file {@code non-null;} file this instance is part of
193 public void writeTo(DexFile file, AnnotatedOutput out) { argument
H A DClassDefsSection.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
31 * Class definitions list section of a {@code .dex} file.
44 * Constructs an instance. The file offset is initially unknown.
46 * @param file {@code non-null;} file that this instance is part of
48 public ClassDefsSection(DexFile file) { argument
49 super("class_defs", file, 4);
85 * Writes the portion of the file header that refers to this instance.
H A DDebugInfoItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
64 public void addContents(DexFile file) { argument
94 * @param file {@code non-null;} the file to use for referencing other sections
98 public void annotateTo(DexFile file, AnnotatedOutput out, String prefix) { argument
99 encode(file, prefix, null, out, false);
114 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
122 encode(file, null, null, out, true);
131 * @param file {
140 encode(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
171 encode0(DexFile file, String prefix, PrintWriter debugPrint, AnnotatedOutput out, boolean consume) argument
[all...]
H A DEncodedArrayItem.java5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
34 * {@code null-ok;} encoded form, ready for writing to a file; set during
86 public void addContents(DexFile file) { argument
87 ValueEncoder.addContents(file, array);
105 protected void writeTo0(DexFile file, AnnotatedOutput out) { argument
116 ValueEncoder encoder = new ValueEncoder(file, out);

Completed in 298 milliseconds

1234567891011>>