Home | History | Annotate | Download | only in scripts

Lines Matching full:elif

60            | $elif EXPRESSION [[ CODE ]] ELSE_BRANCH
74 (re.compile(r'\$elif\s+'), '$elif'),
340 elif found.token_type == '$for':
347 elif found.token_type == '$range':
362 elif found.token_type == '$':
369 elif (found.token_type == ']]' or found.token_type == '$if' or
370 found.token_type == '$elif' or found.token_type == '$else'):
488 elif next.token_type == '$elif':
489 Pop('$elif')
496 elif not next.value.strip():
511 elif t == '$var':
522 elif t == '$for':
534 elif t == '$if':
541 elif t == '$range':
548 elif t == '$id':
550 elif t == '$($)':
552 elif t == '$':
555 elif t == '[[':
663 elif isinstance(node, RangeNode):
668 elif isinstance(node, ForNode):
681 elif isinstance(node, RawCodeNode):
683 elif isinstance(node, IfNode):
687 elif node.else_branch is not None:
689 elif isinstance(node, ExpNode):
692 elif isinstance(node, LiteralDollarNode):
694 elif isinstance(node, CodeNode):
794 elif IsSingleLineComment(line):
801 elif IsInPreprocessorDirective(output, line):
808 elif IsMultiLineIWYUPragma(line):