Home
last modified time | relevance | path

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

/llvm-project/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()
/llvm-project/clang/lib/Format/
H A DWhitespaceManager.cpp259 SmallVector<bool, 16> ScopeStack; in calculateLineBreakInformation() local
270 ScopeStack.push_back(isNestedConditional); in calculateLineBreakInformation()
275 for (unsigned i = Change.Tok->FakeRParens; i > 0 && ScopeStack.size(); --i) in calculateLineBreakInformation()
276 if (ScopeStack.pop_back_val()) in calculateLineBreakInformation()
293 // ScopeStack keeps track of the current scope depth. It contains indices of in AlignTokenSequence()
313 SmallVector<unsigned, 16> ScopeStack; in AlignTokenSequence() local
317 if (ScopeStack.size() != 0 && in AlignTokenSequence()
319 Changes[ScopeStack.back()].indentAndNestingLevel()) { in AlignTokenSequence()
320 ScopeStack.pop_back(); in AlignTokenSequence()
332 ScopeStack in AlignTokenSequence()
[all...]
/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.h256 LVScopeStack ScopeStack; variable
322 ScopeStack.push(ReaderParent); in pushScope()
328 ReaderParent = ScopeStack.top(); in popScope()
329 ScopeStack.pop(); in popScope()
/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVCompare.cpp355 for (const LVScope *Scope : ScopeStack) { in printCurrentStack()
/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp2959 if (!ScopeStack.empty()) in addElement()