Lines Matching refs:TRISTATE
172 self.n = register_special_symbol(TRISTATE, "n", "n")
173 self.m = register_special_symbol(TRISTATE, "m", "m")
174 self.y = register_special_symbol(TRISTATE, "y", "y")
950 stmt.type = TRISTATE
1402 if expr.type != BOOL and expr.type != TRISTATE:
1911 if self.type == BOOL or self.type == TRISTATE:
2067 if self.type != BOOL and self.type != TRISTATE:
2090 if self.type != BOOL and self.type != TRISTATE:
2113 if self.type != BOOL and self.type != TRISTATE:
2245 if self.type == BOOL or self.type == TRISTATE:
2427 (self.type == TRISTATE and (v == "y" or v == "m" or
2445 if self.is_choice_sym and (self.type == BOOL or self.type == TRISTATE):
2472 if self.type == BOOL or self.type == TRISTATE:
3183 if vis == "m" and sc.type != TRISTATE:
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: ""}