Searched refs:pTable (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvtab.c235 ** Add a new module argument to pTable->azModuleArg[].
240 static void addModuleArgument(sqlite3 *db, Table *pTable, char *zArg){ argument
241 int i = pTable->nModuleArg++;
242 int nBytes = sizeof(char *)*(1+pTable->nModuleArg);
244 azModuleArg = sqlite3DbRealloc(db, pTable->azModuleArg, nBytes);
248 sqlite3DbFree(db, pTable->azModuleArg[j]);
251 sqlite3DbFree(db, pTable->azModuleArg);
252 pTable->nModuleArg = 0;
257 pTable->azModuleArg = azModuleArg;
272 Table *pTable; /* Th local
[all...]
H A Dbuild.c384 if( pIndex->pTable->pIndex==pIndex ){
385 pIndex->pTable->pIndex = pIndex->pNext;
390 p = pIndex->pTable->pIndex;
486 static void sqliteDeleteColumnNames(sqlite3 *db, Table *pTable){ argument
489 assert( pTable!=0 );
490 if( (pCol = pTable->aCol)!=0 ){
491 for(i=0; i<pTable->nCol; i++, pCol++){
498 sqlite3DbFree(db, pTable->aCol);
511 void sqlite3DeleteTable(sqlite3 *db, Table *pTable){ argument
514 assert( !pTable || pTabl
735 Table *pTable; local
1746 sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable) argument
3177 sqlite3SrcListAppend( sqlite3 *db, SrcList *pList, Token *pTable, Token *pDatabase ) argument
3263 sqlite3SrcListAppendFromTerm( Parse *pParse, SrcList *p, Token *pTable, Token *pDatabase, Token *pAlias, Select *pSubquery, Expr *pOn, IdList *pUsing ) argument
[all...]
H A Danalyze.c470 analyzeTable(pParse, pIdx->pTable, pIdx);
485 analyzeTable(pParse, pIdx->pTable, pIdx);
519 Table *pTable; local
530 pTable = sqlite3FindTable(pInfo->db, argv[0], pInfo->zDatabase);
531 if( pTable==0 ){
547 if( i==0 ) pTable->nRowEst = v;
H A Dtrigger.c531 Table *pTable; local
538 pTable = tableOfTrigger(pTrigger);
539 assert( pTable );
540 assert( pTable->pSchema==pTrigger->pSchema || iDb==1 );
547 if( sqlite3AuthCheck(pParse, code, pTrigger->zName, pTable->zName, zDb) ||
556 assert( pTable!=0 );
H A Dwhere.c591 idxaff = pIdx->pTable->aCol[iColumn].affinity;
1473 if( iColumn==pIdx->pTable->iPKey ){
1747 Table *pTable; /* Table tht might be indexed */ local
1763 pTable = pSrc->pTab;
1764 nTableRow = pTable->nRowEst;
1813 Table *pTable; /* The table being indexed */ local
1835 pTable = pSrc->pTab;
1862 mxBitCol = (pTable->nCol >= BMS-1) ? BMS-1 : pTable->nCol;
1863 testcase( pTable
[all...]
H A Dinsert.c68 Table *pTab = pIdx->pTable;
1552 assert( pDest->pTable!=pSrc->pTable );
H A Ddelete.c615 int iCur, /* Cursor number for the pIdx->pTable table */
621 Table *pTab = pIdx->pTable;
H A Dfkey.c475 assert( !pIdx || pIdx->pTable==pTab );
H A Dpragma.c908 pTab = pIdx->pTable;
H A DsqliteInt.h1475 Table *pTable; /* The SQL table being indexed */ member in struct:Index
H A Dbtree.c159 iTab = pIdx->pTable->tnum;
/external/chromium_org/third_party/icu/source/common/
H A Ducnv_lmb.c450 const struct _UniLMBCSGrpMap * pTable = UniLMBCSGrpMap; local
452 while (uniChar > pTable->uniEndRange)
454 pTable++;
457 if (uniChar >= pTable->uniStartRange)
459 return pTable->GrpType;
540 const struct _LocaleLMBCSGrpMap *pTable = LocaleLMBCSGrpMap; local
547 while (pTable->LocaleID)
549 if (*pTable->LocaleID == *LocaleID) /* Check only first char for speed */
552 if (uprv_strncmp(pTable->LocaleID, LocaleID, strlen(pTable
[all...]
/external/icu4c/common/
H A Ducnv_lmb.c450 const struct _UniLMBCSGrpMap * pTable = UniLMBCSGrpMap; local
452 while (uniChar > pTable->uniEndRange)
454 pTable++;
457 if (uniChar >= pTable->uniStartRange)
459 return pTable->GrpType;
540 const struct _LocaleLMBCSGrpMap *pTable = LocaleLMBCSGrpMap; local
547 while (pTable->LocaleID)
549 if (*pTable->LocaleID == *LocaleID) /* Check only first char for speed */
552 if (uprv_strncmp(pTable->LocaleID, LocaleID, strlen(pTable
[all...]
/external/aac/libSBRdec/src/
H A Denv_extr.cpp893 const int *pTable; local
897 pTable = FDK_sbrDecoder_envelopeTable_8[tranPosInternal];
900 pTable = FDK_sbrDecoder_envelopeTable_15[tranPosInternal];
903 pTable = FDK_sbrDecoder_envelopeTable_16[tranPosInternal];
910 nEnv = pTable[0];
913 hSbrFrameInfo->borders[i] = pTable[i+2];
920 tranIdx = hSbrFrameInfo->tranEnv = pTable[1];
/external/aac/libSBRenc/src/
H A Dfram_gen.cpp699 const int *pTable = NULL; local
704 pTable = envelopeTable_8[tranPosInternal];
708 pTable = envelopeTable_15[tranPosInternal];
712 pTable = envelopeTable_16[tranPosInternal];
718 nEnv = pTable[0];
721 hSbrFrameInfo->borders[i] = pTable[i+2];
735 hSbrFrameInfo->shortEnv = pTable[2];
737 tranIdx = pTable[1];
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9835 Table *pTable; /* The SQL table being indexed */ member in struct:Index
76020 Table *pTable; local
77502 sqliteDeleteColumnNames(sqlite3 *db, Table *pTable) argument
77527 sqlite3DeleteTable(sqlite3 *db, Table *pTable) argument
77751 Table *pTable; local
78762 sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable) argument
80193 sqlite3SrcListAppend( sqlite3 *db, SrcList *pList, Token *pTable, Token *pDatabase ) argument
80279 sqlite3SrcListAppendFromTerm( Parse *pParse, SrcList *p, Token *pTable, Token *pDatabase, Token *pAlias, Select *pSubquery, Expr *pOn, IdList *pUsing ) argument
95324 Table *pTable; local
97159 addModuleArgument(sqlite3 *db, Table *pTable, char *zArg) argument
97191 Table *pTable; /* The new virtual table */ local
99608 Table *pTable; /* Table tht might be indexed */ local
99674 Table *pTable; /* The table being indexed */ local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c10375 Table *pTable; /* The SQL table being indexed */ member in struct:Index
80114 Table *pTable; local
81677 sqliteDeleteColumnNames(sqlite3 *db, Table *pTable) argument
81702 sqlite3DeleteTable(sqlite3 *db, Table *pTable) argument
81926 Table *pTable; local
82936 sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable) argument
84432 sqlite3SrcListAppend( sqlite3 *db, SrcList *pList, Token *pTable, Token *pDatabase ) argument
84518 sqlite3SrcListAppendFromTerm( Parse *pParse, SrcList *p, Token *pTable, Token *pDatabase, Token *pAlias, Select *pSubquery, Expr *pOn, IdList *pUsing ) argument
99857 Table *pTable; local
101715 addModuleArgument(sqlite3 *db, Table *pTable, char *zArg) argument
101748 Table *pTable; /* The new virtual table */ local
104468 Table *pTable; /* Table tht might be indexed */ local
104541 Table *pTable; /* The table being indexed */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10375 Table *pTable; /* The SQL table being indexed */ member in struct:Index
80150 Table *pTable; local
81713 sqliteDeleteColumnNames(sqlite3 *db, Table *pTable) argument
81738 sqlite3DeleteTable(sqlite3 *db, Table *pTable) argument
81962 Table *pTable; local
82972 sqlite3ViewGetColumnNames(Parse *pParse, Table *pTable) argument
84468 sqlite3SrcListAppend( sqlite3 *db, SrcList *pList, Token *pTable, Token *pDatabase ) argument
84554 sqlite3SrcListAppendFromTerm( Parse *pParse, SrcList *p, Token *pTable, Token *pDatabase, Token *pAlias, Select *pSubquery, Expr *pOn, IdList *pUsing ) argument
99893 Table *pTable; local
101751 addModuleArgument(sqlite3 *db, Table *pTable, char *zArg) argument
101784 Table *pTable; /* The new virtual table */ local
104504 Table *pTable; /* Table tht might be indexed */ local
104577 Table *pTable; /* The table being indexed */ local
[all...]

Completed in 710 milliseconds