Home
last modified time | relevance | path

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

/freebsd-src/contrib/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()
/freebsd-src/contrib/llvm-project/clang/lib/Format/
H A DWhitespaceManager.cpp259 SmallVector<bool, 16> ScopeStack; in calculateLineBreakInformation()
270 ScopeStack.push_back(isNestedConditional); in calculateLineBreakInformation()
275 for (unsigned i = Change.Tok->FakeRParens; i > 0 && ScopeStack.size(); --i)
276 if (ScopeStack.pop_back_val())
293 // ScopeStack keeps track of the current scope depth. It contains indices of in AlignTokenSequence()
313 SmallVector<unsigned, 16> ScopeStack; in AlignTokenSequence()
317 if (ScopeStack.size() != 0 && in AlignTokenSequence()
319 Changes[ScopeStack.back()].indentAndNestingLevel()) { in AlignTokenSequence()
320 ScopeStack.pop_back(); in AlignTokenSequence()
332 ScopeStack in AlignTokenSequence()
253 SmallVector<bool, 16> ScopeStack; calculateLineBreakInformation() local
307 SmallVector<unsigned, 16> ScopeStack; AlignTokenSequence() local
[all...]
/freebsd-src/contrib/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()
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVCompare.cpp354 for (const LVScope *Scope : ScopeStack) { in printCurrentStack()
/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp2965 if (!ScopeStack.empty()) in addElement()