Searched refs:sqlite3ExprIsInteger (Results 1 – 7 of 7) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | resolve.c | 1368 assert( sqlite3ExprIsInteger(pE, &i)==0 ); in resolveOrderByTermToExprList() 1467 if( sqlite3ExprIsInteger(pE, &iCol) ){ in resolveCompoundOrderBy() 1652 if( sqlite3ExprIsInteger(pE2, &iCol) ){ in resolveOrderGroupBy()
|
| H A D | expr.c | 2448 int sqlite3ExprIsInteger(const Expr *p, int *pValue){ in sqlite3ExprIsInteger() function 2463 rc = sqlite3ExprIsInteger(p->pLeft, pValue); in sqlite3ExprIsInteger() 2468 if( sqlite3ExprIsInteger(p->pLeft, &v) ){ in sqlite3ExprIsInteger()
|
| H A D | whereexpr.c | 1563 if( sqlite3ExprIsInteger(pExpr, &iVal) && iVal>=0 ){ in whereAddLimitExpr()
|
| H A D | window.c | 911 if( sqlite3ExprIsInteger(pSub, &iDummy) ){ in exprListAppendList()
|
| H A D | sqliteInt.h | 4819 int sqlite3ExprIsInteger(const Expr*, int*);
|
| H A D | select.c | 2425 if( sqlite3ExprIsInteger(pLimit->pLeft, &n) ){ in computeLimitRegisters() 2905 && sqlite3ExprIsInteger(p->pLimit->pLeft, &nLimit) in multiSelect()
|
| H A D | where.c | 2675 if( sqlite3ExprIsInteger(pRight, &k) && k>=(-1) && k<=1 ){ in whereLoopOutputAdjust()
|