HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 226 - 250 of 1259) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
AccessibilityServiceTestRunner.java 5 * you may not use this file except in compliance with the License.
27 import java.io.File;
75 File file = FileUtil.getFileForPath(mCtsBuild.getTestCasesDir(), apkName); local
76 String errorMessage = getDevice().installPackage(file, true);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetItem.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dexgen.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.dexgen.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.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...]
MemberIdsSection.java 5 * you may not use this file except in compliance with the License.
17 package com.android.dx.dex.file;
26 * Member (field or method) refs list section of a {@code .dex} file.
33 * Constructs an instance. The file offset is initially unknown.
37 * @param file {@code non-null;} file that this instance is part of
39 public MemberIdsSection(String name, DexFile file) {
40 super(name, file, 4);
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/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Message.java 54 public String file; field in class:Message
108 if (file != null) {
109 locationST.add("file", file);
  /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...]

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 91011>>