Home
last modified time | relevance | path

Searched refs:StateStack (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DYAMLTraits.cpp489 auto &E = StateStack[StateStack.size() - 2]; in mapTag()
521 StateStack.pop_back(); in endMapping()
547 StateStack.pop_back(); in postflightKey()
550 StateStack.pop_back(); in postflightKey()
563 StateStack.pop_back(); in endFlowMapping()
599 StateStack.pop_back(); in endSequence()
627 StateStack.pop_back(); in endFlowSequence()
746 unsigned Indent = StateStack.empty() ? 1 : StateStack.size(); in blockScalarString()
779 return !inSeqAnyElement(StateStack[StateStack.size() - 2]); in canElideEmptySequence()
789 if (StateStack.empty() || (!inFlowSeqAnyElement(StateStack.back()) && in outputUpToEndOfLine()
[all …]
/llvm-project-15.0.7/clang/lib/Format/
H A DFormatTokenLexer.h103 std::stack<LexerState> StateStack; variable
H A DFormatTokenLexer.cpp30 : FormatTok(nullptr), IsFirstToken(true), StateStack({LexerState::NORMAL}), in FormatTokenLexer()
1055 StateStack.push(LexerState::TOKEN_STASHED);
1060 StateStack.push(LexerState::TOKEN_STASHED);
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinaryFunction.cpp2341 std::stack<uint32_t> StateStack; in annotateCFIState() local
2355 StateStack.push(EffectiveState); in annotateCFIState()
2359 assert(!StateStack.empty() && "corrupt CFI stack"); in annotateCFIState()
2360 EffectiveState = StateStack.top(); in annotateCFIState()
2361 StateStack.pop(); in annotateCFIState()
2374 assert(StateStack.empty() && "corrupt CFI stack"); in annotateCFIState()