Home | History | Annotate | Download | only in Lex

Lines Matching defs:If

46   /// \param PrevFID the file that was exited if \arg Reason is ExitFile. 
67 /// \param RecoveryPath If this client indicates that it can recover from
101 /// in the file system. If the file was found via an absolute include path,
103 /// RelativePath will be split up. For example, if an include of "Some/Some.h"
188 /// #if/#else directive and ends after the #endif/#else directive.
192 /// If -- This hook is called whenever an #if is seen.
196 virtual void If(SourceLocation Loc, SourceRange ConditionRange) {
202 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
222 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
228 /// \param IfLoc the source location of the #if/#ifdef/#ifndef directive.
345 /// If -- This hook is called whenever an #if is seen.
346 virtual void If(SourceLocation Loc, SourceRange ConditionRange) {
347 First->If(Loc, ConditionRange);
348 Second->If(Loc, ConditionRange);
351 /// Elif -- This hook is called whenever an #if is seen.