HomeSort by relevance Sort by last modified time
    Searched defs:toPath (Results 1 - 25 of 227) sorted by null

1 2 3 4 5 6 7 8 910

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
RntoCommandHandler.java 43 String toPath = getRealPath(session, command.getRequiredParameter(0));
47 verifyFileSystemCondition(!getFileSystem().isDirectory(toPath), toPath, "filesystem.isDirectory");
50 String parentPath = getFileSystem().getParent(toPath);
55 getFileSystem().rename(fromPath, toPath);
58 sendReply(session, ReplyCodes.RNTO_OK, "rnto", list(fromPath, toPath));
  /external/skia/src/pathops/
SkOpContour.cpp 12 void SkOpContour::toPath(SkPathWriter* path) const {
  /external/skqp/src/pathops/
SkOpContour.cpp 12 void SkOpContour::toPath(SkPathWriter* path) const {
  /packages/services/Car/tests/common_utils/src/com/android/car/test/utils/
TemporaryFile.java 55 Files.delete(mFile.toPath());
72 public Path getPath() { return mFile.toPath(); }
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 55 public Path toPath() {
Gesture.java 125 public Path toPath() {
126 return toPath(null);
129 public Path toPath(Path path) {
142 public Path toPath(int width, int height, int edge, int numSample) {
143 return toPath(null, width, height, edge, numSample);
146 public Path toPath(Path path, int width, int height, int edge, int numSample) {
153 path.addPath(strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample));
204 Path path = strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample);
234 final Path path = toPath();
GestureStroke.java 160 public Path toPath(float width, float height, int numSample) {
  /packages/services/BuiltInPrintService/src/com/android/bips/discovery/
P2pDiscovery.java 42 Uri path = toPath(device);
51 public static Uri toPath(WifiP2pDevice device) {
  /tools/apksig/src/test/java/com/android/apksig/util/
DataSourceFromRAFChunkTest.java 76 Files.write(tmp.toPath(), fullContents);
DataSourceFromRAFTest.java 72 Files.write(tmp.toPath(), contents);
  /tools/tradefederation/core/src/com/android/tradefed/util/
ZipUtil2.java 43 Files.setPosixFilePermissions(localFile.toPath(),
FileUtil.java 403 Files.createLink(destFile.toPath(), origFile.toPath());
425 Files.createSymbolicLink(destFile.toPath(), origFile.toPath());
628 if (rootDir.isDirectory() && !Files.isSymbolicLink(rootDir.toPath())) {
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureTest.java 77 * Test method for {@link android.gesture.Gesture#toPath()}.
82 mLineHelper.assertLineBoundingBox(mGesture.toPath());
86 * Test method for {@link android.gesture.Gesture#toPath(android.graphics.Path)}.
91 mLineHelper.assertLineBoundingBox(mGesture.toPath(null));
93 Path generatedPath = mGesture.toPath(myPath);
  /external/conscrypt/openjdk/src/main/java/org/conscrypt/
Java7PlatformUtil.java 110 java.nio.file.Files.getPosixFilePermissions(file.toPath());
120 java.nio.file.Files.setPosixFilePermissions(file.toPath(), newPermissions);
  /frameworks/base/test-runner/src/android/test/
RenamingDelegatingContext.java 247 Files.setPosixFilePermissions(mCacheDir.toPath(),
  /system/vold/
MoveStorage.cpp 123 static status_t execCp(const std::string& fromPath, const std::string& toPath, int startProgress,
128 uint64_t startFreeBytes = GetFreeBytes(toPath);
146 cmd.push_back(toPath.c_str());
167 uint64_t deltaFreeBytes = startFreeBytes - GetFreeBytes(toPath);
192 std::string toPath;
207 toPath = to->getInternalPath();
210 if (execRm(toPath, 10, 10, listener) != OK) {
215 if (execCp(fromPath, toPath, 20, 60, listener) != OK) {
240 execRm(toPath, 80, 1, listener);
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zfile/
ApkAlignmentTest.java 43 Files.write(soFile.toPath(), new byte[500]);
140 Files.write(soFile.toPath(), new byte[500]);
  /cts/hostsidetests/security/src/android/cts/security/
FileSystemPermissionTest.java 156 libsepolwrap.toPath(),
157 new File(tmpDir, "libsepolwrap.dylib").toPath()).toFile();
159 Files.move(libcpp.toPath(), new File(tmpDir, "libc++.dylib").toPath());
165 libsepolwrap.toPath(),
166 new File(tmpDir, "libsepolwrap.so").toPath()).toFile();
168 Files.move(libcpp.toPath(), new File(tmpDir, "libc++.so").toPath());
174 searchpolicy.toPath(),
175 new File(tmpDir, "searchpolicy").toPath()).toFile()
    [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowEnvironment.java 105 Path directoryPath = directory.toPath();
116 Path directoryPath = directory.toPath();
212 storageState.put(directory.toPath(), state);
  /frameworks/base/core/tests/coretests/src/android/content/pm/dex/
DexMetadataHelperTest.java 153 Files.createFile(invalidDmFile.toPath());
169 Files.createFile(invalidDmFile.toPath());
  /test/vts/harnesses/tradefed/src/com/android/tradefed/targetprep/
VtsPythonVirtualenvPreparer.java 132 recursiveDelete(mVenvDir.toPath());
  /tools/apksig/src/apksigner/java/com/android/apksigner/
ApkSignerTool.java 343 tmpOutputApk.toPath(), outputApk.toPath(), StandardCopyOption.REPLACE_EXISTING);
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/channels/
AsynchronousFileChannelTest.java 169 AsynchronousFileChannel afc = AsynchronousFileChannel.open(temp.toPath(),
181 AsynchronousFileChannel afc = AsynchronousFileChannel.open(temp.toPath(),
197 AsynchronousFileChannel afc = AsynchronousFileChannel.open(temp.toPath(),
207 afc = AsynchronousFileChannel.open(temp.toPath(),
286 AsynchronousFileChannel afc = AsynchronousFileChannel.open(temp.toPath(),
299 afc = AsynchronousFileChannel.open(temp.toPath(),
367 AsynchronousFileChannel afc = AsynchronousFileChannel.open(temp.toPath(),
377 afc = AsynchronousFileChannel.open(temp.toPath(),
457 AsynchronousFileChannel afc = AsynchronousFileChannel.open(temp.toPath(),
470 afc = AsynchronousFileChannel.open(temp.toPath(),
    [all...]
  /libcore/ojluni/src/main/java/java/io/
File.java 139 * The {@link #toPath toPath} method may be used to obtain a {@link
711 * component of the resulting {@code URI}. The {@link #toPath toPath} method
    [all...]
  /frameworks/layoutlib/bridge/src/android/util/
PathParser_Delegate.java 150 PathParser_Delegate toPath = PathParser_Delegate.getDelegate(toDataPtr);
151 if (fromPath == null || toPath == null || fromPath.getPathDataNodes() == null || toPath
155 return PathParser_Delegate.canMorph(fromPath.getPathDataNodes(), toPath.getPathDataNodes());
    [all...]

Completed in 758 milliseconds

1 2 3 4 5 6 7 8 910