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

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 73 /// directive. if a \#if/\#endif block is fully contained within the range,
97 void Endif(SourceLocation Loc, SourceLocation IfLoc) override;
102 #endif // LLVM_CLANG_LEX_PPCONDITIONALDIRECTIVERECORD_H
PPCallbacks.h 315 /// \#if/\#else directive and ends after the \#endif/\#else directive.
316 /// \param EndifLoc The end location of the 'endif' token, which may precede
318 /// 'endif').
368 /// Hook called whenever an \#endif is seen.
371 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
602 /// Hook called whenever an \#endif is seen.
603 void Endif(SourceLocation Loc, SourceLocation IfLoc) override {
604 First->Endif(Loc, IfLoc);
605 Second->Endif(Loc, IfLoc);
611 #endif
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 110 void PPConditionalDirectiveRecord::Endif(SourceLocation Loc,
PPDirectives.cpp 430 /// file. Lex the rest of the file, until we see an \#endif. If
456 // Skip to the next '#endif' / '#else' / '#elif'.
554 if (Sub == "ndif") { // "endif"
566 endLoc = CheckEndOfDirective("endif");
569 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
643 // Finally, if we are out of the conditional (saw an #endif or ran off the end
1951 #endif
2084 // some directives (e.g. #endif of a header guard) will never be seen.
2129 #endif
2155 #endif
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.cpp 42 { tgtok::Endif, "endif" },
640 // New line and EOF may follow only #else/#endif. It will be reported
652 // #endif// OR #endif/**/
735 // either #else or #endif corresponding to this #ifdef.
763 // we have to start skipping lines until the matching #endif.
773 } else if (Kind == tgtok::Endif) {
774 // Check if this #endif is correct before calling prepSkipDirectiveEnd(),
775 // which will move CurPtr away from the beginning of #endif
    [all...]
TGLexer.h 75 Ifdef, Ifndef, Else, Endif, Define
179 // For each #endif we pop the top element from the control stack.
182 // must be empty, i.e. #ifdef and the corresponding #endif
209 // #endif
236 // one of the internal token kinds, i.e. Ifdef, Else, Endif, Define.
374 // stack. This means there is no matching #endif for the previous
381 #endif

Completed in 47 milliseconds