Lines Matching refs:TK_GE
6985 #define TK_GE 80
7873 #define OP_Ge 80 /* same as TK_GE */
9700 ** as opcodes here. For example, the parser defines TK_GE to be an integer
62147 case OP_Ge: { /* same as TK_GE, jump, in1, in3 */
68961 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
71193 case TK_GE:
71199 assert( TK_GE==OP_Ge );
71205 testcase( op==TK_GE );
71925 compLeft.op = TK_GE;
72001 case TK_GE:
72007 assert( TK_GE==OP_Ge );
72013 testcase( op==TK_GE );
72104 ** TK_GE OP_Lt
72123 assert( pExpr->op!=TK_GE || op==OP_Lt );
72150 case TK_GE:
72156 testcase( op==TK_GE );
95726 #define WO_GE (WO_EQ<<(TK_GE-TK_EQ))
96003 assert( TK_GT>TK_EQ && TK_GT<TK_GE );
96004 assert( TK_LT>TK_EQ && TK_LT<TK_GE );
96005 assert( TK_LE>TK_EQ && TK_LE<TK_GE );
96006 assert( TK_GE==TK_EQ+4 );
96007 return op==TK_IN || (op>=TK_EQ && op<=TK_GE) || op==TK_ISNULL;
96039 assert( TK_GE==TK_LE+2 );
96042 assert( pExpr->op>=TK_GT && pExpr->op<=TK_GE );
96067 assert( op!=TK_GE || c==WO_GE );
96714 static const u8 ops[] = {TK_GE, TK_LE};
96787 pNewExpr1 = sqlite3PExpr(pParse, TK_GE,
98956 /* TK_GE */ OP_SeekGe
98960 assert( TK_GE==TK_GT+3 ); /* ... is correcct. */
104095 *tokenType = TK_GE;