Home
last modified time | relevance | path

Searched refs:TK_OR (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dllex.h26 TK_GOTO, TK_IF, TK_IN, TK_LOCAL, TK_NIL, TK_NOT, TK_OR, TK_REPEAT, enumerator
H A Dlparser.c1012 case TK_OR: return OPR_OR; in getbinopr()
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dexpr.c932 case TK_OR: in sqliteExprType()
1023 case TK_OR: op = OP_Or; break; in sqliteExprCode()
1086 case TK_OR: in sqliteExprCode()
1326 case TK_OR: { in sqliteExprIfTrue()
1419 case TK_OR: { in sqliteExprIfFalse()
H A Dtokenize.c111 { "OR", TK_OR, },
H A Dparse.y568 expr(A) ::= expr(X) OR expr(Y). {A = sqliteExpr(TK_OR, X, Y, 0);}