Home
last modified time | relevance | path

Searched refs:EP_IntValue (Results 1 – 17 of 17) sorted by relevance

/sqlite-3.40.0/src/
H A Dtreeview.c540 if( pExpr->flags & EP_IntValue ){ in sqlite3TreeViewExpr()
549 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
555 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
570 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
576 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
586 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
593 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
643 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
655 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
679 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3TreeViewExpr()
[all …]
H A Dwhereexpr.c212 assert( !ExprHasProperty(pRight, EP_IntValue) ); in isLikeOrGlob()
243 assert( !ExprHasProperty(pPrefix, EP_IntValue) ); in isLikeOrGlob()
298 assert( !ExprHasProperty(pRight, EP_IntValue) ); in isLikeOrGlob()
389 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in isAuxiliaryVtabOperator()
420 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in isAuxiliaryVtabOperator()
1203 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in exprAnalyze()
1329 assert( pStr1==0 || !ExprHasProperty(pStr1, EP_IntValue) ); in exprAnalyze()
1330 assert( pStr2==0 || !ExprHasProperty(pStr2, EP_IntValue) ); in exprAnalyze()
1566 ExprSetProperty(pVal, EP_IntValue); in whereAddLimitExpr()
H A Dexpr.c70 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3ExprAffinity()
196 assert( !ExprHasProperty(p, EP_IntValue) ); in sqlite3ExprCollSeq()
2102 if( !ExprHasProperty(pExpr, EP_Quoted|EP_IntValue) in sqlite3ExprIdToTrueFalse()
2119 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3ExprTruthValue()
2457 if( p->flags & EP_IntValue ){ in sqlite3ExprIsInteger()
3693 if( pExpr->flags & EP_IntValue ){ in codeInteger()
4243 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3ExprCodeTarget()
4389 tempX.flags = EP_IntValue|EP_TokenOnly; in sqlite3ExprCodeTarget()
5600 if( combinedFlags & EP_IntValue ){ in sqlite3ExprCompare()
5621 assert( !ExprHasProperty(pA, EP_IntValue) ); in sqlite3ExprCompare()
[all …]
H A Dresolve.c91 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in resolveAlias()
669 assert( !ExprHasProperty(pExpr, EP_xIsSelect|EP_IntValue) ); in lookupName()
838 assert( !ExprHasProperty(p, EP_IntValue) ); in exprProbability()
920 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in resolveExprStep()
956 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in resolveExprStep()
969 assert( !ExprHasProperty(pRight, EP_IntValue) ); in resolveExprStep()
1001 assert( !ExprHasProperty(pExpr, EP_xIsSelect|EP_IntValue) ); in resolveExprStep()
1325 assert( !ExprHasProperty(pE, EP_IntValue) ); in resolveAsName()
1503 pNew->flags |= EP_IntValue; in resolveCompoundOrderBy()
H A Dvdbemem.c1478 assert( !ExprHasProperty(p, EP_IntValue) ); in valueFromFunction()
1581 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in valueFromExpr()
1606 if( ExprHasProperty(pExpr, EP_IntValue) ){ in valueFromExpr()
1655 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in valueFromExpr()
1673 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in valueFromExpr()
H A Dattach.c360 assert( !ExprHasProperty(pAuthArg, EP_IntValue) ); in codeAttach()
H A Dfunc.c1980 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3IsLikeFunction()
2004 assert( !ExprHasProperty(pEscape, EP_IntValue) ); in sqlite3IsLikeFunction()
H A DsqliteInt.h2906 #define EP_IntValue 0x000800 /* Integer value contained in u.iValue */ macro
2946 #define ExprUseUToken(E) (((E)->flags&EP_IntValue)==0)
2947 #define ExprUseUValue(E) (((E)->flags&EP_IntValue)!=0)
H A Dprintf.c856 if( ALWAYS(pExpr) && ALWAYS(!ExprHasProperty(pExpr,EP_IntValue)) ){ in sqlite3_str_vappendf()
H A Dutil.c267 assert( !ExprHasProperty(p, EP_IntValue) ); in sqlite3DequoteExpr()
H A Dselect.c2217 assert( !ExprHasProperty(pColExpr, EP_IntValue) ); in sqlite3ColumnsFromExprList()
3470 pNew->flags |= EP_IntValue; in multiSelectOrderBy()
3834 ExprSetProperty(pExpr, EP_IntValue); in substExpr()
5173 assert( !ExprHasProperty(pFunc, EP_IntValue) ); in minMaxQuery()
5907 assert( !ExprHasProperty(pE->pLeft, EP_IntValue) ); in selectExpander()
H A Dinsert.c2944 assert( pDestExpr==0 || !ExprHasProperty(pDestExpr, EP_IntValue) ); in xferOptimization()
2946 assert( pSrcExpr==0 || !ExprHasProperty(pSrcExpr, EP_IntValue) ); in xferOptimization()
H A Dwindow.c913 pSub->flags &= ~(EP_IntValue|EP_IsTrue|EP_IsFalse); in exprListAppendList()
943 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in disallowAggregatesInOrderByCb()
H A Dbuild.c1862 assert( !ExprHasProperty(pCExpr, EP_IntValue) ); in sqlite3AddPrimaryKey()
4118 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in sqlite3CreateIndex()
4216 assert( !ExprHasProperty(pListItem->pExpr, EP_IntValue) ); in sqlite3CreateIndex()
H A Dpragma.c1202 assert( pColExpr==0 || !ExprHasProperty(pColExpr, EP_IntValue) in sqlite3Pragma()
H A Dvdbeaux.c1678 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in displayP4Expr()
H A Dwhere.c1254 assert( !ExprHasProperty(pExpr, EP_IntValue) ); in allocateIndexInfo()