Home
last modified time | relevance | path

Searched refs:TK_LE (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/src/
H A Dwhereexpr.c102 assert( TK_LE>TK_EQ && TK_LE<TK_GE ); in allowedOp()
122 assert( TK_GE==TK_LE+2 ); in exprCommute()
124 assert( TK_GT<TK_LE ); in exprCommute()
151 assert( op!=TK_LE || c==WO_LE ); in operatorMask()
1010 assert( TK_GT+1==TK_LE && TK_GT+2==TK_LT && TK_GT+3==TK_GE ); in exprMightBeIndexed()
1231 static const u8 ops[] = {TK_GE, TK_LE}; in exprAnalyze()
H A Dexpr.c642 || pExpr->op==TK_LE || pExpr->op==TK_GE in codeVectorCompare()
649 if( op==TK_LE ) opx = TK_LT; in codeVectorCompare()
691 assert( op==TK_LT || op==TK_GT || op==TK_LE || op==TK_GE ); in codeVectorCompare()
4314 case TK_LE: in sqlite3ExprCodeTarget()
5147 compRight.op = TK_LE; in exprCodeBetween()
5254 case TK_LE: in sqlite3ExprIfTrue()
5374 assert( pExpr->op!=TK_LE || op==OP_Gt ); in sqlite3ExprIfFalse()
5431 case TK_LE: in sqlite3ExprIfFalse()
5755 case TK_LE: in exprImpliesNotNull()
5905 case TK_LE: in impliesNotNullRow()
[all …]
H A DwhereInt.h590 #define WO_LE (WO_EQ<<(TK_LE-TK_EQ))
H A Dwherecode.c1596 assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */ in sqlite3WhereCodeOneLoopStart()
1611 testcase( pX->op==TK_LE ); in sqlite3WhereCodeOneLoopStart()
1616 assert( pX->op!=TK_LE || op==OP_SeekLE ); in sqlite3WhereCodeOneLoopStart()
1625 VdbeCoverageIf(v, pX->op==TK_LE); in sqlite3WhereCodeOneLoopStart()
H A Dtokenize.c340 *tokenType = TK_LE; in sqlite3GetToken()
H A Dresolve.c1265 case TK_LE: in resolveExprStep()
1286 testcase( pExpr->op==TK_LE ); in resolveExprStep()
H A Dtreeview.c600 case TK_LE: zBinOp = "LE"; break; in sqlite3TreeViewExpr()
H A Dvdbeaux.c1700 case TK_LE: zOp = "LE"; break; in displayP4Expr()
H A Dselect.c4827 assert( TK_LE==TK_EQ+2 ); in propagateConstantExprRewrite()
/sqlite-3.40.0/ext/misc/
H A Dnormalize.c267 #define TK_LE TK_PUNCT macro
359 *tokenType = TK_LE; in sqlite3GetToken()