HomeSort by relevance Sort by last modified time
    Searched defs:FILENAME (Results 1 - 12 of 12) sorted by null

  /development/testrunner/
android_manifest.py 33 FILENAME = 'AndroidManifest.xml'
64 self._manifest_path = os.path.join(app_path, self.FILENAME)
121 manifest_path = os.path.join(path, AndroidManifest.FILENAME)
android_mk.py 36 FILENAME = "Android.mk"
155 def CreateAndroidMK(path, filename=AndroidMK.FILENAME):
160 filename: the filename of the makefile
165 mk_path = os.path.join(path, filename)
  /sdk/monkeyrunner/test/com/android/monkeyrunner/
MonkeyRunnerOptionsTest.java 28 private static final String FILENAME = "/etc/passwd";
32 MonkeyRunnerOptions.processOptions(new String[] { FILENAME });
33 assertEquals(options.getScriptFile(), new File(FILENAME));
38 MonkeyRunnerOptions.processOptions(new String[] { "-be", "stub", FILENAME});
40 assertEquals(options.getScriptFile(), new File(FILENAME));
45 MonkeyRunnerOptions.processOptions(new String[] { FILENAME, "arg1", "arg2" });
46 assertEquals(options.getScriptFile(), new File(FILENAME));
54 MonkeyRunnerOptions.processOptions(new String[] { FILENAME, "--arg1" });
55 assertEquals(options.getScriptFile(), new File(FILENAME));
61 MonkeyRunnerOptions.processOptions(new String[] { "-be", "stub", FILENAME,
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectOutputStreamPutFieldTest.java 65 private final String FILENAME =
80 refContent = getRefContent(FILENAME);
OldObjectInputStreamGetFieldTest.java 59 private final String FILENAME =
70 initOis(FILENAME);
98 initOis(FILENAME);
122 initOis(FILENAME);
238 initOis(FILENAME);
244 private void initOis(String fileName) throws Exception {
249 getClass().getResourceAsStream(fileName));
  /frameworks/base/core/tests/hosttests/src/android/content/pm/
PackageManagerStressHostTests.java 55 FILENAME,
121 * Get the absolute file system location of repository test app with given filename
122 * @param fileName the file name of the test app apk
125 private String getRepositoryTestAppFilePath(String fileDirectory, String fileName) {
127 File.separator, fileName);
131 * Get the absolute file system location of test app with given filename
132 * @param fileName the file name of the test app apk
135 public String getTestAppFilePath(String fileName) {
136 return String.format("%s%s%s", getTestAppPath(), File.separator, fileName);
225 String apkName = LARGE_APPS[i][APK.FILENAME.ordinal()]
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
FileCache.java 46 FileEntry.Columns.ID, FileEntry.Columns.FILENAME,
101 entry.filename = file.getName();
112 entry.filename = original.filename;
141 file.id, downloadUrl, new File(mRootDir, file.filename));
148 Log.w(TAG, "cannot delete entry: " + file.filename, t);
247 public static final String FILENAME = "filename";
258 @Column(Columns.FILENAME)
259 public String filename; field in class:FileCache.FileEntry
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassTest.java 48 public static final String FILENAME = ClassTest.class.getPackage().getName().replace('.', '/')+"/test#.properties";
583 InputStream in = getClass().getResourceAsStream("/"+FILENAME);
587 in = getClass().getResourceAsStream(FILENAME);
591 FILENAME);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Utils.java 427 private static final String FILENAME = "log.txt";
461 mWriter = getPrintWriter(mDirectory, FILENAME, false);
562 File dir, String filename, boolean renew) throws IOException {
563 mFile = new File(dir, filename);
  /frameworks/base/core/java/android/provider/
Telephony.java     [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 44 public static final String FILENAME =
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
EmailContent.java     [all...]

Completed in 393 milliseconds