Home
last modified time | relevance | path

Searched refs:PreprocessingDirective (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessingRecord.h133 class PreprocessingDirective : public PreprocessedEntity {
135 PreprocessingDirective(EntityKind Kind, SourceRange Range) in PreprocessingDirective() function
146 class MacroDefinitionRecord : public PreprocessingDirective {
153 : PreprocessingDirective(MacroDefinitionKind, Range), Name(Name) {} in MacroDefinitionRecord()
206 class InclusionDirective : public PreprocessingDirective {
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp47 : PreprocessingDirective(InclusionDirectiveKind, Range), InQuotes(InQuotes), in InclusionDirective()