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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/emacs/
flymake-chromium.el 3 ;; found in the LICENSE file.
9 ;; the build.ninja file(s). See defcustoms below for settable knobs.
14 (defcustom cr-flymake-ninja-build-file "out/Debug/build.ninja"
16 build.ninja file to use.")
24 (when buffer-file-truename
25 (expand-file-name buffer-file-truename)))
29 (let ((srcdir (locate-dominating-file
30 (cr-flymake-absbufferpath) cr-flymake-ninja-build-file)))
31 (when srcdir (expand-file-name srcdir)))
    [all...]
  /external/junit/src/org/junit/experimental/max/
MaxHistory.java 3 import java.io.File;
30 * Loads a {@link MaxHistory} from {@code file}, or generates a new one that
31 * will be saved to {@code file}.
33 public static MaxHistory forFolder(File file) {
34 if (file.exists())
36 return readHistory(file);
39 file.delete();
41 return new MaxHistory(file);
44 private static MaxHistory readHistory(File storedResults
47 FileInputStream file= new FileInputStream(storedResults); local
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentProviderTest.java 5 * use this file except in compliance with the License. You may obtain a copy of
32 import java.io.File;
191 // create a temporary File
193 File file = mContext.getFileStreamPath(TEST_FILE_NAME); local
194 assertTrue(file.exists());
196 ContentProvider cp = new OpenFileContentProvider(file.getAbsolutePath(), TEST_DB_NAME);
208 // delete the temporary file
209 file.delete();
ImageCaptureActivity.java 5 * you may not use this file except in compliance with the License.
27 import java.io.File;
55 // Note: since this activity is in the same package as the test we can write to the file
61 File file = getFileFromIntent(intent); local
62 if (file == null) {
63 Log.e(TAG, "Could not get file from clipdata.");
67 FileWriter writer = new FileWriter(file);
72 Log.e(TAG, "File IO failure while writing.");
79 private File getFileFromIntent(Intent intent)
    [all...]
  /build/core/
dex_preopt.mk 38 $$(call copy-file-to-target)
57 # Define dexpreopt-one-file based on current default runtime.
58 # $(1): the input .jar or .apk file
59 # $(2): the output .odex file
61 define dexpreopt-one-file
62 $(call dexopt-one-file,$(1),$(2))
68 define dexpreopt-one-file
69 $(call dex2oat-one-file,$(1),$(2))
dex_preopt_libdvm.mk 27 # $(1): the input .jar or .apk file
28 # $(2): the output .odex file
29 define dexopt-one-file
54 $$(call dexopt-one-file,$$(PRIVATE_DBJ_JAR),$$@)
  /build/core/tasks/
sdk-addon.mk 4 # you may not use this file except in compliance with the License.
31 define stub-addon-jar-file
36 $(call stub-addon-jar-file,$(1)): $(1) | mkstubs
47 $(eval _src := $(call stub-addon-jar-file,$(_src))) \
78 $(eval $(call copy-one-file,$(_src),$(_dest))) \
133 # When not building an sdk_repo, just dist the addon zip file
  /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;
74 File file = FileUtil.getFileForPath(mCtsBuild.getTestCasesDir(), apkName); local
76 String errorMessage = getDevice().installPackage(file, true, options);
  /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;
116 public void addContents(DexFile file) {
117 MixedItemSection byteData = file.getByteData();
134 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;
30 * Class definitions list section of a {@code .dex} file.
43 * Constructs an instance. The file offset is initially unknown.
45 * @param file {@code non-null;} file that this instance is part of
47 public ClassDefsSection(DexFile file) {
48 super("class_defs", file, 4);
84 * 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;
30 * Member (field or method) refs list section of a {@code .dex} file.
35 * Constructs an instance. The file offset is initially unknown.
39 * @param file {@code non-null;} file that this instance is part of
41 public MemberIdsSection(String name, DexFile file) {
42 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;
28 * {@code .dex} file.
37 * Constructs an instance. The file offset is initially unknown.
39 * @param file {@code non-null;} file that this instance is part of
41 public ProtoIdsSection(DexFile file) {
42 super("proto_ids", file, 4);
60 * 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) {

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 91011>>