Searched refs:TK_LE (Results 1 – 9 of 9) sorted by relevance
/external/chromium_org/third_party/skia/third_party/lua/src/ |
D | llex.h | 29 TK_CONCAT, TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_DBCOLON, TK_EOS, enumerator
|
D | llex.c | 446 else { next(ls); return TK_LE; } in llex()
|
D | lparser.c | 1009 case TK_LE: return OPR_LE; in getbinopr()
|
/external/chromium_org/third_party/sqlite/src/src/ |
D | expr.c | 161 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || in comparisonAffinity() 2389 case TK_LE: in sqlite3ExprCodeTarget() 2395 assert( TK_LE==OP_Le ); in sqlite3ExprCodeTarget() 2401 testcase( op==TK_LE ); in sqlite3ExprCodeTarget() 3126 compRight.op = TK_LE; in exprCodeBetween() 3197 case TK_LE: in sqlite3ExprIfTrue() 3203 assert( TK_LE==OP_Le ); in sqlite3ExprIfTrue() 3209 testcase( op==TK_LE ); in sqlite3ExprIfTrue() 3321 assert( pExpr->op!=TK_LE || op==OP_Gt ); in sqlite3ExprIfFalse() 3348 case TK_LE: in sqlite3ExprIfFalse() [all …]
|
D | tokenize.c | 175 *tokenType = TK_LE; in sqlite3GetToken()
|
D | where.c | 212 #define WO_LE (WO_EQ<<(TK_LE-TK_EQ)) 494 assert( TK_LE>TK_EQ && TK_LE<TK_GE ); in allowedOp() 528 assert( TK_GE==TK_LE+2 ); in exprCommute() 530 assert( TK_GT<TK_LE ); in exprCommute() 554 assert( op!=TK_LE || c==WO_LE ); in operatorMask() 1203 static const u8 ops[] = {TK_GE, TK_LE}; in exprAnalyze() 3737 assert( TK_LE==TK_GT+1 ); /* Make sure the ordering.. */ in codeOneLoopStart()
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.c | 7202 #define TK_LE 78 macro 70898 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 73126 case TK_LE: 73132 assert( TK_LE==OP_Le ); 73138 testcase( op==TK_LE ); 73863 compRight.op = TK_LE; 73934 case TK_LE: 73940 assert( TK_LE==OP_Le ); 73946 testcase( op==TK_LE ); 74058 assert( pExpr->op!=TK_LE || op==OP_Gt ); [all …]
|
/external/sqlite/dist/ |
D | sqlite3.c | 8279 #define TK_LE 81 macro 78457 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 80898 case TK_LE: 80908 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 81597 case TK_LE: zBinOp = "LE"; break; 81864 compRight.op = TK_LE; 81936 case TK_LE: 81947 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 82063 assert( pExpr->op!=TK_LE || op==OP_Gt ); 82092 case TK_LE: [all …]
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 8279 #define TK_LE 81 macro 78437 pExpr->op==TK_GT || pExpr->op==TK_GE || pExpr->op==TK_LE || 80878 case TK_LE: 80888 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 81577 case TK_LE: zBinOp = "LE"; break; 81844 compRight.op = TK_LE; 81916 case TK_LE: 81927 assert(TK_LE==OP_Le); testcase(op==OP_Le); VdbeCoverageIf(v,op==OP_Le); 82043 assert( pExpr->op!=TK_LE || op==OP_Gt ); 82072 case TK_LE: [all …]
|