HomeSort by: relevance | last modified time | path
    Searched defs:Tentative (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
InMemoryModuleCache.h 51 /// 2. Tentative: the PCM has been read from disk but not yet imported or
57 enum State { Unknown, Tentative, ToBuild, Final };
65 /// \post state is Tentative
73 /// \pre state is not Tentative.
80 /// \pre state is Tentative/Final.
81 /// \post Tentative => ToBuild or Final => Final.
82 /// \return false on success, i.e. if Tentative => ToBuild.
87 /// \pre state is Tentative or Final.
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 746 /// Use lookahead and potentially tentative parsing to determine if we are
784 LambdaIntroducerTentativeParse Tentative;
785 if (ParseLambdaIntroducer(Intro, &Tentative)) {
790 switch (Tentative) {
797 // non-tentative parse.
818 /// \param Tentative If non-null, we are disambiguating between a
825 LambdaIntroducerTentativeParse *Tentative) {
826 if (Tentative)
827 *Tentative = LambdaIntroducerTentativeParse::Success;
840 if (Tentative) {
    [all...]
ParseTentative.cpp 9 // This file implements the tentative parsing portions of the Parser
132 // or an identifier which doesn't resolve as anything. We need tentative
400 assert(resolved() && "can't continue after tentative parsing bails out");
489 // It might be a declaration; we need tentative parsing.
581 // We need tentative parsing...
669 // No tentative parsing if we don't need to look for ']]' or a lambda.
701 // FIXME: If this disambiguation is too slow, fold the tentative lambda parse
702 // into the tentative attribute parse below.
706 LambdaIntroducerTentativeParse Tentative;
707 if (ParseLambdaIntroducer(Intro, &Tentative)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 5080 Instruction *Tentative = &*IP;
5086 if (isa<CatchSwitchInst>(Tentative))
5090 if (Inst == Tentative || !DT.dominates(Inst, Tentative)) {
5096 if (Tentative->getParent() == Inst->getParent() &&
5105 IP = Tentative->getIterator();
5125 Tentative = IDom->getTerminator();

Completed in 21 milliseconds