Searched refs:pathStack (Results 1 – 5 of 5) sorted by relevance
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
D | IcuDataDumper.java | 127 private Deque<String> pathStack = new ArrayDeque<>(); field in IcuDataDumper.IcuDataParser 155 checkState(pathStack.isEmpty() && inFinalGroup); in parse() 213 pathStack.push(getSegment(match.get(0))); in processLine() 246 if (!pathStack.isEmpty()) { in processLine() 247 pathStack.pop(); in processLine() 248 indices.setCount(pathStack.size(), 0); in processLine() 262 if (pathStack.isEmpty()) { in getPathFromStack() 266 Iterables.addAll(segments, pathStack); in getPathFromStack() 277 int depth = pathStack.size(); in getSegment()
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
D | PathDiagnostic.h | 729 SmallVector<PathPieces *, 3> pathStack; variable 750 if (pathStack.empty()) in getActivePath() 752 return *pathStack.back(); in getActivePath() 763 void pushActivePath(PathPieces *p) { pathStack.push_back(p); } in pushActivePath() 764 void popActivePath() { if (!pathStack.empty()) pathStack.pop_back(); } in popActivePath() 766 bool isWithinCall() const { return !pathStack.empty(); } in isWithinCall() 782 pathStack.clear(); in resetPath()
|
/external/llvm-project/clang/include/clang/Analysis/ |
D | PathDiagnostic.h | 781 SmallVector<PathPieces *, 3> pathStack; variable 805 if (pathStack.empty()) in getActivePath() 807 return *pathStack.back(); in getActivePath() 818 void pushActivePath(PathPieces *p) { pathStack.push_back(p); } in pushActivePath() 819 void popActivePath() { if (!pathStack.empty()) pathStack.pop_back(); } in popActivePath() 821 bool isWithinCall() const { return !pathStack.empty(); } in isWithinCall()
|
/external/skia/tests/ |
D | ClipStackTest.cpp | 1435 SkClipStack pathStack; in test_tiny_query_bounds_assertion_bug() local 1436 pathStack.clipPath(clipPath, SkMatrix::I(), kIntersect_SkClipOp, true); in test_tiny_query_bounds_assertion_bug() 1441 for (const SkClipStack& stack : {rectStack, pathStack}) { in test_tiny_query_bounds_assertion_bug()
|
/external/skqp/tests/ |
D | ClipStackTest.cpp | 1408 SkClipStack pathStack; in test_tiny_query_bounds_assertion_bug() local 1409 pathStack.clipPath(clipPath, SkMatrix::I(), kIntersect_SkClipOp, true); in test_tiny_query_bounds_assertion_bug() 1414 for (const SkClipStack& stack : {rectStack, pathStack}) { in test_tiny_query_bounds_assertion_bug()
|