HomeSort by relevance Sort by last modified time
    Searched refs:pList (Results 26 - 40 of 40) sorted by null

12

  /external/chromium_org/third_party/sqlite/src/src/
insert.c 341 ** The pList parameter holds EXPRLIST in the first form of the INSERT
342 ** statement above, and pSelect is NULL. For the second form, pList is
436 ExprList *pList, /* List of values to be inserted */
554 assert( pList==0 );
673 nColumn = pList ? pList->nExpr : 0;
675 if( sqlite3ResolveExprNames(&sNC, pList->a[i].pExpr) ){
826 sqlite3ExprCode(pParse, pList->a[keyColumn].pExpr, regCols);
849 if( (!useTempTable && !pList) || (pColumn && j>=pColumn->nId) ){
855 sqlite3ExprCodeAndCache(pParse, pList->a[j].pExpr, regCols+i+1)
    [all...]
parse.y 852 ExprList *pList;
853 pList = sqlite3ExprListAppend(pParse,0, Y.pExpr);
854 pList = sqlite3ExprListAppend(pParse,pList, X.pExpr);
855 A.pExpr = sqlite3ExprFunction(pParse, pList, &OP.eOperator);
862 ExprList *pList;
863 pList = sqlite3ExprListAppend(pParse,0, Y.pExpr);
864 pList = sqlite3ExprListAppend(pParse,pList, X.pExpr);
865 pList = sqlite3ExprListAppend(pParse,pList, E.pExpr)
    [all...]
test_journal.c 206 jt_file *pList; /* List of all open files */
211 ** Functions to obtain and relinquish a mutex to protect g.pList. The
257 for(pp=&g.pList; *pp!=p; pp=&(*pp)->pNext);
294 for(pMain=g.pList; pMain; pMain=pMain->pNext){
713 p->pNext = g.pList;
714 g.pList = p;
fkey.c     [all...]
resolve.c 306 assert( pExpr->x.pList==0 );
514 ExprList *pList = pExpr->x.pList; /* The argument list */
515 int n = pList ? pList->nExpr : 0; /* Number of arguments */
571 sqlite3WalkExprList(pWalker, pList);
    [all...]
wal.c     [all...]
btree.c     [all...]
sqliteInt.h     [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayApply.cpp 431 SkTDDrawableArray* pList, * gList;
433 int old = maker.fDisplayList.findGroup(scope, &pList, &pGroup, &found, &gList);
434 if (pList && old >= 0 && (*pList)[old]->isApply() && (*pList)[old] != this) {
437 SkDisplayable* oldChild = (*pList)[old];
443 (*pList)[old] = scope;
445 pList->remove(old);
  /external/skia/src/animator/
SkDisplayApply.cpp 431 SkTDDrawableArray* pList, * gList;
433 int old = maker.fDisplayList.findGroup(scope, &pList, &pGroup, &found, &gList);
434 if (pList && old >= 0 && (*pList)[old]->isApply() && (*pList)[old] != this) {
437 SkDisplayable* oldChild = (*pList)[old];
443 (*pList)[old] = scope;
445 pList->remove(old);
  /external/chromium_org/third_party/sqlite/src/ext/async/
sqlite3async.c 470 ** AsyncLock.pList points to the head of a linked list of AsyncFileLock
488 AsyncFileLock *pList;
819 for(pIter=pLock->pList; pIter; pIter=pIter->pNext){
871 assert(pLock && pLock->pList);
872 for(pIter=pLock->pList; pIter; pIter=pIter->pNext){
922 for(pIter=p->pLock->pList; pIter; pIter=pIter->pNext){
970 for(ppIter=&pLock->pList; *ppIter; ppIter=&((*ppIter)->pNext)){
976 if( !pLock->pList ){
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3.c     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 1218 milliseconds

12