Lines Matching refs:xNext

5337   int (*xNext)(sqlite3_vtab_cursor*);
5401 ** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in
5525 ** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods
66565 ** are queried from within xNext() and other v-table methods using
69496 assert( u.cn.pModule->xNext );
69498 /* Invoke the xNext() method of the module. There is no way for the
69500 ** xNext(). Instead, if an error occurs, true is returned (indicating that
69505 rc = u.cn.pModule->xNext(u.cn.pCur->pVtabCursor);
113889 ** to xNext() or xClose().
113895 int (*xNext)(
117379 /* xNext */ fts3NextMethod,
118665 ** This function is called as the second part of each xNext operation when
119298 ** xNext - Advance the cursor to the next row, if any.
119515 fts3auxNextMethod, /* xNext */
119701 rc = pModule->xNext(pCursor, &zToken, &nToken, &iStart, &iEnd, &iPosition);
119803 rc = pModule->xNext(pCursor, &zByte, &nByte, &iBegin, &iEnd, &iPos);
121831 while( SQLITE_OK==p->xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos) ){
122301 ** win (reduced IO and CPU) if SQLite stops calling the virtual table xNext()
122908 int (*xNext)(sqlite3_tokenizer_cursor *pCursor,
122927 xNext = pModule->xNext;
122929 && SQLITE_OK==(rc = xNext(pCsr, &zToken, &nToken, &iStart, &iEnd, &iPos))
125266 rc = pModule->xNext(pTC, &zToken, &nToken, &iDum1, &iDum2, &iPos);
126105 rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &DUMMY2, &DUMMY3, &iCurrent);
126173 rc = pMod->xNext(pC, &ZDUMMY, &DUMMY1, &iBegin, &iFin, &iCurrent);
126856 const char *ZDUMMY; /* Dummy argument used with xNext() */
126857 int NDUMMY; /* Dummy argument used with xNext() */
126925 rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent);
126950 rc = pMod->xNext(pC, &ZDUMMY, &NDUMMY, &iStart, &iEnd, &iCurrent);
128111 ** Rtree virtual table module xNext method.
128119 ** already at EOF. It is against the rules to call the xNext() method of
129890 rtreeNext, /* xNext - advance a cursor */
131057 icuNext, /* xNext */