Lines Matching refs:TK_GE
8281 #define TK_GE 83 macro
78437 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE ||
80880 case TK_GE:
80890 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
81579 case TK_GE: zBinOp = "GE"; break;
81841 compLeft.op = TK_GE;
81918 case TK_GE:
81929 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
82045 assert( pExpr->op!=TK_GE || op==OP_Lt );
82074 case TK_GE:
82085 assert(TK_GE==OP_Ge); testcase(op==OP_Ge); VdbeCoverageIf(v,op==OP_Ge);
110926 #define WO_GE (WO_EQ<<(TK_GE-TK_EQ))
111302 assert( TK_GT>TK_EQ && TK_GT<TK_GE );
111303 assert( TK_LT>TK_EQ && TK_LT<TK_GE );
111304 assert( TK_LE>TK_EQ && TK_LE<TK_GE );
111305 assert( TK_GE==TK_EQ+4 );
111306 return op==TK_IN || (op>=TK_EQ && op<=TK_GE) || op==TK_ISNULL;
111346 assert( TK_GE==TK_LE+2 );
111349 assert( pExpr->op>=TK_GT && pExpr->op<=TK_GE );
111374 assert( op!=TK_GE || c==WO_GE );
112151 static const u8 ops[] = {TK_GE, TK_LE};
112224 pNewExpr1 = sqlite3PExpr(pParse, TK_GE,
113996 assert( TK_GE==TK_GT+3 ); /* ... is correcct. */
114009 VdbeCoverageIf(v, pX->op==TK_GE);
121501 *tokenType = TK_GE;