/illumos-gate/usr/src/cmd/sgs/m4/common/ |
H A D | m4y.y | 45 %nonassoc GT GE LT LE NE EQ 64 | e LT e = { $$ = $1 < $3; } 108 return (peek('=', LE, LT));
|
H A D | m4y_xpg4.y | 46 %nonassoc LE GE LT GT 66 | e LT e = { $$ = $1 < $3; } 114 return (peek3('=', LE, '<', LSHIFT, LT));
|
/illumos-gate/usr/src/ucbcmd/expr/ |
H A D | expr.y | 43 %token OR AND ADD SUBT MULT DIV REM EQ GT GEQ LT LEQ NEQ 49 %left EQ LT GT GEQ LEQ NEQ 73 | expr LT expr = { $$ = rel(LT, $1, $3); } 118 EQ, EQ, LT, LEQ, GT, GEQ, NEQ, 159 case LT:
|
/illumos-gate/usr/src/cmd/oawk/ |
H A D | makeprctab.c | 46 { LT, "relop", " < "},
|
H A D | awk.lx.l | 92 <A>"<" { yylval = LT; RETURN(RELOP); }
|
H A D | awk.g.y | 34 %token LT LE GT GE EQ NE
|
H A D | run.c | 293 case LT: if (i<0) return (true);
|
/illumos-gate/usr/src/cmd/expr/ |
H A D | expr.c | 45 #define LT 263 macro 100 EQ, EQ, LT, LEQ, GT, GEQ, NEQ, 207 case LT: 231 case LT: 560 case LT:
|
/illumos-gate/usr/src/cmd/awk/ |
H A D | awk.g.y | 65 %token <i> AND BOR APPEND EQ GE GT LE LT NE IN 91 %nonassoc APPEND EQ GE GT LE LT NE MATCHOP IN '|' 246 | pattern LT pattern { $$ = op2($2, $1, $3); } 363 | GETLINE var LT term { $$ = op3(GETLINE, $2, (Node *)$3, $4); } 364 | GETLINE LT term { $$ = op3(GETLINE, NIL, (Node *)$2, $3); } 464 case LE: case LT: case EQ: case NE: case GT: case GE:
|
H A D | maketab.c | 48 { LT, "relop", " < " },
|
H A D | awk.lx.l | 117 <A>"<" { yylval.i = LT; RET(LT); }
|
H A D | run.c | 638 case LT: return (i < 0 ? true : false); 1659 } else if (a == LT) { /* getline <file */
|
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/ |
H A D | StatisticList.java | 553 if (kve.getOp() == KVOpExpression.LT) { 642 if (kve.getOp() == KVOpExpression.LT) { 702 if (kve.getOp() == KVOpExpression.LT) {
|
H A D | Expression.java | 216 static final char LT = '<'; field in class:KVOpExpression
|
H A D | Objective.java | 1138 * If the objective is GT or LT, then don't 1142 if (kve.getOp() == KVOpExpression.LT &&
|
/illumos-gate/usr/src/cmd/awk_xpg4/ |
H A D | awk.y | 66 %token <node> EQ NE GE LE GT LT 321 $$ = node(LT, $1, $3); 516 $$ = node(GETLINE, $2, node(LT, $4, NNULL));
|
H A D | awk2.c | 644 case LT:
|
H A D | awk3.c | 1136 case LT: 1444 case LT:
|
/illumos-gate/usr/src/cmd/file/ |
H A D | magicutils.c | 64 #define LT 2 macro 87 char e_opcode; /* EQ, GT, LT, ANY, AND, NSET */ 468 ep->e_opcode = LT; 716 case LT: 1038 case LT:
|
/illumos-gate/usr/src/ucbcmd/tset/ |
H A D | tset.c | 333 #define LT 4 macro 335 #define LE (LT|EQ) 336 #define NE (GT|LT) 337 #define ALL (GT|EQ|LT) 674 Map->Test |= LT; 1561 case LT:
|
/illumos-gate/usr/src/cmd/geniconvtbl/ |
H A D | itm_comp.l | 133 "<" {return (LT);}
|
H A D | geniconvtbl.c | 1664 EVAL_OP_BIN1(LT_FOR_CSTYLE_CLEAN, LT) /* A < B */ 1665 EVAL_OP_BIN2(LT_FOR_CSTYLE_CLEAN, LT) /* A < B */ 1666 EVAL_OP_BIN3(LT_FOR_CSTYLE_CLEAN, LT) /* A < B */ 1667 EVAL_OP_BIN4(LT_FOR_CSTYLE_CLEAN, LT) /* A < B */
|
H A D | iconv_tm.h | 717 ITM_EXPR_BIN(LT), /* A < B */
|
H A D | itm_comp.y | 158 %left LT LE GT GE 2015 | expr LT expr
|
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | parse.y | 142 %left GT GE LT LE. 571 expr(A) ::= expr(X) LT expr(Y). {A = sqliteExpr(TK_LT, X, Y, 0);}
|