Searched refs:nSrc (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Ddelete.c34 assert( pItem && pSrc->nSrc==1 );
106 assert( pFrom->nSrc==1 );
253 assert( pTabList->nSrc==1 );
299 assert( pTabList->nSrc==1 );
H A Dwalker.c104 for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){
H A Dauth.c160 for(iSrc=0; ALWAYS(iSrc<pTabList->nSrc); iSrc++){
H A Dselect.c252 assert( pSrc->nSrc>iRight );
329 for(i=0; i<pSrc->nSrc-1; i++, pRight++, pLeft++){
1004 for(j=0;j<pTabList->nSrc && pTabList->a[j].iCursor!=pExpr->iTable;j++);
1005 if( j<pTabList->nSrc ){
1177 for(j=0; ALWAYS(j<pTabList->nSrc); j++){
1180 assert( j<pTabList->nSrc );
2552 assert( pSrc ); /* Even for (SELECT 1) we have: pSrc!=0 but pSrc->nSrc==0 */
2554 for(i=pSrc->nSrc, pItem=pSrc->a; i>0; i--, pItem++){
2698 assert( pSrc && iFrom>=0 && iFrom<pSrc->nSrc );
2704 if( subqueryIsAgg && pSrc->nSrc>
[all...]
H A Dresolve.c161 for(i=0, pItem=pSrcList->a; i<pSrcList->nSrc; i++, pItem++){
200 if( i<pSrcList->nSrc-1 ){
454 for(i=0; i<pNC->pSrcList->nSrc; i++){
469 assert( pSrcList && pSrcList->nSrc==1 );
996 for(i=0; i<p->pSrc->nSrc; i++){
H A Dbuild.c1486 sSrc.nSrc = 1;
1999 assert( pName->nSrc==1 );
2913 assert( pName->nSrc==1 );
3104 assert( iStart<=pSrc->nSrc );
3107 if( pSrc->nSrc+nExtra>pSrc->nAlloc ){
3109 int nAlloc = pSrc->nSrc+nExtra;
3124 for(i=pSrc->nSrc-1; i>=iStart; i--){
3127 pSrc->nSrc += (i16)nExtra;
3187 pList = sqlite3SrcListEnlarge(db, pList, 1, pList->nSrc);
3192 pItem = &pList->a[pList->nSrc
[all...]
H A Dtrigger.c137 assert( pTableName->nSrc==1 );
490 assert( pName->nSrc==1 );
676 assert( pSrc->nSrc>0 );
682 pSrc->a[pSrc->nSrc-1].zDatabase = sqlite3DbStrDup(db, db->aDb[iDb].zName);
H A Dattach.c452 for(i=0, pItem=pList->a; i<pList->nSrc; i++, pItem++){
H A Dwhere.c4097 pOrTab->nSrc = pOrTab->nAlloc;
4390 testcase( pTabList->nSrc==BMS );
4391 if( pTabList->nSrc>BMS ){
4401 nTabList = (wctrlFlags & WHERE_ONETABLE_ONLY) ? 1 : pTabList->nSrc;
4463 ** Note that bitmasks are created for all pTabList->nSrc tables in
4465 ** equal to pTabList->nSrc but might be shortened to 1 if the
4469 for(i=0; i<pTabList->nSrc; i++){
4480 for(i=0; i<pTabList->nSrc; i++){
4921 assert( pWInfo->nLevel==1 || pWInfo->nLevel==pTabList->nSrc );
H A Dalter.c414 assert( pSrc->nSrc==1 );
H A Dupdate.c137 assert( pTabList->nSrc==1 );
H A Dinsert.c487 assert( pTabList->nSrc==1 );
1647 if( pSelect->pSrc->nSrc!=1 ){
H A Dbtree.c5238 int nSrc, n, rc; local
5276 nSrc = nData;
5284 nSrc = (int)nKey;
5357 if( nSrc>0 ){
5358 if( n>nSrc ) n = nSrc;
5367 nSrc -= n;
5369 if( nSrc==0 ){
5370 nSrc = nData;
H A Dparse.y492 if( ALWAYS(A && A->nSrc>0) ) A->a[A->nSrc-1].jointype = (u8)Y;
H A DsqliteInt.h1834 i16 nSrc; /* Number of tables or subqueries in the FROM clause */ member in struct:SrcList
H A Dexpr.c891 nByte = sizeof(*p) + (p->nSrc>0 ? sizeof(p->a[0]) * (p->nSrc-1) : 0);
894 pNew->nSrc = pNew->nAlloc = p->nSrc;
895 for(i=0; i<p->nSrc; i++){
1360 if( pSrc->nSrc!=1 ) return 0; /* Single term in FROM clause */
3548 for(i=0; i<pSrcList->nSrc; i++, pItem++){
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c10179 i16 nSrc; /* Number of tables or subqueries in the FROM clause */ member in struct:SrcList
19186 assert( k>=0 && k<pSrc->nSrc );
52357 int nSrc, n, rc; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11561 int nSrc; /* Number of tables or subqueries in the FROM clause */ member in struct:SrcList
21224 assert( k>=0 && k<pSrc->nSrc );
57064 int nSrc, n, rc; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11561 int nSrc; /* Number of tables or subqueries in the FROM clause */ member in struct:SrcList
21224 assert( k>=0 && k<pSrc->nSrc );
57084 int nSrc, n, rc; local
[all...]

Completed in 633 milliseconds