Home | History | Annotate | Download | only in dist

Lines Matching refs:TK_GE

6397 #define TK_GE                             80
7280 #define OP_Ge 80 /* same as TK_GE */
9060 ** as opcodes here. For example, the parser defines TK_GE to be an integer
54160 case OP_Ge: { /* same as TK_GE, jump, in1, in3 */
60667 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
62927 case TK_GE:
62933 assert( TK_GE==OP_Ge );
62939 testcase( op==TK_GE );
63638 compLeft.op = TK_GE;
63714 case TK_GE:
63720 assert( TK_GE==OP_Ge );
63726 testcase( op==TK_GE );
63817 ** TK_GE OP_Lt
63836 assert( pExpr->op!=TK_GE || op==OP_Lt );
63863 case TK_GE:
63869 testcase( op==TK_GE );
86963 #define WO_GE (WO_EQ<<(TK_GE-TK_EQ))
87229 assert( TK_GT>TK_EQ && TK_GT<TK_GE );
87230 assert( TK_LT>TK_EQ && TK_LT<TK_GE );
87231 assert( TK_LE>TK_EQ && TK_LE<TK_GE );
87232 assert( TK_GE==TK_EQ+4 );
87233 return op==TK_IN || (op>=TK_EQ && op<=TK_GE) || op==TK_ISNULL;
87265 assert( TK_GE==TK_LE+2 );
87268 assert( pExpr->op>=TK_GT && pExpr->op<=TK_GE );
87293 assert( op!=TK_GE || c==WO_GE );
87950 static const u8 ops[] = {TK_GE, TK_LE};
88020 pNewExpr1 = sqlite3PExpr(pParse, TK_GE, sqlite3ExprDup(db,pLeft,0),pStr1,0);
89708 /* TK_GE */ OP_SeekGe
89712 assert( TK_GE==TK_GT+3 ); /* ... is correcct. */
94742 *tokenType = TK_GE;