Lines Matching refs:BOOL
924 stmt.type = BOOL
1402 if expr.type != BOOL and expr.type != TRISTATE:
1911 if self.type == BOOL or self.type == TRISTATE:
1957 if new_val == "m" and self.type == BOOL:
2067 if self.type != BOOL and self.type != TRISTATE:
2071 if rev_dep == "m" and self.type == BOOL:
2090 if self.type != BOOL and self.type != TRISTATE:
2094 if rev_dep == "m" and self.type == BOOL:
2113 if self.type != BOOL and self.type != TRISTATE:
2117 if rev_dep == "m" and self.type == BOOL:
2245 if self.type == BOOL or self.type == TRISTATE:
2248 if rev_dep == "m" and self.type == BOOL:
2426 if not ((self.type == BOOL and (v == "y" or v == "n") ) or
2445 if self.is_choice_sym and (self.type == BOOL or self.type == TRISTATE):
2472 if self.type == BOOL or self.type == TRISTATE:
2827 if mode == "m" and self.type == BOOL:
3466 UNKNOWN, BOOL, TRISTATE, STRING, HEX, INT = range(6) variable
3469 TYPENAME = {UNKNOWN: "unknown", BOOL: "bool", TRISTATE: "tristate",
3473 TOKEN_TO_TYPE = {T_BOOL: BOOL, T_TRISTATE: TRISTATE, T_STRING: STRING,
3478 DEFAULT_VALUE = {BOOL: "n", TRISTATE: "n", STRING: "", INT: "", HEX: ""}