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

1 2 3 4 5 6 78 91011>>

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
EncodedArrayItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
43 * {@code null-ok;} encoded form, ready for writing to a file; set during
95 public void addContents(DexFile file) {
96 ValueEncoder.addContents(file, array);
114 protected void writeTo0(DexFile file, AnnotatedOutput out) {
125 ValueEncoder encoder = new ValueEncoder(file, out);
MemberIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
26 * Dalvik file.
29 /** size of instances when written out to a file, in bytes */
54 public void addContents(DexFile file) {
55 super.addContents(file);
57 StringIdsSection stringIds = file.getStringIds();
63 public final void writeTo(DexFile file, AnnotatedOutput out) {
64 TypeIdsSection typeIds = file.getTypeIds();
65 StringIdsSection stringIds = file.getStringIds()
    [all...]
ProtoIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.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) {
43 super("proto_ids", file, 4);
61 * Writes the portion of the file header that refers to this instance.
StringDataItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
26 * Representation of string data for a particular string, in a Dalvik file.
65 public void addContents(DexFile file) {
71 public void writeTo0(DexFile file, AnnotatedOutput out) {
StringIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
24 * Representation of a string inside a Dalvik file.
28 /** size of instances when written out to a file, in bytes */
88 public void addContents(DexFile file) {
91 MixedItemSection stringData = file.getStringData();
99 public void writeTo(DexFile file, AnnotatedOutput out) {
TypeIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.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) {
43 super("type_ids", file, 4);
74 * Writes the portion of the file header that refers to this instance.
UniformListItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.dex.file;
121 public void addContents(DexFile file) {
123 i.addContents(file);
189 protected void writeTo0(DexFile file, AnnotatedOutput out) {
200 i.writeTo(file, out);
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetItem.java 5 * 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) {
116 MixedItemSection byteData = file.getByteData();
133 protected void writeTo0(DexFile file, AnnotatedOutput out) {
ClassDefsSection.java 5 * 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) {
49 super("class_defs", file, 4);
85 * Writes the portion of the file header that refers to this instance.
EncodedArrayItem.java 5 * 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) {
87 ValueEncoder.addContents(file, array);
105 protected void writeTo0(DexFile file, AnnotatedOutput out) {
116 ValueEncoder encoder = new ValueEncoder(file, out);
MemberIdItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
27 * Dalvik file.
52 public void addContents(DexFile file) {
53 super.addContents(file);
55 StringIdsSection stringIds = file.getStringIds();
61 public final void writeTo(DexFile file, AnnotatedOutput out) {
62 TypeIdsSection typeIds = file.getTypeIds();
63 StringIdsSection stringIds = file.getStringIds();
67 int typoidIdx = getTypoidIdx(file);
    [all...]
ProtoIdItem.java 5 * 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) {
112 StringIdsSection stringIds = file.getStringIds();
113 TypeIdsSection typeIds = file.getTypeIds();
114 MixedItemSection typeLists = file.getTypeLists();
126 public void writeTo(DexFile file, AnnotatedOutput out) {
127 int shortyIdx = file.getStringIds().indexOf(shortForm);
128 int returnIdx = file.getTypeIds().indexOf(prototype.getReturnType())
    [all...]
ProtoIdsSection.java 5 * 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) {
43 super("proto_ids", file, 4);
61 * Writes the portion of the file header that refers to this instance.
StringDataItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Representation of string data for a particular string, in a Dalvik file.
65 public void addContents(DexFile file) {
71 public void writeTo0(DexFile file, AnnotatedOutput out) {
StringIdsSection.java 5 * 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) {
45 super("string_ids", file, 4);
75 * Writes the portion of the file header that refers to this instance.
TypeIdsSection.java 5 * 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) {
43 super("type_ids", file, 4);
74 * Writes the portion of the file header that refers to this instance.
UniformListItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
121 public void addContents(DexFile file) {
123 i.addContents(file);
189 protected void writeTo0(DexFile file, AnnotatedOutput out) {
200 i.writeTo(file, out);
  /development/samples/BrowserPlugin/jni/audio/
AudioPlugin.h 35 FILE* file; member in struct:SoundPlay
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
SecureClassLoader2Test.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
20 import java.io.File;
63 File file = Support_GetLocal.getLocalFile("hyts_security.jar"); local
64 JarFile jar = new JarFile(file);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_GetLocal.java 3 * contributor license agreements. See the NOTICE file distributed with
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
22 import java.io.File;
35 static Hashtable<String, File> cache = new Hashtable<String, File>(20);
37 public static File getLocalFile(String url) throws IOException,
40 File temp = cache.get(url);
43 temp = File.createTempFile("hyts_local", ".tmp", null);
58 public static File getExternalLocalFile(String url) throws IOException
96 File file = getLocalFile("hyts_att.jar"); local
    [all...]
  /external/apache-http/src/org/apache/http/entity/
FileEntity.java 8 * or more contributor license agreements. See the NOTICE file
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
34 import java.io.File;
41 * An entity whose content is retrieved from a file.
51 protected final File file; field in class:FileEntity
53 public FileEntity(final File file, final String contentType) {
55 if (file == null)
    [all...]
  /external/bluetooth/bluez/src/
plugin.c 127 const gchar *file; local
171 while ((file = g_dir_read_name(dir)) != NULL) {
176 if (g_str_has_prefix(file, "lib") == TRUE ||
177 g_str_has_suffix(file, ".so") == FALSE)
180 filename = g_build_filename(PLUGINDIR, file, NULL);
  /external/bluetooth/glib/gio/
glocalfileinputstream.c 81 GLocalFileInputStream *file; local
83 file = G_LOCAL_FILE_INPUT_STREAM (object);
118 * @fd: File Descriptor.
120 * Returns: #GFileInputStream for the given file descriptor.
140 GLocalFileInputStream *file; local
143 file = G_LOCAL_FILE_INPUT_STREAM (stream);
150 res = read (file->priv->fd, buffer, count);
160 _("Error reading from file: %s"),
177 GLocalFileInputStream *file; local
179 file = G_LOCAL_FILE_INPUT_STREAM (stream)
216 GLocalFileInputStream *file; local
246 GLocalFileInputStream *file; local
262 GLocalFileInputStream *file; local
299 GLocalFileInputStream *file; local
326 GLocalFileInputStream *file; local
    [all...]
gpollfilemonitor.c 39 GFile *file; member in struct:_GPollFileMonitor
56 g_object_unref (poll_monitor->file);
125 info = g_file_query_info_finish (poll_monitor->file, res, NULL);
134 poll_monitor->file,
139 poll_monitor->file,
168 g_file_query_info_async (poll_monitor->file, G_FILE_ATTRIBUTE_ETAG_VALUE "," G_FILE_ATTRIBUTE_STANDARD_SIZE,
188 info = g_file_query_info_finish (poll_monitor->file, res, NULL);
200 * @file: a #GFile.
202 * Polls @file for changes.
207 _g_poll_file_monitor_new (GFile *file)
    [all...]
  /external/bluetooth/glib/gio/tests/
desktop-app-info.c 227 GFile *base, *file; local
230 file = g_file_get_child (base, "applications");
231 cleanup_dir_recurse (file, file);
232 g_object_unref (file);
233 file = g_file_get_child (base, "mime");
234 cleanup_dir_recurse (file, file);
235 g_object_unref (file);

Completed in 515 milliseconds

1 2 3 4 5 6 78 91011>>