Home | History | Annotate | Download | only in lint1

Lines Matching refs:lex_operator

79 "*="				return lex_operator(T_OPASSIGN, MULASS);
80 "/=" return lex_operator(T_OPASSIGN, DIVASS);
81 "%=" return lex_operator(T_OPASSIGN, MODASS);
82 "+=" return lex_operator(T_OPASSIGN, ADDASS);
83 "-=" return lex_operator(T_OPASSIGN, SUBASS);
84 "<<=" return lex_operator(T_OPASSIGN, SHLASS);
85 ">>=" return lex_operator(T_OPASSIGN, SHRASS);
86 "&=" return lex_operator(T_OPASSIGN, ANDASS);
87 "^=" return lex_operator(T_OPASSIGN, XORASS);
88 "|=" return lex_operator(T_OPASSIGN, ORASS);
94 "==" return lex_operator(T_EQUALITY, EQ);
95 "!=" return lex_operator(T_EQUALITY, NE);
96 "<" return lex_operator(T_RELATIONAL, LT);
97 ">" return lex_operator(T_RELATIONAL, GT);
98 "<=" return lex_operator(T_RELATIONAL, LE);
99 ">=" return lex_operator(T_RELATIONAL, GE);
100 "<<" return lex_operator(T_SHIFT, SHL);
101 ">>" return lex_operator(T_SHIFT, SHR);
106 "+" return lex_operator(T_ADDITIVE, PLUS);
107 "-" return lex_operator(T_ADDITIVE, MINUS);
109 "/" return lex_operator(T_MULTIPLICATIVE, DIV);
110 "%" return lex_operator(T_MULTIPLICATIVE, MOD);