HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 76 - 100 of 2397) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/
PDB.h 23 Error loadDataForPDB(PDB_ReaderType Type, StringRef Path,
26 Error loadDataForEXE(PDB_ReaderType Type, StringRef Path,
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
PathTests.java 5 import android.graphics.Path;
30 Path path = new Path();
32 paint.getTextPath(text, 0, text.length(), 0, 0, path);
33 path.offset(0, 50);
34 canvas.drawPath(path, paint);
42 final Path path = new Path(); local
49 final Path path = new Path(); local
56 final Path path = new Path(); local
67 final Path path = new Path(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/graphics/
PathOffsetTest.java 21 import android.graphics.Path.Direction;
44 Path actualPath = new Path();
50 Path expectedPath = new Path();
60 Path initialPath = new Path();
62 Path actualPath = new Path();
68 Path expectedPath = new Path()
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
SimpleFileVisitorTest.java 23 import java.nio.file.Path;
32 Path stubPath = mock(Path.class);
34 SimpleFileVisitor<Path> fileVisitor = new TestSimpleFileVisitor();
51 Path stubPath = mock(Path.class);
53 SimpleFileVisitor<Path> fileVisitor = new TestSimpleFileVisitor();
71 Path stubPath = mock(Path.class);
73 SimpleFileVisitor<Path> fileVisitor = new TestSimpleFileVisitor()
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
TriangleShape.java 20 import android.graphics.Path;
26 * that creates a shape with a triangular path (pointing up or down).
29 private Path mTriangularPath;
31 public TriangleShape(Path path, float stdWidth, float stdHeight) {
32 super(path, stdWidth, stdHeight);
33 mTriangularPath = path;
37 Path triangularPath = new Path();
  /frameworks/compile/mclinker/include/mcld/Support/
RealPath.h 11 #include "mcld/Support/Path.h"
23 class RealPath : public Path {
25 typedef Path::ValueType ValueType;
26 typedef Path::StringType StringType;
32 explicit RealPath(const Path& pPath);
36 RealPath& assign(const Path& pPath);
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
TriangleShape.java 20 import android.graphics.Path;
26 * that creates a shape with a triangular path (pointing up or down).
29 private Path mTriangularPath;
31 public TriangleShape(Path path, float stdWidth, float stdHeight) {
32 super(path, stdWidth, stdHeight);
33 mTriangularPath = path;
37 Path triangularPath = new Path();
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
TempDirectory.java 7 import java.nio.file.Path;
12 private final Path basePath;
30 public Path create(String name) {
31 Path path = basePath.resolve(name); local
33 Files.createDirectory(path);
37 return path;
40 public Path createIfNotExists(String name) {
41 Path path = basePath.resolve(name) local
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerIO.cpp 26 bool IsFile(const std::string &Path) {
28 if (stat(Path.c_str(), &St))
33 static long GetEpoch(const std::string &Path) {
35 if (stat(Path.c_str(), &St))
52 std::string Path = DirPlusFile(Dir, E->d_name);
54 V->push_back(Path);
56 ListFilesInDirRecursive(Path, Epoch, V, false);
63 Unit FileToVector(const std::string &Path, size_t MaxSize) {
64 std::ifstream T(Path);
66 Printf("No such directory: %s; exiting\n", Path.c_str())
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
CodeGenerationUtils.java 5 import java.nio.file.Path;
58 * Calculates the path to a file in a package.
64 public static Path fileInPackageAbsolutePath(String root, String pkg, String file) {
69 public static Path fileInPackageAbsolutePath(Path root, String pkg, String file) {
74 * Turns a package and a file into a relative path. "com.laamella" and "Simple.java" will become
77 public static Path fileInPackageRelativePath(String pkg, String file) {
83 * Converts a package name like "com.laamella.parser" to a path like "com/laamella/parser"
90 * Calculates the path of a package.
95 public static Path packageAbsolutePath(String root, String pkg)
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPathTest.java 9 import android.graphics.Path;
21 Path path = Shadow.newInstanceOf(Path.class); local
22 path.quadTo(0, 5, 10, 15);
23 ShadowPath shadowPath = shadowOf(path);
29 Path path = Shadow.newInstanceOf(Path.class); local
30 path.moveTo(2, 3)
41 Path path = Shadow.newInstanceOf(Path.class); local
53 Path path = Shadow.newInstanceOf(Path.class); local
68 Path path = Shadow.newInstanceOf(Path.class); local
    [all...]
  /frameworks/support/core/ktx/src/androidTest/java/androidx/core/graphics/
PathTest.kt 19 import android.graphics.Path
30 val p = Path()
55 val r1 = Path().apply { addRect(0.0f, 0.0f, 10.0f, 10.0f, Path.Direction.CW) }
56 val r2 = Path().apply { addRect(5.0f, 0.0f, 15.0f, 15.0f, Path.Direction.CW) }
67 val r1 = Path().apply { addRect(0.0f, 0.0f, 10.0f, 10.0f, Path.Direction.CW) }
68 val r2 = Path().apply { addRect(5.0f, 0.0f, 15.0f, 15.0f, Path.Direction.CW)
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/
Files.java 96 private static FileSystemProvider provider(Path path) {
97 return path.getFileSystem().provider();
131 * @param path
132 * the path to the file to open
149 public static InputStream newInputStream(Path path, OpenOption... options)
152 return provider(path).newInputStream(path, options);
164 * by the {@link #newByteChannel(Path,Set,FileAttribute[]) newByteChannel
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 24 import android.graphics.Path;
25 import android.graphics.Path.Direction;
38 private Path mPath;
42 mPath = new Path();
51 Path path = new Path(); local
52 mPathMeasure = new PathMeasure(path, true);
55 mPathMeasure = new PathMeasure(path, false);
75 mPath.addRect(1f, 2f, 3f, 4f, Path.Direction.CW)
    [all...]
  /frameworks/compile/mclinker/unittests/
PathTest.cpp 21 m_pTestee = new Path();
47 m_pTestee = new Path(root);
57 m_pTestee = new Path(root);
67 m_pTestee = new Path(root);
78 m_pTestee = new Path(root);
87 Path* p2 = new Path("ccc///////");
92 m_pTestee = new Path(root);
99 Path* p2 = new Path("aaa//")
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
Copy.java 57 static boolean okayToOverwrite(Path file) {
67 static void copyFile(Path source, Path target, boolean prompt, boolean preserve) {
83 static class TreeCopier implements FileVisitor<Path> {
84 private final Path source;
85 private final Path target;
89 TreeCopier(Path source, Path target, boolean prompt, boolean preserve) {
97 public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) {
103 Path newdir = target.resolve(source.relativize(dir))
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
Copy.java 57 static boolean okayToOverwrite(Path file) {
67 static void copyFile(Path source, Path target, boolean prompt, boolean preserve) {
83 static class TreeCopier implements FileVisitor<Path> {
84 private final Path source;
85 private final Path target;
89 TreeCopier(Path source, Path target, boolean prompt, boolean preserve) {
97 public FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) {
103 Path newdir = target.resolve(source.relativize(dir))
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
SearchDirs.h 13 #include "mcld/Support/Path.h"
44 explicit SearchDirs(const sys::fs::Path& pSysRoot);
48 // find - give a namespec, return a real path of the shared object.
49 sys::fs::Path* find(const std::string& pNamespec,
52 const sys::fs::Path* find(const std::string& pNamespec,
55 void setSysRoot(const sys::fs::Path& pSysRoot) { m_SysRoot = pSysRoot; }
56 const sys::fs::Path& sysroot() const { return m_SysRoot; }
69 bool insert(const sys::fs::Path& pDirectory);
73 sys::fs::Path m_SysRoot;
  /external/swiftshader/third_party/LLVM/include/llvm/
Linker.h 22 namespace sys { class Path; }
111 /// This method gets the list of libraries that form the path that the
113 /// @brief Get the Linkers library path
114 const std::vector<sys::Path>& getLibPaths() const { return LibPaths; }
130 /// Add a path to the list of paths that the Linker will search. The Linker
135 /// @brief Add a path.
136 void addPath(const sys::Path& path);
157 /// file name with fully qualified path, or a library for which the Linker's
180 const std::vector<sys::Path> & Files ///< Files to link i
    [all...]
  /packages/services/Car/tests/common_utils/src/com/android/car/test/utils/
TemporaryDirectory.java 25 import java.nio.file.Path;
40 private Path mDirectory;
42 private static final class DeletingVisitor extends SimpleFileVisitor<Path> {
43 FileVisitResult consume(Path path) throws IOException {
44 Files.delete(path);
49 public FileVisitResult visitFile(Path path, BasicFileAttributes basicFileAttributes)
51 return consume(path);
55 public FileVisitResult postVisitDirectory(Path path, IOException e
    [all...]
  /system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/
TestUtils.java 24 import java.nio.file.Path;
39 static String createFile(Path dir, String... lines) throws IOException {
40 Path tempFile = Files.createTempFile(dir, "tmp", null /* suffix */);
45 static void deleteDir(Path tempDir) throws IOException {
46 FileVisitor<? super Path> deleter = new SimpleFileVisitor<Path>() {
48 public FileVisitResult visitFile(Path file, BasicFileAttributes attrs)
54 public FileVisitResult postVisitDirectory(Path dir, IOException exc)
59 private FileVisitResult delete(Path file) throws IOException {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
OsPath.c 2 Functions useful to operate file directories by parsing file path.
37 This function returns the directory path which contains the particular path.
51 FilePath Path name of file to get the parent directory for.
82 // If the path ends with a path separator, then just append ".."
108 IN CHAR8 *Path
114 This function returns the directory path which contains the particular path.
124 Path Path name of file to normalize
    [all...]
  /external/robolectric-shadows/utils/src/test/java/org/robolectric/util/
TempDirectoryTest.java 6 import java.nio.file.Path;
17 Path path = tempDir.create("dir1"); local
18 Path path2 = tempDir.create("dir2");
19 assertThat(path.getParent()).isEqualTo(path2.getParent());
  /external/swiftshader/third_party/LLVM/lib/Support/
ToolOutputFile.cpp 22 sys::RemoveFileOnSignal(sys::Path(Filename));
28 sys::Path(Filename).eraseFromDisk();
33 sys::DontRemoveFileOnSignal(sys::Path(Filename));
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/view/
CircleClipFrameLayout.java 21 import android.graphics.Path;
26 final Path mClipPath = new Path();
48 mClipPath.addOval(0, 0, getWidth(), getHeight(), Path.Direction.CW);

Completed in 1434 milliseconds

1 2 34 5 6 7 8 91011>>