Searched refs:findPath (Results 1 – 9 of 9) sorted by relevance
/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/skia/src/core/ |
D | SkGlyphCache.h | 89 const SkPath* findPath(const SkGlyph&);
|
D | SkGlyphCache.cpp | 335 const SkPath* SkGlyphCache::findPath(const SkGlyph& glyph) { in findPath() function in SkGlyphCache
|
D | SkPaint.cpp | 2374 *path = fCache->findPath(glyph); in next()
|
D | SkDraw.cpp | 1710 const SkPath* path = cache->findPath(glyph); in drawPosText_asPaths()
|
/external/skia/src/gpu/ |
D | GrFontScaler.cpp | 236 const SkPath* skPath = fStrike->findPath(glyph); in getGlyphPath()
|
D | GrTextContext.cpp | 201 const SkPath* path = cache->findPath(glyph); in drawPosTextAsPath()
|
/external/skia/src/pdf/ |
D | SkPDFFont.cpp | 1380 const SkPath* path = cache->findPath(glyph); in populate()
|