HomeSort by relevance Sort by last modified time
    Searched refs:Endif (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/Lex/
PPCallbacks.h 188 /// #if/#else directive and ends after the #endif/#else directive.
226 /// Endif -- This hook is called whenever an #endif is seen.
229 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
376 /// Endif -- This hook is called whenever an #endif is seen.
377 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc) {
378 First->Endif(Loc, IfLoc);
379 Second->Endif(Loc, IfLoc);
385 #endif
    [all...]
PreprocessingRecord.h 568 /// directive. if a #if/#endif block is fully contained within the range,
610 virtual void Endif(SourceLocation Loc, SourceLocation IfLoc);
637 #endif // LLVM_CLANG_LEX_PREPROCESSINGRECORD_H
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 506 void PreprocessingRecord::Endif(SourceLocation Loc, SourceLocation IfLoc) {
PPDirectives.cpp 196 /// file. Lex the rest of the file, until we see an #endif. If
319 if (Sub == "ndif") { // "endif"
320 CheckEndOfDirective("endif");
330 Callbacks->Endif(Tok.getLocation(), CondInfo.IfLoc);
397 // Finally, if we are out of the conditional (saw an #endif or ran off the end
414 // Skip to the next '#else', '#elif', or #endif.
416 // We have reached an #endif. Both the '#' and 'endif' tokens
    [all...]

Completed in 56 milliseconds