HomeSort by relevance Sort by last modified time
    Searched defs:file (Results 951 - 975 of 2724) sorted by null

<<31323334353637383940>>

  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.2.1/
lint-api-24.2.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.2.2/
lint-api-24.2.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.2.3/
lint-api-24.2.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.2.4/
lint-api-24.2.4.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.3.0-alpha1/
lint-api-24.3.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.3.0-alpha2/
lint-api-24.3.0-alpha2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/24.3.0-alpha3/
lint-api-24.3.0-alpha3.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/lint/lint-api/24.1.0/
lint-api-24.1.0.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/lint/lint-api/24.2.0/
lint-api-24.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/22.9.2/
lint-api-22.9.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.0.1/
lint-api-23.0.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.0.2/
lint-api-23.0.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-api/23.1.0/
lint-api-23.1.0.jar 
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 5 * you may not use this file except in compliance with the License.
36 import java.io.File;
45 private ArrayList<File> mFilesCreated = new ArrayList<File>(
102 for (File file : mFilesCreated) {
103 file.delete();
372 File dir = getInstrumentation().getTargetContext().getFilesDir();
374 File file = new File(dir, NAMES_TEMP_FILES[idx]) local
390 File file = new File(path); local
    [all...]
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/
UnixFileTest.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
21 import java.io.File;
29 * Please note that this case can only be passed on Linux due to some file
35 private File testFile;
37 private File testDir;
83 private static long getLinuxSpace(int index, File file) throws Exception {
85 String par = file.getAbsolutePath()
403 File file = new File("folder2"); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jmf.jar 
  /frameworks/base/core/java/android/os/
ParcelFileDescriptor.java 5 * you may not use this file except in compliance with the License.
40 import java.io.File;
95 * this file doesn't already exist, then create the file with permissions
104 * a file, such as when it goes through a backup and restore.
111 * this file doesn't already exist, then create the file with permissions
120 * a file, such as when it goes through a backup and restore.
126 * For use with {@link #open}: open the file with read-only access.
131 * For use with {@link #open}: open the file with write-only access
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AppCacheTest.java 5 * you may not use this file except in compliance with the License.
34 import java.io.File;
58 void cleanUpDirectory(File pDir, String dirName) {
59 File testDir = new File(pDir, dirName);
65 File file = new File(testDir, fList[i]); local
66 if(file.isDirectory()) {
69 file.delete()
87 File file = new File(testDir, fList[i]); local
222 File file = new File(con.getCacheDir(), fileName); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
LockSettingsStorage.java 5 * you may not use this file except in compliance with the License.
33 import java.io.File;
278 Slog.e(TAG, "Cannot read file " + e);
284 Slog.e(TAG, "Error closing file " + e);
296 // Write the hash to file
298 // Truncate the file if pattern is null, to clear the lock
306 Slog.e(TAG, "Error writing to file " + e);
312 Slog.e(TAG, "Error closing file " + e);
321 File f = new File(name)
409 File file = new File(name); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
TaskPersister.java 5 * you may not use this file except in compliance with the License.
46 import java.io.File;
68 /** When not flushing delay this long before writing the first file out. This gives the next
86 static File sImagesDir;
87 static File sTasksDir;
121 TaskPersister(File systemDir, ActivityStackSupervisor stackSupervisor,
123 sTasksDir = new File(systemDir, TASKS_DIRNAME);
131 sImagesDir = new File(systemDir, IMAGES_DIRNAME);
302 private String fileToString(File file) {
436 File file = files[fileNdx]; local
581 FileOutputStream file = null; local
    [all...]
  /frameworks/base/test-runner/src/android/test/
TestRunner.java 5 * you may not use this file except in compliance with the License.
24 import java.io.File;
170 File file = new File("/tmp/trace"); local
171 file.mkdir();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PrintWriterTest.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
23 import java.io.File;
142 * java.io.PrintWriter#PrintWriter(java.io.File)
145 File file = File.createTempFile(getClass().getName(), null); local
147 PrintWriter writer = new PrintWriter(file);
150 file.delete()
158 File file = File.createTempFile(getClass().getName(), null); local
172 File file = File.createTempFile(getClass().getName(), null); local
185 File file = File.createTempFile(getClass().getName(), null); local
    [all...]
  /libcore/luni/src/test/java/libcore/io/
OsTest.java 5 * you may not use this file except in compliance with the License.
25 import java.io.File;
46 File f = new File("/dev/null");
57 File f = File.createTempFile("OsTest", "tst");
72 new File(path).delete();
166 FileOutputStream fos = new FileOutputStream(new File("/dev/null"));
195 FileInputStream fis = new FileInputStream(new File("/dev/zero"));
439 File file = File.createTempFile("xattr", "test") local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
SaveImage.java 5 * you may not use this file except in compliance with the License.
46 import java.io.File;
83 private final File mDestinationFile;
127 * @param destination Destinaton File, if this is null, a new file will be
133 File destination, Bitmap previewImage, Callback callback) {
147 public static File getFinalSaveDirectory(Context context, Uri sourceUri) {
148 File saveDirectory = SaveImage.getSaveDirectory(context, sourceUri);
150 saveDirectory = new File(Environment.getExternalStorageDirectory(),
159 public static File getNewFile(Context context, Uri sourceUri)
531 File file = new File(saveDirectory, filename + ".JPG"); local
583 File file = getLocalFileFromUri(context, sourceUri); local
608 final File[] file = new File[1]; local
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/beam/
BeamTransferManager.java 5 * you may not use this file except in compliance with the License.
39 import java.io.File;
60 * milliseconds, we consider a new file transfer from the
77 // In the states below we still accept new file transfer
234 if (DBG) Log.d(TAG, "Could not get mimeType for file.");
238 // Do wait to see if there's another file coming.
270 File file = new File(uri.getPath()); local
271 if (file.exists()) file.delete()
    [all...]

Completed in 207 milliseconds

<<31323334353637383940>>