Searched defs:pLeft (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Drowset.c83 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ member in struct:RowSetEntry
279 if( pIn->pLeft ){
281 rowSetTreeToList(pIn->pLeft, ppFirst, &p);
313 struct RowSetEntry *pLeft; /* Left subtree */ local
320 p->pLeft = p->pRight = 0;
323 pLeft = rowSetNDeepTree(ppList, iDepth-1);
326 return pLeft;
328 p->pLeft = pLeft;
341 struct RowSetEntry *pLeft; /* Lef local
[all...]
H A Dfkey.c490 Expr *pLeft; /* Value from parent table row */ local
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, pRigh
527 Expr *pLeft; /* Value from parent table row */ local
[all...]
H A Dexpr.c118 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
215 sqlite3BinaryCompareCollSeq( Parse *pParse, Expr *pLeft, Expr *pRight ) argument
240 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
443 sqlite3ExprAttachSubtrees( sqlite3 *db, Expr *pRoot, Expr *pLeft, Expr *pRight ) argument
479 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
498 sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight) argument
1615 Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ local
2469 Expr *pLeft = pExpr->pLeft; local
2656 Expr *pLeft = pExpr->pLeft; local
[all...]
H A Dselect.c301 setJoinExpr(p->pLeft, iTable);
323 struct SrcList_item *pLeft; /* Left table being joined */ local
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;
2504 assert( pExpr->pLeft==0 && pExpr->pRight==0 );
2513 pExpr->pLeft = substExpr(db, pExpr->pLeft, iTable, pEList);
3255 assert( pE->op!=TK_DOT || (pE->pLeft!
3341 Expr *pLeft; local
[all...]
H A Dwhere.c386 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);
648 Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ local
1041 Expr *pLeft = 0; /* The LHS of the IN operator */ local
1145 Expr *pLeft = pExpr->pLeft; local
1247 Expr *pLeft; /* LHS of LIKE/GLOB operator */ local
1306 Expr *pRight, *pLeft; local
1350 Expr *pLeft = pExpr->pLeft; local
[all...]
H A DsqliteInt.h1590 ** Expr.pRight and Expr.pLeft are the left and right subexpressions of a
1632 ** the child Expr objects in the Expr.pLeft and Expr.pRight subtrees
1651 Expr *pLeft; /* Left subnode */ member in struct:Expr
1734 #define EXPR_TOKENONLYSIZE offsetof(Expr,pLeft) /* Fewer features */
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3Int.h251 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */
252 Fts3Expr *pLeft; /* Left operand */ member in struct:Fts3Expr
H A Dfts3_snippet.c148 assert( pExpr->pLeft && pExpr->pRight );
149 rc = fts3ExprIterate2(pExpr->pLeft, piPhrase, x, pCtx);
207 Fts3Expr *pLeft = pParent->pLeft; local
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, pExp
[all...]
H A Dfts3.c2335 rc = fts3DeferExpression(pCsr, pExpr->pLeft);
2587 ** Both pLeft and pRight are expression nodes of type FTSQUERY_PHRASE. Both
2593 int sqlite3Fts3ExprNearTrim(Fts3Expr *pLeft, Fts3Expr *pRight, int nNear){ argument
2596 assert( pLeft->eType==FTSQUERY_PHRASE );
2598 assert( pLeft->isLoaded && pRight->isLoaded );
2600 if( pLeft->aDoclist==0 || pRight->aDoclist==0 ){
2601 sqlite3_free(pLeft->aDoclist);
2604 pLeft->aDoclist = 0;
2611 pLeft->pPhrase->nToken, pLeft
2885 Fts3Expr *pLeft; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxPainter.cpp367 LayoutUnit pLeft = includeLeftEdge ? obj.paddingLeft() : LayoutUnit(); local
395 LayoutRect clipRect = LayoutRect(scrolledPaintRect.x() + bLeft + (includePadding ? pLeft : LayoutUnit()),
397 scrolledPaintRect.width() - bLeft - bRight - (includePadding ? pLeft + pRight : LayoutUnit()),
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfts1.c673 ** 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,
688 mergePosList( DocListReader *pLeft, DocListReader *pRight, sqlite_int64 iDocid, DocList *pOut ) argument
730 docListPhraseMerge( DocList *pLeft, DocList *pRight, DocList *pOut ) argument
762 docListAndMerge( DocList *pLeft, DocList *pRight, DocList *pOut ) argument
796 docListOrMerge( DocList *pLeft, DocList *pRight, DocList *pOut ) argument
841 docListExceptMerge( DocList *pLeft, DocList *pRight, DocList *pOut ) argument
2593 DocList *pLeft, *pRight, *pNew; local
2784 DocList *pLeft = NULL; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1993 RtreeNode *pLeft,
2075 RtreeNode *pTarget = (ii<iBestSplit)?pLeft:pRight;
2095 RtreeNode *pLeft,
2115 nodeInsertCell(pRtree, pLeft, &aCell[iLeftSeed]);
2128 || (diff>0.0 && (RTREE_MINCELLS(pRtree)-NCELL(pLeft)!=i))
2133 nodeInsertCell(pRtree, pLeft, pNext);
2176 RtreeNode *pLeft = 0; local
2183 ** all cells from node pLeft. Then zero the original node.
2201 pLeft = nodeNew(pRtree, pNode);
2206 pLeft
1989 splitNodeStartree( Rtree *pRtree, RtreeCell *aCell, int nCell, RtreeNode *pLeft, RtreeNode *pRight, RtreeCell *pBboxLeft, RtreeCell *pBboxRight ) argument
2091 splitNodeGuttman( Rtree *pRtree, RtreeCell *aCell, int nCell, RtreeNode *pLeft, RtreeNode *pRight, RtreeCell *pBboxLeft, RtreeCell *pBboxRight ) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2.c1374 static int posListCmp(PLReader *pLeft, PLReader *pRight){ argument
1375 assert( pLeft->iType==pRight->iType );
1376 if( pLeft->iType==DL_DOCIDS ) return 0;
1378 if( plrAtEnd(pLeft) ) return plrAtEnd(pRight) ? 0 : 1;
1381 if( plrColumn(pLeft)<plrColumn(pRight) ) return -1;
1382 if( plrColumn(pLeft)>plrColumn(pRight) ) return 1;
1384 if( plrPosition(pLeft)<plrPosition(pRight) ) return -1;
1385 if( plrPosition(pLeft)>plrPosition(pRight) ) return 1;
1386 if( pLeft->iType==DL_POSITIONS ) return 0;
1388 if( plrStartOffset(pLeft)<plrStartOffse
1402 posListUnion(DLReader *pLeft, DLReader *pRight, DLWriter *pOut) argument
1450 docListUnion( const char *pLeft, int nLeft, const char *pRight, int nRight, DataBuffer *pOut ) argument
1526 posListPhraseMerge(DLReader *pLeft, DLReader *pRight, DLWriter *pOut) argument
1589 docListPhraseMerge( const char *pLeft, int nLeft, const char *pRight, int nRight, DocListType iType, DataBuffer *pOut ) argument
1639 docListAndMerge( const char *pLeft, int nLeft, const char *pRight, int nRight, DataBuffer *pOut ) argument
1685 docListOrMerge( const char *pLeft, int nLeft, const char *pRight, int nRight, DataBuffer *pOut ) argument
1748 docListExceptMerge( const char *pLeft, int nLeft, const char *pRight, int nRight, DataBuffer *pOut ) argument
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9935 ** Expr.pRight and Expr.pLeft are the left and right subexpressions of a
9977 ** the child Expr objects in the Expr.pLeft and Expr.pRight subtrees
9996 Expr *pLeft; /* Left subnode */ member in struct:Expr
10079 #define EXPR_TOKENONLYSIZE offsetof(Expr,pLeft) /* Fewer features */
35968 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ member in struct:RowSetEntry
36198 struct RowSetEntry *pLeft; /* Left subtree */ local
36226 struct RowSetEntry *pLeft; /* Left subtree */ local
70952 sqlite3BinaryCompareCollSeq( Parse *pParse, Expr *pLeft, Expr *pRight ) argument
70977 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
71180 sqlite3ExprAttachSubtrees( sqlite3 *db, Expr *pRoot, Expr *pLeft, Expr *pRight ) argument
71216 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
71235 sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight) argument
72352 Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ local
73206 Expr *pLeft = pExpr->pLeft; local
73393 Expr *pLeft = pExpr->pLeft; local
83782 Expr *pLeft; /* Value from parent table row */ local
83819 Expr *pLeft; /* Value from parent table row */ local
90245 struct SrcList_item *pLeft; /* Left table being joined */ local
93263 Expr *pLeft; local
98302 Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ local
98695 Expr *pLeft = 0; /* The LHS of the IN operator */ local
98799 Expr *pLeft = pExpr->pLeft; local
98901 Expr *pLeft; /* LHS of LIKE/GLOB operator */ local
98960 Expr *pRight, *pLeft; local
99004 Expr *pLeft = pExpr->pLeft; local
102724 spanBinaryExpr( ExprSpan *pOut, Parse *pParse, int op, ExprSpan *pLeft, ExprSpan *pRight ) argument
105052 Expr *pLeft = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[-2].minor.yy0); local
113232 Fts3Expr *pLeft; /* Left operand */ member in struct:Fts3Expr
115654 sqlite3Fts3ExprNearTrim(Fts3Expr *pLeft, Fts3Expr *pRight, int nNear) argument
115946 Fts3Expr *pLeft; local
122851 Fts3Expr *pLeft = pParent->pLeft; local
126257 splitNodeStartree( Rtree *pRtree, RtreeCell *aCell, int nCell, RtreeNode *pLeft, RtreeNode *pRight, RtreeCell *pBboxLeft, RtreeCell *pBboxRight ) argument
126359 splitNodeGuttman( Rtree *pRtree, RtreeCell *aCell, int nCell, RtreeNode *pLeft, RtreeNode *pRight, RtreeCell *pBboxLeft, RtreeCell *pBboxRight ) argument
126444 RtreeNode *pLeft = 0; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11302 ** Expr.pRight and Expr.pLeft are the left and right subexpressions of a
11344 ** the child Expr objects in the Expr.pLeft and Expr.pRight subtrees
11363 Expr *pLeft; /* Left subnode */ member in struct:Expr
11443 #define EXPR_TOKENONLYSIZE offsetof(Expr,pLeft) /* Fewer features */
39684 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ member in struct:RowSetEntry
39933 struct RowSetEntry *pLeft; /* Left subtree */ local
39961 struct RowSetEntry *pLeft; /* Left subtree */ local
78479 sqlite3BinaryCompareCollSeq( Parse *pParse, Expr *pLeft, Expr *pRight ) argument
78502 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
78706 sqlite3ExprAttachSubtrees( sqlite3 *db, Expr *pRoot, Expr *pLeft, Expr *pRight ) argument
78736 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
78792 sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight) argument
80004 Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ local
80915 Expr *pLeft = pExpr->pLeft; local
81135 Expr *pLeft = pExpr->pLeft; local
93990 Expr *pLeft; /* Value from parent table row */ local
94019 Expr *pLeft; /* Value from parent table row */ local
101813 struct SrcList_item *pLeft; /* Left table being joined */ local
105256 Select *pLeft; /* Left-most SELECT statement */ local
105609 Expr *pLeft; local
111538 Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ local
111931 Expr *pLeft = 0; /* The LHS of the IN operator */ local
112036 Expr *pLeft = sqlite3ExprSkipCollate(pExpr->pLeft); local
112148 Expr *pLeft; /* LHS of LIKE/GLOB operator */ local
112210 Expr *pRight, *pLeft; local
112255 Expr *pLeft = pExpr->pLeft; local
117532 spanBinaryExpr( ExprSpan *pOut, Parse *pParse, int op, ExprSpan *pLeft, ExprSpan *pRight ) argument
119933 Expr *pLeft = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[-2].minor.yy0); local
126939 Fts3Expr *pLeft; /* Left operand */ member in struct:Fts3Expr
130774 char *pLeft; local
131824 Fts3Expr *pLeft = pExpr->pLeft; local
131860 Fts3Expr *pLeft = pExpr->pLeft; local
131888 Fts3Expr *pLeft = pExpr->pLeft; local
146741 splitNodeStartree( Rtree *pRtree, RtreeCell *aCell, int nCell, RtreeNode *pLeft, RtreeNode *pRight, RtreeCell *pBboxLeft, RtreeCell *pBboxRight ) argument
146872 RtreeNode *pLeft = 0; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11302 ** Expr.pRight and Expr.pLeft are the left and right subexpressions of a
11344 ** the child Expr objects in the Expr.pLeft and Expr.pRight subtrees
11363 Expr *pLeft; /* Left subnode */ member in struct:Expr
11443 #define EXPR_TOKENONLYSIZE offsetof(Expr,pLeft) /* Fewer features */
39704 struct RowSetEntry *pLeft; /* Left subtree (smaller entries) */ member in struct:RowSetEntry
39953 struct RowSetEntry *pLeft; /* Left subtree */ local
39981 struct RowSetEntry *pLeft; /* Left subtree */ local
78499 sqlite3BinaryCompareCollSeq( Parse *pParse, Expr *pLeft, Expr *pRight ) argument
78522 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
78726 sqlite3ExprAttachSubtrees( sqlite3 *db, Expr *pRoot, Expr *pLeft, Expr *pRight ) argument
78756 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
78812 sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight) argument
80024 Expr *pLeft = pExpr->pLeft; /* the LHS of the IN operator */ local
80935 Expr *pLeft = pExpr->pLeft; local
81155 Expr *pLeft = pExpr->pLeft; local
94010 Expr *pLeft; /* Value from parent table row */ local
94039 Expr *pLeft; /* Value from parent table row */ local
101833 struct SrcList_item *pLeft; /* Left table being joined */ local
105276 Select *pLeft; /* Left-most SELECT statement */ local
105629 Expr *pLeft; local
111558 Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ local
111951 Expr *pLeft = 0; /* The LHS of the IN operator */ local
112056 Expr *pLeft = sqlite3ExprSkipCollate(pExpr->pLeft); local
112168 Expr *pLeft; /* LHS of LIKE/GLOB operator */ local
112230 Expr *pRight, *pLeft; local
112275 Expr *pLeft = pExpr->pLeft; local
117552 spanBinaryExpr( ExprSpan *pOut, Parse *pParse, int op, ExprSpan *pLeft, ExprSpan *pRight ) argument
119953 Expr *pLeft = sqlite3PExpr(pParse, TK_ID, 0, 0, &yymsp[-2].minor.yy0); local
126959 Fts3Expr *pLeft; /* Left operand */ member in struct:Fts3Expr
130806 char *pLeft; local
131856 Fts3Expr *pLeft = pExpr->pLeft; local
131892 Fts3Expr *pLeft = pExpr->pLeft; local
131920 Fts3Expr *pLeft = pExpr->pLeft; local
146773 splitNodeStartree( Rtree *pRtree, RtreeCell *aCell, int nCell, RtreeNode *pLeft, RtreeNode *pRight, RtreeCell *pBboxLeft, RtreeCell *pBboxRight ) argument
146904 RtreeNode *pLeft = 0; local
[all...]

Completed in 570 milliseconds