Lines Matching refs:nText

13429     const char *pText, int nText, /* Text to tokenize */
13668 const char *pText, int nText,
231738 const char *pText, int nText, /* Text to tokenize */
231977 const char *pText, int nText,
232302 const char *pText, int nText, /* Text to tokenize */
236393 const char *pText, int nText, /* Text to tokenize */
236399 pConfig->pTok, pCtx, flags, pText, nText, xToken
237029 i64 nText = strlen(zText);
237030 char *zExpr = (char*)sqlite3_malloc64(nText*4 + 1);
237051 while( i<=nText ){
237052 if( i==nText
237069 while( i<nText && zText[i]!=']' ) i++;
251483 const char *pText, int nText,
251490 pTab->pConfig, FTS5_TOKENIZE_AUX, pText, nText, pUserData, xToken
253145 int nText;
253150 nText = sqlite3_column_bytes(pSeek, iCol);
253153 nText = sqlite3_value_bytes(apVal[iCol-1]);
253159 zText, nText, (void*)&ctx, fts5StorageInsertCallback
253400 int nText = sqlite3_column_bytes(pScan, ctx.iCol+1);
253403 zText, nText,
253526 int nText = sqlite3_value_bytes(apVal[ctx.iCol+2]);
253529 zText, nText,
253704 int nText = sqlite3_column_bytes(pScan, i+1);
253707 zText, nText,
254065 const char *pText, int nText,
254080 while( is<nText && rc==SQLITE_OK ){
254084 while( is<nText && ((pText[is]&0x80)==0 && a[(int)pText[is]]==0) ){
254087 if( is==nText ) break;
254091 while( ie<nText && ((pText[ie]&0x80) || a[(int)pText[ie]] ) ){
254392 const char *pText, int nText,
254399 unsigned char *zTerm = (unsigned char*)&pText[nText];
255198 const char *pText, int nText,
255207 p->pTokenizer, (void*)&sCtx, flags, pText, nText, fts5PorterCb
255285 const char *pText, int nText,
255294 const unsigned char *zEof = &zIn[nText];