Lines Matching full:elif
464 elif self.tok == TOK_LPAREN:
470 elif self.tok == TOK_ID:
511 elif self.tok == TOK_DEPENDS:
517 elif self.tok == TOK_SELECT:
522 elif self.tok == TOK_IMPLY:
527 elif self.tok == TOK_BOOL:
565 elif self.tok == TOK_CONFIG:
567 elif self.tok == TOK_ID:
604 elif self.tok == '=':
606 elif self.tok == '(':
608 elif self.tok == ')':
610 elif self.tok == '&' and self.src[self.pos+1] == '&':
613 elif self.tok == '|' and self.src[self.pos+1] == '|':
616 elif self.tok == '!':
618 elif self.tok == 'd' and self.check_keyword("epends"):
620 elif self.tok == 'o' and self.check_keyword("n"):
622 elif self.tok == 's' and self.check_keyword("elect"):
624 elif self.tok == 'i' and self.check_keyword("mply"):
626 elif self.tok == 'c' and self.check_keyword("onfig"):
628 elif self.tok == 'd' and self.check_keyword("efault"):
630 elif self.tok == 'b' and self.check_keyword("ool"):
632 elif self.tok == 'i' and self.check_keyword("f"):
634 elif self.tok == 'y' and self.check_keyword(""):
636 elif self.tok == 'n' and self.check_keyword(""):
638 elif (self.tok == 's' and self.check_keyword("ource")) or \
648 elif self.tok.isalnum():
654 elif self.tok == '\n':
659 elif not self.tok.isspace():
670 elif argv[1] == '--randconfig':
674 elif argv[1] == '--allyesconfig':
677 elif argv[1] == '--allnoconfig':