Home
last modified time | relevance | path

Searched refs:ScopeStack (Results 1 – 3 of 3) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVCompare.h30 LVScopes ScopeStack; variable
65 void push(LVScope *Scope) { ScopeStack.push_back(Scope); } in push()
66 void pop() { ScopeStack.pop_back(); } in pop()
/openbsd/gnu/llvm/clang/lib/Format/
H A DWhitespaceManager.cpp247 SmallVector<bool, 16> ScopeStack; in calculateLineBreakInformation() local
258 ScopeStack.push_back(isNestedConditional); in calculateLineBreakInformation()
264 if (ScopeStack.pop_back_val()) in calculateLineBreakInformation()
301 SmallVector<unsigned, 16> ScopeStack; in AlignTokenSequence() local
304 if (ScopeStack.size() != 0 && in AlignTokenSequence()
306 Changes[ScopeStack.back()].indentAndNestingLevel()) { in AlignTokenSequence()
307 ScopeStack.pop_back(); in AlignTokenSequence()
319 ScopeStack.push_back(i); in AlignTokenSequence()
322 bool InsideNestedScope = ScopeStack.size() != 0; in AlignTokenSequence()
353 unsigned ScopeStart = ScopeStack.back(); in AlignTokenSequence()
[all …]
/openbsd/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVCompare.cpp355 for (const LVScope *Scope : ScopeStack) { in printCurrentStack()