HomeSort by relevance Sort by last modified time
    Searched refs:getPath (Results 1 - 25 of 653) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/libs/vogar-expect/src/vogar/commands/
Rm.java 27 new Command("rm", "-f", file.getPath()).execute();
31 new Command("rm", "-rf", directory.getPath()).execute();
Mkdir.java 27 new Command("mkdir", "-p", directory.getPath()).execute();
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
XMPPropertyInfo.java 32 String getPath();
  /frameworks/base/core/tests/coretests/src/android/net/
WebAddressTest.java 30 assertEquals("/b/c/g", webAddress.getPath());
38 assertEquals("/?si=1", webAddress.getPath());
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/bytecode/
TestFieldGetter.class.data 
  /frameworks/base/core/java/com/android/internal/content/
NativeLibraryHelper.java 45 return nativeSumNativeBinaries(apkFile.getPath(), cpuAbi, cpuAbi2);
62 return nativeCopyNativeBinaries(apkFile.getPath(), sharedLibraryDir.getPath(), cpuAbi,
75 Slog.w(TAG, "Deleting native binaries from: " + nativeLibraryDir.getPath());
94 Slog.w(TAG, "Could not delete native binary: " + binaries[nn].getPath());
  /cts/tests/tests/os/src/android/os/storage/cts/
StorageManagerTest.java 72 mStorageManager.isObbMounted(outFile.getPath()));
75 mStorageManager.getMountedObbPath(outFile.getPath()));
85 mStorageManager.isObbMounted(outFile.getPath()));
88 mStorageManager.getMountedObbPath(outFile.getPath()));
103 final String mountPath1 = checkMountedPath(oo1.getPath());
107 final String mountPath2 = checkMountedPath(oo2.getPath());
138 public String getPath() {
183 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
186 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
194 assertTrue("mountObb call on " + file.getPath() + " should succeed"
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 106 String getPath();
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicPathHandler.java 60 "Illegal path attribute \"" + cookie.getPath()
61 + "\". Path of origin: \"" + origin.getPath() + "\"");
72 String targetpath = origin.getPath();
73 String topmostPath = cookie.getPath();
  /external/skia/include/gpu/
GrClipIterator.h 43 virtual const GrPath* getPath() = 0;
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILAnimateMotionElement.java 27 public String getPath();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileInfo.java 30 public String getPath() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
IGLPropertyAccessor.java 30 String getPath();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileReaderTest.java 43 bw = new BufferedWriter(new FileWriter(f.getPath()));
58 bw = new BufferedWriter(new FileWriter(f.getPath()));
61 FileInputStream fis = new FileInputStream(f.getPath());
75 bw = new BufferedWriter(new FileWriter(f.getPath()));
78 br = new FileReader(f.getPath());
FileWriterTest.java 49 fos = new FileOutputStream(f.getPath());
55 br = new BufferedReader(new FileReader(f.getPath()));
105 fos = new FileOutputStream(f.getPath());
108 fis = new FileInputStream(f.getPath());
122 fos = new FileOutputStream(f.getPath());
125 bw = new BufferedWriter(new FileWriter(f.getPath()));
128 br = new BufferedReader(new FileReader(f.getPath()));
140 fos = new FileOutputStream(f.getPath());
143 bw = new BufferedWriter(new FileWriter(f.getPath(), true));
146 br = new BufferedReader(new FileReader(f.getPath()));
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseErrorHandlerTest.java 46 mDatabase = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null,
68 BufferedWriter writer = new BufferedWriter(new FileWriter(mDatabaseFile.getPath()));
94 SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(mDatabaseFile.getPath(), null,
116 mDatabaseFile.getPath());
120 mDatabaseFile.getPath());
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MountServiceTests.java 78 public String getPath() {
129 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
132 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
145 assertTrue("mountObb call on " + file.getPath() + " should succeed",
146 sm.mountObb(file.getPath(), null, observer));
152 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
156 file.getPath(), observer.getPath());
166 assertTrue("mountObb call on " + file.getPath() + " should succeed", sm.mountObb(file
167 .getPath(), null, observer))
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MediaSetTest.java 55 assertEquals("/mock/00", combo.getSubMediaSet(0).getPath().toString());
56 assertEquals("/mock/01", combo.getSubMediaSet(1).getPath().toString());
57 assertEquals("/mock/10", combo.getSubMediaSet(2).getPath().toString());
58 assertEquals("/mock/11", combo.getSubMediaSet(3).getPath().toString());
59 assertEquals("/mock/12", combo.getSubMediaSet(4).getPath().toString());
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
VMHostTest.java 70 CLog.d("Creating host temp dir %s", localTmpDir.getPath());
73 CLog.e("Missing jar file %s", jarFile.getPath());
77 jarFile.getPath(), localTmpDir.getPath());
82 localTestTmpDir.getPath(), VM_TEST_TEMP_DIR);
87 CLog.d("Cleaning up host temp dir %s", localTmpDir.getPath());
  /cts/tests/tests/os/src/android/os/cts/
StatFsTest.java 27 StatFs stat = new StatFs(path.getPath());
39 stat.restat(path.getPath());
  /external/proguard/src/proguard/io/
FileDataEntry.java 54 file.getPath()
55 .substring(directory.getPath().length() + File.separator.length())
  /frameworks/base/media/java/android/mtp/
MtpStorage.java 40 mPath = volume.getPath();
73 public final String getPath() {
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/
MainTest.java 165 getProjectDir(null, "res/layout/accessibility.xml").getPath()
230 new File(project, "libs/classes.jar").getPath(),
233 project.getPath(),
234 project.getPath()
271 new File(project, "bin/classes.jar").getPath(),
274 project.getPath()
296 new File(project, "bin/classes.jar").getPath(),
299 project.getPath()
  /cts/tests/tests/speech/src/android/speech/tts/cts/
TextToSpeechServiceTest.java 59 int result = getTts().synthesizeToFile(UTTERANCE, createParams(), sampleFile.getPath());
65 TextToSpeechWrapper.isSoundFile(sampleFile.getPath()));
80 assertFalse(TextToSpeechWrapper.isSoundFile(sampleFile.getPath()));
84 assertFalse(TextToSpeechWrapper.isSoundFile(sampleFile.getPath()));
  /development/tools/idegen/src/
IntelliJ.java 42 .append(sourceRoot.getPath())
55 .append(excludedDir.getPath())
80 .append(jar.getPath())
93 String path = file.getPath();

Completed in 1113 milliseconds

1 2 3 4 5 6 7 8 91011>>