HomeSort by: relevance | last modified time | path
    Searched refs:Elif (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 90 void Elif(SourceLocation Loc, SourceRange ConditionRange,
PPCallbacks.h 336 /// Hook called whenever an \#elif is seen.
342 virtual void Elif(SourceLocation Loc, SourceRange ConditionRange,
575 /// Hook called whenever an \#elif is seen.
576 void Elif(SourceLocation Loc, SourceRange ConditionRange,
578 First->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
579 Second->Elif(Loc, ConditionRange, ConditionValue, IfLoc);
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 96 void PPConditionalDirectiveRecord::Elif(SourceLocation Loc,
PPDirectives.cpp 432 /// this \#if directive, so \#else/\#elif blocks should never be entered.
456 // Skip to the next '#endif' / '#else' / '#elif'.
601 } else if (Sub == "lif") { // "elif".
604 // If this is a #elif with a #else before it, report the error.
613 // looked up, etc, inside the #elif expression.
624 Callbacks->Elif(
3157 /// HandleElifDirective - Implements the \#elif directive.
3163 // #elif directive in a non-skipping conditional... start skipping.
3174 // If this is a top-level #elif, inform the MIOpt.
3178 // If this is a #elif with a #else before it, report the error
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
InclusionRewriter.cpp 52 /// Tracks where #if and #elif directives get evaluated and whether to true.
85 void Elif(SourceLocation Loc, SourceRange ConditionRange,
214 void InclusionRewriter::Elif(SourceLocation Loc, SourceRange ConditionRange,
219 assert(P.second && "Unexpected revisitation of the same elif directive");
472 bool elif = (RawToken.getIdentifierInfo()->getPPKeywordID() == local
488 if (elif) {
498 OS << (elif ? "#elif " : "#if ") << (isTrue ? "1" : "0")

Completed in 20 milliseconds