Searched refs:path1 (Results 1 – 8 of 8) sorted by relevance
/frameworks/compile/mclinker/unittests/ |
D | UniqueGCFactoryBaseTest.cpp | 68 sys::fs::Path path1(TOPDIR), path2(TOPDIR); in TEST_F() local 69 path1.append("unittests/test.txt"); in TEST_F() 74 memFactory->produce(path1, FileHandle::OpenMode(FileHandle::ReadOnly), in TEST_F() 82 memFactory->produce(path1, FileHandle::OpenMode(FileHandle::ReadOnly), in TEST_F()
|
/frameworks/compile/slang/ |
D | slang_rs_reflect_utils.cpp | 290 std::string JoinPath(const std::string &path1, const std::string &path2) { in JoinPath() argument 291 if (path1.empty()) { in JoinPath() 295 return path1; in JoinPath() 297 std::string fullPath = path1; in JoinPath()
|
D | slang_rs_reflect_utils.h | 95 std::string JoinPath(const std::string &path1, const std::string &path2);
|
/frameworks/base/tools/aapt2/cmd/ |
D | Compile_test.cpp | 71 const std::string path1 = BuildPath({kResDir, "drawable", "image.png"}); in TEST_F() local 74 ASSERT_EQ(TestCompile(path1, kResDir, /** legacy */ false, diag), 0); in TEST_F() 76 ASSERT_EQ(TestCompile(path1, kResDir, /** legacy */ true, diag), 0); in TEST_F()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/ |
D | parser.h | 224 LocationRecorder(const LocationRecorder& parent, int path1); 225 LocationRecorder(const LocationRecorder& parent, int path1, int path2);
|
D | parser.cc | 349 int path1) { in LocationRecorder() argument 351 AddPath(path1); in LocationRecorder() 355 int path1, int path2) { in LocationRecorder() argument 357 AddPath(path1); in LocationRecorder()
|
/frameworks/base/graphics/java/android/graphics/ |
D | Path.java | 193 public boolean op(@NonNull Path path1, @NonNull Path path2, @NonNull Op op) { in op() argument 194 if (nOp(path1.mNativePath, path2.mNativePath, op.ordinal(), this.mNativePath)) { in op() 862 private static native boolean nOp(long path1, long path2, int op, long result); in nOp() argument
|
/frameworks/base/media/java/android/media/ |
D | MediaScanner.java | 1659 private int matchPaths(String path1, String path2) { 1661 int end1 = path1.length(); 1665 int slash1 = path1.lastIndexOf('/', end1 - 1); 1667 int backSlash1 = path1.lastIndexOf('\\', end1 - 1); 1675 if (path1.regionMatches(true, start1, path2, start2, length)) {
|