HomeSort by relevance Sort by last modified time
    Searched defs:pLeft (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
rowset.c 83 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */
279 if( pIn->pLeft ){
281 rowSetTreeToList(pIn->pLeft, ppFirst, &p);
313 struct RowSetEntry *pLeft; /* Left subtree */
320 p->pLeft = p->pRight = 0;
323 pLeft = rowSetNDeepTree(ppList, iDepth-1);
326 return pLeft;
328 p->pLeft = pLeft;
341 struct RowSetEntry *pLeft; /* Left subtree *
    [all...]
fkey.c 490 Expr *pLeft; /* Value from parent table row */
492 Expr *pEq; /* Expression (pLeft = pRight) */
496 pLeft = sqlite3Expr(db, TK_REGISTER, 0);
497 if( pLeft ){
505 pLeft->iTable = regData+iCol+1;
506 pLeft->affinity = pCol->affinity;
507 pLeft->pColl = sqlite3LocateCollSeq(pParse, pCol->zColl);
509 pLeft->iTable = regData;
510 pLeft->affinity = SQLITE_AFF_INTEGER;
517 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0)
    [all...]
expr.c 118 p = p->pLeft;
163 assert( pExpr->pLeft );
164 aff = sqlite3ExprAffinity(pExpr->pLeft);
205 ** a binary comparison operator comparing pLeft and pRight.
212 ** Argument pRight (but not pLeft) may be a null pointer. In this case,
217 Expr *pLeft,
221 assert( pLeft );
222 if( pLeft->flags & EP_ExpCollate ){
223 assert( pLeft->pColl );
224 pColl = pLeft->pColl
    [all...]
select.c 301 setJoinExpr(p->pLeft, iTable);
323 struct SrcList_item *pLeft; /* Left table being joined */
327 pLeft = &pSrc->a[0];
328 pRight = &pLeft[1];
329 for(i=0; i<pSrc->nSrc-1; i++, pRight++, pLeft++){
330 Table *pLeftTab = pLeft->pTab;
    [all...]
where.c 386 whereSplit(pWC, pExpr->pLeft, op);
448 mask |= exprTableUsage(pMaskSet, p->pLeft);
518 u16 expLeft = (pExpr->pLeft->flags & EP_ExpCollate);
521 pExpr->pLeft->pColl = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
522 SWAP(CollSeq*,pExpr->pRight->pColl,pExpr->pLeft->pColl);
524 pExpr->pLeft->flags = (pExpr->pLeft->flags & ~EP_ExpCollate) | expRight;
525 SWAP(Expr*,pExpr->pRight,pExpr->pLeft);
598 assert(pX->pLeft);
    [all...]
sqliteInt.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3Int.h 251 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */
252 Fts3Expr *pLeft; /* Left operand */
fts3_snippet.c 148 assert( pExpr->pLeft && pExpr->pRight );
149 rc = fts3ExprIterate2(pExpr->pLeft, piPhrase, x, pCtx);
207 Fts3Expr *pLeft = pParent->pLeft;
209 if( pLeft->eType!=FTSQUERY_PHRASE ){
210 assert( pLeft->eType==FTSQUERY_NEAR );
211 assert( pLeft->pRight->eType==FTSQUERY_PHRASE );
212 pLeft = pLeft->pRight;
215 rc = sqlite3Fts3ExprNearTrim(pLeft, pExpr, nNear)
    [all...]
fts3.c     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxPainter.cpp 367 LayoutUnit pLeft = includeLeftEdge ? obj.paddingLeft() : LayoutUnit();
395 LayoutRect clipRect = LayoutRect(scrolledPaintRect.x() + bLeft + (includePadding ? pLeft : LayoutUnit()),
397 scrolledPaintRect.width() - bLeft - bRight - (includePadding ? pLeft + pRight : LayoutUnit()),
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1.c 673 ** pLeft and pRight are two DocListReaders that are pointing to
676 ** If there are no instances in pLeft or pRight where the position
677 ** of pLeft is one less than the position of pRight, then this
680 ** If there are one or more instances where positions from pLeft
684 ** position in pLeft. In other words: pRight.iPos==pLeft.iPos+1.
686 ** pLeft and pRight are left pointing at the next document record.
689 DocListReader *pLeft, /* Left position list */
691 sqlite_int64 iDocid, /* The docid from pLeft and pRight */
694 int iLeftCol, iLeftPos = readPosition(pLeft, &iLeftCol)
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 67 milliseconds