Lines Matching refs:isPrefix
108554 int isPrefix; /* True if token ends with a "*" character */
110383 int isPrefix, /* True for a prefix search */
110394 rc = sqlite3Fts3SegReaderPending(p, zTerm, nTerm, isPrefix, &pReader);
110421 rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &i1, (isPrefix?&i2:0));
110422 if( isPrefix==0 ) i2 = i1;
110481 | (pTok->isPrefix ? FTS3_SEGMENT_PREFIX : 0)
110635 pCsr, pTok->z, pTok->n, pTok->isPrefix, &pTok->pArray
110873 pCsr, pTok->z, pTok->n, pTok->isPrefix, &pTok->pArray
112076 pRet->pPhrase->aToken[0].isPrefix = 1;
112158 p->pPhrase->aToken[ii].isPrefix = 1;
112160 p->pPhrase->aToken[ii].isPrefix = 0;
112711 (pPhrase->aToken[i].isPrefix?"+":"")
115819 int isPrefix, /* True for a term-prefix query */
115827 if( isPrefix ){
115881 if( isPrefix ){
116735 int isPrefix = (pFilter->flags & FTS3_SEGMENT_PREFIX);
116773 || (!isPrefix && nTerm>pFilter->nTerm)
116859 if( pFilter->zTerm && !isPrefix ){
117328 && (pPT->n==nToken || (pPT->isPrefix && pPT->n<nToken))