Searched refs:pRight (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
H A Drowset.c82 struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ member in struct:RowSetEntry
105 struct RowSetEntry *pEntry; /* List of entries using pRight */
185 pEntry->pRight = 0;
191 pLast->pRight = pEntry;
202 ** The input lists are connected via pRight pointers and are
214 assert( pA->pRight==0 || pA->v<=pA->pRight->v );
215 assert( pB->pRight==0 || pB->v<=pB->pRight->v );
217 pTail->pRight
[all...]
H A Dexpr.c165 if( pExpr->pRight ){
166 aff = sqlite3CompareAffinity(pExpr->pRight, aff);
205 ** a binary comparison operator comparing pLeft and pRight.
212 ** Argument pRight (but not pLeft) may be a null pointer. In this case,
218 Expr *pRight
225 }else if( pRight && pRight->flags & EP_ExpCollate ){
226 assert( pRight->pColl );
227 pColl = pRight->pColl;
231 pColl = sqlite3ExprCollSeq(pParse, pRight);
240 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
479 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
498 sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight) argument
2658 Expr *pRight = pLItem->pExpr; local
[all...]
H A Dwhere.c107 Bitmask prereqRight; /* Bitmask of tables used by pExpr->pRight */
387 whereSplit(pWC, pExpr->pRight, op);
447 mask = exprTableUsage(pMaskSet, p->pRight);
517 u16 expRight = (pExpr->pRight->flags & EP_ExpCollate);
520 pExpr->pRight->pColl = sqlite3ExprCollSeq(pParse, pExpr->pRight);
522 SWAP(CollSeq*,pExpr->pRight->pColl,pExpr->pLeft->pColl);
523 pExpr->pRight->flags = (pExpr->pRight->flags & ~EP_ExpCollate) | expLeft;
525 SWAP(Expr*,pExpr->pRight,pExp
648 Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ local
1146 Expr *pRight = pExpr->pRight; local
1306 Expr *pRight, *pLeft; local
3414 Expr *pRight = pTerm->pExpr->pRight; local
3912 Expr *pRight = pRangeStart->pExpr->pRight; local
3952 Expr *pRight = pRangeEnd->pExpr->pRight; local
[all...]
H A Dresolve.c116 ** pExpr->pRight Any expression this points to is deleted.
305 assert( pExpr->pLeft==0 && pExpr->pRight==0 );
384 sqlite3ExprDelete(db, pExpr->pRight);
385 pExpr->pRight = 0;
493 Expr *pRight; local
496 pRight = pExpr->pRight;
497 if( pRight->op==TK_ID ){
500 zColumn = pRight->u.zToken;
502 assert( pRight
[all...]
H A Dselect.c302 p = p->pRight;
324 struct SrcList_item *pRight; /* Right table being joined */ local
328 pRight = &pLeft[1];
329 for(i=0; i<pSrc->nSrc-1; i++, pRight++, pLeft++){
331 Table *pRightTab = pRight->pTab;
335 isOuter = (pRight->jointype & JT_OUTER)!=0;
340 if( pRight->jointype & JT_NATURAL ){
341 if( pRight->pOn || pRight->pUsing ){
361 if( pRight
3308 Expr *pExpr, *pRight; local
3830 Select *pLoop, *pRight = 0; local
[all...]
H A Dwalker.c48 if( sqlite3WalkExpr(pWalker, pExpr->pRight) ) return WRC_Abort;
H A Dfkey.c491 Expr *pRight; /* Column ref to child table */ local
492 Expr *pEq; /* Expression (pLeft = pRight) */
516 pRight = sqlite3Expr(db, TK_ID, zCol);
517 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0);
526 Expr *pEq; /* Expression (pLeft = pRight) */
528 Expr *pRight; /* Column ref to child table */ local
530 pRight = sqlite3Expr(db, TK_COLUMN, 0);
531 if( pLeft && pRight ){
534 pRight->iTable = pSrc->a[0].iCursor;
535 pRight
[all...]
H A Dparse.y457 Expr *pRight = sqlite3PExpr(pParse, TK_ALL, 0, 0, &Y);
459 Expr *pDot = sqlite3PExpr(pParse, TK_DOT, pLeft, pRight, 0);
826 ExprSpan *pRight /* The right operand */
828 pOut->pExpr = sqlite3PExpr(pParse, op, pLeft->pExpr, pRight->pExpr, 0);
830 pOut->zEnd = pRight->zEnd;
899 sqlite3ExprDelete(db, pA->pRight);
900 pA->pRight = 0;
H A Dattach.c501 if( sqlite3FixExpr(pFix, pExpr->pRight) ){
H A Dbtree.c5851 u8 *pRight; /* Location in parent of right-sibling pointer */ local
5907 pRight = &pParent->aData[pParent->hdrOffset+8];
5909 pRight = findCell(pParent, i+nxDiv-pParent->nOverflow);
5911 pgno = get4byte(pRight);
6204 put4byte(pRight, apNew[nNew-1]->pgno);
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
1652 Expr *pRight; /* Right subnode */ member in struct:Expr
/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 ...
/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
681 ** are exactly one less than positions from pRight, then add a new
683 ** include the positions from pRight that are one more than a
684 ** position in pLeft. In other words: pRight.iPos==pLeft.iPos+1.
686 ** pLeft and pRight are left pointing at the next document record.
690 DocListReader *pRight, /* Right position list */
691 sqlite_int64 iDocid, /* The docid from pLeft and pRight */
695 int iRightCol, iRightPos = readPosition(pRight,
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
2785 DocList *pRight, *pNew, *pOr; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_expr.c520 assert( pSplit->pParent->pRight==pSplit );
521 pSplit->pParent->pRight = pNew;
572 pNot->pRight = p;
629 assert( pPrev && pPrev->pLeft && pPrev->pRight==0 );
630 pPrev->pRight = p;
744 sqlite3Fts3ExprFree(p->pRight);
831 if( zBuf ) zBuf = exprToString(pExpr->pRight, zBuf);
H A Dfts3.c2337 rc = fts3DeferExpression(pCsr, pExpr->pRight);
2587 ** Both pLeft and pRight are expression nodes of type FTSQUERY_PHRASE. Both
2593 int sqlite3Fts3ExprNearTrim(Fts3Expr *pLeft, Fts3Expr *pRight, int nNear){ argument
2597 assert( pRight->eType==FTSQUERY_PHRASE );
2598 assert( pLeft->isLoaded && pRight->isLoaded );
2600 if( pLeft->aDoclist==0 || pRight->aDoclist==0 ){
2602 sqlite3_free(pRight->aDoclist);
2603 pRight->aDoclist = 0;
2612 pRight->pPhrase->nToken, pRight
2886 Fts3Expr *pRight; local
[all...]
H A Dfts3Int.h251 Fts3Expr *pParent; /* pParent->pLeft==this or pParent->pRight==this */
253 Fts3Expr *pRight; /* Right operand */ member in struct:Fts3Expr
H A Dfts3_snippet.c148 assert( pExpr->pLeft && pExpr->pRight );
151 rc = fts3ExprIterate2(pExpr->pRight, piPhrase, x, pCtx);
201 && pParent->pRight==pExpr
211 assert( pLeft->pRight->eType==FTSQUERY_PHRASE );
212 pLeft = pLeft->pRight;
H A Dfts3_write.c151 SegmentNode *pRight; /* Pointer to right-sibling */ member in struct:SegmentNode
1592 pTree->pRight = pNew;
1658 for(pIter=pTree->pLeftmost; pIter && rc==SQLITE_OK; pIter=pIter->pRight){
1685 SegmentNode *pRight = p->pRight; local
1689 assert( pRight==0 || p->zMalloc==0 );
1692 p = pRight;
2498 fts3DeferredDoclistClear(pExpr->pRight);
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c1994 RtreeNode *pRight,
2075 RtreeNode *pTarget = (ii<iBestSplit)?pLeft:pRight;
2096 RtreeNode *pRight,
2116 nodeInsertCell(pRtree, pRight, &aCell[iRightSeed]);
2127 if( (RTREE_MINCELLS(pRtree)-NCELL(pRight)==i)
2130 nodeInsertCell(pRtree, pRight, pNext);
2177 RtreeNode *pRight = 0; local
2200 pRight = nodeNew(pRtree, pNode);
2207 pRight = nodeNew(pRtree, pLeft->pParent);
2211 if( !pLeft || !pRight ){
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 );
1378 if( plrAtEnd(pLeft) ) return plrAtEnd(pRight) ? 0 : 1;
1379 if( plrAtEnd(pRight) ) return -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;
1388 if( plrStartOffset(pLeft)<plrStartOffset(pRight) ) return -1;
1389 if( plrStartOffset(pLeft)>plrStartOffset(pRight) ) retur
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
9997 Expr *pRight; /* Right subnode */ member in struct:Expr
35967 struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ member in struct:RowSetEntry
52970 u8 *pRight; /* Location in parent of right-sibling pointer */ local
70024 Expr *pRight; local
70977 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
71216 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
71235 sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight) argument
73395 Expr *pRight = pLItem->pExpr; local
83783 Expr *pRight; /* Column ref to child table */ local
83820 Expr *pRight; /* Column ref to child table */ local
90246 struct SrcList_item *pRight; /* Right table being joined */ local
93230 Expr *pExpr, *pRight; local
93752 Select *pLoop, *pRight = 0; local
98302 Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ local
98800 Expr *pRight = pExpr->pRight; local
98960 Expr *pRight, *pLeft; local
101068 Expr *pRight = pTerm->pExpr->pRight; local
101566 Expr *pRight = pRangeStart->pExpr->pRight; local
101606 Expr *pRight = pRangeEnd->pExpr->pRight; local
105051 Expr *pRight = sqlite3PExpr(pParse, TK_ALL, 0, 0, &yymsp[0].minor.yy0); local
113233 Fts3Expr *pRight; /* Right operand */ member in struct:Fts3Expr
115654 sqlite3Fts3ExprNearTrim(Fts3Expr *pLeft, Fts3Expr *pRight, int nNear) argument
115947 Fts3Expr *pRight; local
120068 SegmentNode *pRight; /* Pointer to right-sibling */ member in struct:SegmentNode
121602 SegmentNode *pRight = p->pRight; 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
126445 RtreeNode *pRight = 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
11364 Expr *pRight; /* Right subnode */ member in struct:Expr
39683 struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ member in struct:RowSetEntry
57675 u8 *pRight; /* Location in parent of right-sibling pointer */ local
77422 Expr *pRight; local
78502 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
78736 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
78792 sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight) argument
81137 Expr *pRight = pLItem->pExpr; local
93991 Expr *pRight; /* Column ref to child table */ local
94020 Expr *pRight; /* Column ref to child table */ local
101814 struct SrcList_item *pRight; /* Right table being joined */ local
105397 Expr *pE, *pRight, *pExpr; local
111538 Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ local
112037 Expr *pRight = sqlite3ExprSkipCollate(pExpr->pRight); local
112210 Expr *pRight, *pLeft; local
113581 Expr *pRight = pTerm->pExpr->pRight; local
114143 Expr *pRight = pRangeStart->pExpr->pRight; local
114187 Expr *pRight = pRangeEnd->pExpr->pRight; local
119889 Select *pRight = sqlite3SelectNew(pParse,yymsp[-1].minor.yy14,0,0,0,0,0,SF_Values,0,0); local
119932 Expr *pRight = sqlite3PExpr(pParse, TK_ALL, 0, 0, &yymsp[0].minor.yy0); local
126940 Fts3Expr *pRight; /* Right operand */ member in struct:Fts3Expr
130775 char *pRight; local
131825 Fts3Expr *pRight = pExpr->pRight; local
131861 Fts3Expr *pRight = pExpr->pRight; local
131889 Fts3Expr *pRight = pExpr->pRight; local
136918 SegmentNode *pRight; /* Pointer to right-sibling */ member in struct:SegmentNode
138863 SegmentNode *pRight = p->pRight; local
146741 splitNodeStartree( Rtree *pRtree, RtreeCell *aCell, int nCell, RtreeNode *pLeft, RtreeNode *pRight, RtreeCell *pBboxLeft, RtreeCell *pBboxRight ) argument
146873 RtreeNode *pRight = 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
11364 Expr *pRight; /* Right subnode */ member in struct:Expr
39703 struct RowSetEntry *pRight; /* Right subtree (larger entries) or list */ member in struct:RowSetEntry
57695 u8 *pRight; /* Location in parent of right-sibling pointer */ local
77442 Expr *pRight; local
78522 codeCompare( Parse *pParse, Expr *pLeft, Expr *pRight, int opcode, int in1, int in2, int dest, int jumpIfNull ) argument
78756 sqlite3PExpr( Parse *pParse, int op, Expr *pLeft, Expr *pRight, const Token *pToken ) argument
78812 sqlite3ExprAnd(sqlite3 *db, Expr *pLeft, Expr *pRight) argument
81157 Expr *pRight = pLItem->pExpr; local
94011 Expr *pRight; /* Column ref to child table */ local
94040 Expr *pRight; /* Column ref to child table */ local
101834 struct SrcList_item *pRight; /* Right table being joined */ local
105417 Expr *pE, *pRight, *pExpr; local
111558 Expr *pRight, *pLeft; /* Right and left size of LIKE operator */ local
112057 Expr *pRight = sqlite3ExprSkipCollate(pExpr->pRight); local
112230 Expr *pRight, *pLeft; local
113601 Expr *pRight = pTerm->pExpr->pRight; local
114163 Expr *pRight = pRangeStart->pExpr->pRight; local
114207 Expr *pRight = pRangeEnd->pExpr->pRight; local
119909 Select *pRight = sqlite3SelectNew(pParse,yymsp[-1].minor.yy14,0,0,0,0,0,SF_Values,0,0); local
119952 Expr *pRight = sqlite3PExpr(pParse, TK_ALL, 0, 0, &yymsp[0].minor.yy0); local
126960 Fts3Expr *pRight; /* Right operand */ member in struct:Fts3Expr
130807 char *pRight; local
131857 Fts3Expr *pRight = pExpr->pRight; local
131893 Fts3Expr *pRight = pExpr->pRight; local
131921 Fts3Expr *pRight = pExpr->pRight; local
136950 SegmentNode *pRight; /* Pointer to right-sibling */ member in struct:SegmentNode
138895 SegmentNode *pRight = p->pRight; local
146773 splitNodeStartree( Rtree *pRtree, RtreeCell *aCell, int nCell, RtreeNode *pLeft, RtreeNode *pRight, RtreeCell *pBboxLeft, RtreeCell *pBboxRight ) argument
146905 RtreeNode *pRight = 0; local
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/
H A Dprototype-1.7.js3465 pRight = this.get('padding-right');
3469 return bWidth - bLeft - bRight - pLeft - pRight;
3483 pRight = this.get('padding-right');
3485 return width + pLeft + pRight;
/external/chromium_org/remoting/tools/winext/manifest/
H A Drdp.h759 HRESULT GetRemoteMonitorsBoundingBox(/*[out]*/ long* pLeft, /*[out]*/ long* pTop, /*[out]*/ long* pRight, /*[out]*/ long* pBottom);

Completed in 8069 milliseconds

12