Home
last modified time | relevance | path

Searched refs:Tentative (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp858 LambdaIntroducerTentativeParse Tentative; in TryParseLambdaExpression() local
859 if (ParseLambdaIntroducer(Intro, &Tentative)) { in TryParseLambdaExpression()
864 switch (Tentative) { in TryParseLambdaExpression()
899 LambdaIntroducerTentativeParse *Tentative) { in ParseLambdaIntroducer() argument
900 if (Tentative) in ParseLambdaIntroducer()
901 *Tentative = LambdaIntroducerTentativeParse::Success; in ParseLambdaIntroducer()
914 if (Tentative) { in ParseLambdaIntroducer()
915 *Tentative = LambdaIntroducerTentativeParse::Invalid; in ParseLambdaIntroducer()
925 if (Tentative) in ParseLambdaIntroducer()
926 *Tentative = LambdaIntroducerTentativeParse::Incomplete; in ParseLambdaIntroducer()
[all …]
H A DParseTentative.cpp787 LambdaIntroducerTentativeParse Tentative; in isCXX11AttributeSpecifier() local
788 if (ParseLambdaIntroducer(Intro, &Tentative)) { in isCXX11AttributeSpecifier()
795 switch (Tentative) { in isCXX11AttributeSpecifier()
H A DParseInit.cpp76 RevertingTentativeParsingAction Tentative(*this); in MayBeDesignationStart() local
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DInMemoryModuleCache.h56 enum State { Unknown, Tentative, ToBuild, Final }; enumerator
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DInMemoryModuleCache.cpp21 return I->second.Buffer ? Tentative : ToBuild; in getPCMState()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp5569 Instruction *Tentative = &*IP; in HoistInsertPosition() local
5575 if (isa<CatchSwitchInst>(Tentative)) in HoistInsertPosition()
5579 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) { in HoistInsertPosition()
5585 if (Tentative->getParent() == Inst->getParent() && in HoistInsertPosition()
5594 IP = Tentative->getIterator(); in HoistInsertPosition()
5614 Tentative = IDom->getTerminator(); in HoistInsertPosition()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.def977 // Tentative DWARF 6 language codes. This list is subject to change.
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h2010 LambdaIntroducerTentativeParse *Tentative = nullptr);