HomeSort by relevance Sort by last modified time
    Searched refs:getPath (Results 1 - 25 of 2151) 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();
  /cts/tests/tests/transition/src/android/transition/cts/
ArcMotionTest.java 37 Path path = arcMotion.getPath(0, 100, 100, 0);
41 path = arcMotion.getPath(100, 0, 0, -100);
45 path = arcMotion.getPath(0, -100, -100, 0);
49 path = arcMotion.getPath(-100, 0, 0, 100);
62 path = arcMotion.getPath(0, 120, 160, 0);
66 path = arcMotion.getPath(0, 160, 120, 0);
70 path = arcMotion.getPath(-120, 0, 0, 160);
74 path = arcMotion.getPath(-160, 0, 0, 120);
78 path = arcMotion.getPath(0, -120, -160, 0);
82 path = arcMotion.getPath(0, -160, -120, 0)
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/
Paths.java 51 * "{@code /}" and {@code getPath("/foo","bar","gus")} is invoked, then the
57 * <p> The {@code Path} is obtained by invoking the {@link FileSystem#getPath
58 * getPath} method of the {@link FileSystems#getDefault default} {@link
81 * @see FileSystem#getPath
84 return FileSystems.getDefault().getPath(first, more);
94 * FileSystemProvider#getPath getPath} method is invoked to convert the
138 return FileSystems.getDefault().provider().getPath(uri);
143 return provider.getPath(uri);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/properties/
XMPPropertyInfo.java 32 String getPath();
  /frameworks/support/transition/src/androidTest/java/androidx/transition/
ArcMotionTest.java 38 Path path = arcMotion.getPath(0, 100, 100, 0);
42 path = arcMotion.getPath(100, 0, 0, -100);
46 path = arcMotion.getPath(0, -100, -100, 0);
50 path = arcMotion.getPath(-100, 0, 0, 100);
63 path = arcMotion.getPath(0, 120, 160, 0);
67 path = arcMotion.getPath(0, 160, 120, 0);
71 path = arcMotion.getPath(-120, 0, 0, 160);
75 path = arcMotion.getPath(-160, 0, 0, 120);
79 path = arcMotion.getPath(0, -120, -160, 0);
83 path = arcMotion.getPath(0, -160, -120, 0)
    [all...]
  /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...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MountServiceTests.java 66 public String getPath() {
117 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
120 FileUtils.setPermissions(outFile.getPath(), FileUtils.S_IRWXU | FileUtils.S_IRWXG
133 assertTrue("mountObb call on " + file.getPath() + " should succeed",
134 sm.mountObb(file.getPath(), null, observer));
140 assertTrue("OBB should be mounted", sm.isObbMounted(file.getPath()));
144 file.getPath(), observer.getPath());
154 assertTrue("mountObb call on " + file.getPath() + " should succeed", sm.mountObb(file
155 .getPath(), null, observer))
    [all...]
  /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/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/
AbstractTest.java 27 File underJavaParserCore = new File("javaparser-symbol-solver-testing/" + path.getPath());
37 return adaptPath(new File(path)).getPath();
  /hardware/libhardware/modules/input/evdev/
InputDeviceManager.cpp 31 ALOGE("got input event for unknown node %s", node->getPath().c_str());
43 ALOGE("could not remove unknown node %s", node->getPath().c_str());
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
LastMileLoggerTest.java 62 mLastMileLogger = new LastMileLogger(mWifiInjector, mTraceDataFile.getPath(),
63 mTraceEnableFile.getPath(), mTraceReleaseFile.getPath());
68 new LastMileLogger(mWifiInjector, mTraceDataFile.getPath(), mTraceEnableFile.getPath(),
69 mTraceReleaseFile.getPath());
77 assertEquals("1", IoUtils.readFileAsString(mTraceEnableFile.getPath()));
94 assertEquals("0", IoUtils.readFileAsString(mTraceEnableFile.getPath()));
121 assertEquals("0", IoUtils.readFileAsString(mTraceEnableFile.getPath()));
143 assertEquals("0", IoUtils.readFileAsString(mTraceEnableFile.getPath()));
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 111 String getPath();
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicPathHandler.java 66 "Illegal path attribute \"" + cookie.getPath()
67 + "\". Path of origin: \"" + origin.getPath() + "\"");
78 String targetpath = origin.getPath();
79 String topmostPath = cookie.getPath();
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileSystemEntry.java 41 public String getPath();
  /external/proguard/src/proguard/
FileWordReader.java 40 "file '" + file.getPath() + "'",
  /external/vogar/src/vogar/commands/
Mkdir.java 33 new Command(log, "mkdir", "-p", directory.getPath()).execute();
Rm.java 33 new Command(log, "rm", "-rf", file.getPath()).execute();
  /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);
  /frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/
BaseTest.java 26 System.setProperty("dexmaker.dexcache", mContext.getCacheDir().getPath());
  /frameworks/support/transition/src/main/java/androidx/transition/
PathMotion.java 30 * by extending PathMotion and implementing {@link #getPath(float, float, float, float)}.
61 public abstract Path getPath(float startX, float startY, float endX, float endY);
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractPath.java 43 return startsWith(getFileSystem().getPath(other));
48 return endsWith(getFileSystem().getPath(other));
53 return resolve(getFileSystem().getPath(other));
66 return resolveSibling(getFileSystem().getPath(other));
  /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();

Completed in 705 milliseconds

1 2 3 4 5 6 7 8 91011>>