HomeSort by relevance Sort by last modified time
    Searched refs:getPath (Results 1 - 25 of 873) 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());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FileWriterTest.java 42 fos = new FileOutputStream(f.getPath());
48 br = new BufferedReader(new FileReader(f.getPath()));
98 fos = new FileOutputStream(f.getPath());
101 fis = new FileInputStream(f.getPath());
115 fos = new FileOutputStream(f.getPath());
118 bw = new BufferedWriter(new FileWriter(f.getPath()));
121 br = new BufferedReader(new FileReader(f.getPath()));
133 fos = new FileOutputStream(f.getPath());
136 bw = new BufferedWriter(new FileWriter(f.getPath(), true));
139 br = new BufferedReader(new FileReader(f.getPath()));
    [all...]
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());
  /frameworks/base/tools/aapt/
OutputSet.h 37 inline const android::String8& getPath() const {
41 bool operator<(const OutputEntry& o) const { return getPath() < o.mPath; }
42 bool operator==(const OutputEntry& o) const { return getPath() == o.mPath; }
  /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/proguard/src/proguard/
FileWordReader.java 40 "file '" + file.getPath() + "'",
  /frameworks/base/core/java/android/transition/
PathMotion.java 29 * by extending PathMotion and implementing {@link #getPath(float, float, float, float)}.
58 public abstract Path getPath(float startX, float startY, float endX, float endY);
  /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();
  /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...]
  /cts/tests/tests/os/src/android/os/storage/cts/
StorageManagerTest.java 98 mStorageManager.isObbMounted(outFile.getPath()));
101 mStorageManager.getMountedObbPath(outFile.getPath()));
117 mStorageManager.isObbMounted(outFile.getPath()));
120 mStorageManager.getMountedObbPath(outFile.getPath()));
142 final String mountPath1 = checkMountedPath(oo1.getPath());
149 final String mountPath2 = checkMountedPath(oo2.getPath());
193 public String getPath() {
244 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
247 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
255 assertTrue("mountObb call on " + file.getPath() + " should succeed"
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
VMHostTest.java 71 CLog.d("Creating host temp dir %s", localTmpDir.getPath());
74 CLog.e("Missing jar file %s", jarFile.getPath());
78 jarFile.getPath(), localTmpDir.getPath());
83 localTestTmpDir.getPath(), VM_TEST_TEMP_DIR);
88 CLog.d("Cleaning up host temp dir %s", localTmpDir.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() {
  /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()));
  /developers/samples/android/wearable/wear/DelayedConfirmation/Wearable/src/main/java/com/example/android/delayedconfirmation/
WearableMessageListenerService.java 32 if (event.getPath().equals(START_ACTIVITY_PATH)) {
  /development/tools/idegen/src/
IntelliJ.java 42 .append(sourceRoot.getPath())
55 .append(excludedDir.getPath())
80 .append(jar.getPath())
93 String path = file.getPath();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDetailsMarker.h 43 Path getPath(const LayoutPoint& origin) const;
  /external/chromium_org/third_party/icu/source/test/intltest/
csdetest.h 38 virtual const char *getPath(char buffer[2048], const char *filename);

Completed in 1397 milliseconds

1 2 3 4 5 6 7 8 91011>>