/external/llvm-project/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_bvgraph_test.cpp | 95 if (g.findPath(from, target, path, len) == len) in BasicTest() 198 EXPECT_EQ(g.findPath(f0, target, path, ARRAY_SIZE(path)), 3U); in Test_isReachable() 202 EXPECT_EQ(g.findPath(f1, target, path, ARRAY_SIZE(path)), 2U); in Test_isReachable() 253 EXPECT_EQ(g.findPath(start, target, path, g.size()), i - start + 1); in LongCycle() 283 EXPECT_EQ(0U, g.findPath(1, t7, path, 1)); in ShortestPath() 285 EXPECT_EQ(2U, g.findPath(1, t7, path, 2)); in ShortestPath() 286 EXPECT_EQ(2U, g.findPath(1, t7, path, 3)); in ShortestPath() 287 EXPECT_EQ(2U, g.findPath(1, t7, path, 4)); in ShortestPath() 288 EXPECT_EQ(2U, g.findPath(1, t7, path, 5)); in ShortestPath() 289 EXPECT_EQ(2U, g.findPath(1, t7, path, 6)); in ShortestPath() [all …]
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_bvgraph_test.cc | 96 if (g.findPath(from, target, path, len) == len) in BasicTest() 199 EXPECT_EQ(g.findPath(f0, target, path, ARRAY_SIZE(path)), 3U); in Test_isReachable() 203 EXPECT_EQ(g.findPath(f1, target, path, ARRAY_SIZE(path)), 2U); in Test_isReachable() 254 EXPECT_EQ(g.findPath(start, target, path, g.size()), i - start + 1); in LongCycle() 284 EXPECT_EQ(0U, g.findPath(1, t7, path, 1)); in ShortestPath() 286 EXPECT_EQ(2U, g.findPath(1, t7, path, 2)); in ShortestPath() 287 EXPECT_EQ(2U, g.findPath(1, t7, path, 3)); in ShortestPath() 288 EXPECT_EQ(2U, g.findPath(1, t7, path, 4)); in ShortestPath() 289 EXPECT_EQ(2U, g.findPath(1, t7, path, 5)); in ShortestPath() 290 EXPECT_EQ(2U, g.findPath(1, t7, path, 6)); in ShortestPath() [all …]
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_bvgraph.h | 128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { in findPath() function 138 if (uptr res = findPath(idx, targets, path + 1, path_size - 1)) in findPath() 148 if (findPath(from, targets, path, p) == p) in findShortestPath()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_bvgraph.h | 127 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { in findPath() function 137 if (uptr res = findPath(idx, targets, path + 1, path_size - 1)) in findPath() 147 if (findPath(from, targets, path, p) == p) in findShortestPath()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/node/ |
D | BaseJsonNode.java | 40 public final JsonNode findPath(String fieldName) in findPath() method in BaseJsonNode
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/node/ |
D | TestFindMethods.java | 18 JsonNode n = root.findPath("boogaboo"); in testNonMatching()
|
/external/swiftshader/third_party/subzero/src/ |
D | IceTimerTree.h | 82 TTindex findPath(const PathType &Path);
|
D | IceTimerTree.cpp | 92 TTindex MyIndex = findPath(MyPath); in mergeFrom() 137 TimerStack::TTindex TimerStack::findPath(const PathType &Path) { in findPath() function in Ice::TimerStack
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86CondBrFolding.cpp | 124 bool findPath(MachineBasicBlock *MBB, 137 bool X86CondBrFolding::findPath( in findPath() function in X86CondBrFolding 403 if (!findPath(&MBB, BranchPath)) in optimize()
|
/external/skqp/src/core/ |
D | SkStrike.h | 95 const SkPath* findPath(const SkGlyph&);
|
D | SkStrike.cpp | 160 const SkPath* SkStrike::findPath(const SkGlyph& glyph) { in findPath() function in SkStrike 427 return !glyph.isEmpty() && this->findPath(glyph) != nullptr; in hasPath()
|
D | SkFont.cpp | 367 proc(cache->findPath(cache->getGlyphIDMetrics(glyphs[i])), mx, ctx); in getPaths()
|
D | SkTextBlob.cpp | 958 if (fCache->findPath(glyph)) { in next()
|
D | SkGlyphRunPainter.cpp | 189 const SkPath* path = pathCache->findPath(glyph); in drawForBitmapDevice()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ |
D | JsonNode.java | 998 public abstract JsonNode findPath(String fieldName); in findPath() method in JsonNode
|
/external/skqp/src/pdf/ |
D | SkPDFFont.cpp | 185 return glyph.isEmpty() || cache->findPath(glyph); in has_outline_glyph() 691 const SkPath* path = cache->findPath(glyph); in emit_subset_type3()
|
D | SkPDFDevice.cpp | 1063 bool bitmapOnly = nullptr == cache->findPath(glyph); in needs_new_font()
|