/external/chromium_org/third_party/sqlite/src/src/ |
table.c | 34 int nColumn; /* Number of columns in the result */ 35 int nData; /* Slots used in azResult[]. (nRow+1)*nColumn */ 70 p->nColumn = nCol; 76 }else if( p->nColumn!=nCol ){ 135 res.nColumn = 0; 176 if( pnColumn ) *pnColumn = res.nColumn;
|
insert.c | 70 pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+2); 75 for(n=0; n<pIdx->nColumn; n++){ 448 int nColumn; /* Number of columns in the data */ 617 nColumn = pSelect->pEList->nExpr; 618 assert( dest.nMem==nColumn ); 653 sqlite3VdbeAddOp2(v, OP_OpenEphemeral, srcTab, nColumn); 656 sqlite3VdbeAddOp3(v, OP_MakeRecord, regFromSelect, nColumn, regRec); 673 nColumn = pList ? pList->nExpr : 0; 674 for(i=0; i<nColumn; i++){ 689 if( pColumn==0 && nColumn && nColumn!=(pTab->nCol-nHidden) ) [all...] |
select.c | 521 ** If srcTab and nColumn are both zero, then the pEList expressions 522 ** are evaluated in order to get the data for this row. If nColumn>0 531 int nColumn, /* Number of columns in the source table */ 556 if( nColumn>0 ){ 557 nResultCol = nColumn; 569 if( nColumn>0 ){ 570 for(i=0; i<nColumn; i++){ 580 nColumn = nResultCol; 588 assert( pEList->nExpr==nColumn ); 589 codeDistinct(pParse, distinct, iContinue, nColumn, regResult) [all...] |
where.c | 603 if( NEVER(j>=pIdx->nColumn) ) return 0; [all...] |
delete.c | 597 sqlite3VdbeAddOp3(pParse->pVdbe, OP_IdxDelete, iCur+i, r1,pIdx->nColumn+1); 625 nCol = pIdx->nColumn;
|
analyze.c | 170 nCol = pIdx->nColumn; 539 n = pIndex ? pIndex->nColumn : 0;
|
build.c | [all...] |
vdbeblob.c | 238 for(j=0; j<pIdx->nColumn; j++){
|
fkey.c | 226 if( pIdx->nColumn==nCol && pIdx->onError!=OE_None ){ [all...] |
expr.c | [all...] |
update.c | 250 for(i=0; i<pIdx->nColumn; i++){
|
pragma.c | 914 for(i=0; i<pIdx->nColumn; i++){ [all...] |
sqliteInt.h | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
fts1.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
fts3_write.c | 633 for(i=2; i<p->nColumn+2; i++){ 641 aSz[p->nColumn] += sqlite3_value_bytes(apVal[i]); 655 ** apVal[p->nColumn+1] Right-most user-defined column 656 ** apVal[p->nColumn+2] Hidden column with same name as table 657 ** apVal[p->nColumn+3] Hidden "docid" column (alias for rowid) 690 if( SQLITE_NULL!=sqlite3_value_type(apVal[3+p->nColumn]) ){ 697 rc = sqlite3_bind_value(pContentInsert, 1, apVal[3+p->nColumn]); 755 for(i=1; i<=p->nColumn; i++){ 763 aSz[p->nColumn] += sqlite3_column_bytes(pSelect, i); [all...] |
fts3Int.h | 124 int nColumn; /* number of named columns in virtual table */
|
fts3.c | 530 for(i=1; zCols && i<p->nColumn; i++){ 567 for(i=0; zContentCols && i<p->nColumn; i++){ 763 for(i=0; i<p->nColumn; i++){ 802 for(i=0; i<p->nColumn; i++){ 946 p->nColumn = nCol; [all...] |
fts3_snippet.c | [all...] |
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
fts2.c | [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | [all...] |