Lines Matching refs:target
28 def preprocess_conditional_directive directive, target, delimiter, text
29 # If we are tracking a target for highlighting already, we do not need to do
34 if @tracking_target != nil && directive == 'endif' && @tracking_target == target.downcase
37 return super(directive, target, delimiter, text)
58 modified_target = target.downcase
68 # If any of the extensions are in the target, and the conditional text
73 if target.downcase.include?(extension)
75 @tracking_target = target.downcase
91 def preprocess_conditional_inclusion directive, target, delimiter, text
92 # If we are tracking a target for highlighting already, do not need to do
97 if @tracking_target != nil && directive == 'endif' && @tracking_target == target.downcase
100 return super(directive, target, delimiter, text)
121 modified_target = target.downcase
131 # If any of the extensions are in the target, and the conditional text
136 if target.downcase.include?(extension)
138 @tracking_target = target.downcase