Lines Matching refs:directive
28 def preprocess_conditional_directive directive, target, delimiter, text
34 if @tracking_target != nil && directive == 'endif' && @tracking_target == target.downcase
37 return super(directive, target, delimiter, text)
40 # If it is an ifdef or ifndef, push the directive onto a stack
44 status = directive
45 if directive == 'endif'
66 result = super(directive, modified_target, delimiter, text)
74 if directive != 'endif'
91 def preprocess_conditional_inclusion directive, target, delimiter, text
97 if @tracking_target != nil && directive == 'endif' && @tracking_target == target.downcase
100 return super(directive, target, delimiter, text)
103 # If it is an ifdef or ifndef, push the directive onto a stack
107 status = directive
108 if directive == 'endif'
129 result = super(directive, modified_target, delimiter, text)
137 if directive != 'endif'