Lines Matching refs:nText

12496     const char *pText, int nText, /* Text to tokenize */
12728 const char *pText, int nText,
214546 const char *pText, int nText, /* Text to tokenize */
214778 const char *pText, int nText,
215091 const char *pText, int nText, /* Text to tokenize */
219043 const char *pText, int nText, /* Text to tokenize */
219049 pConfig->pTok, pCtx, flags, pText, nText, xToken
219593 i64 nText = strlen(zText);
219594 char *zExpr = (char*)sqlite3_malloc64(nText*4 + 1);
219615 while( i<=nText ){
219616 if( i==nText
219632 while( i<nText && zText[i]!=']' ) i++;
231555 const char *pText, int nText,
231562 pTab->pConfig, FTS5_TOKENIZE_AUX, pText, nText, pUserData, xToken
233086 int nText;
233091 nText = sqlite3_column_bytes(pSeek, iCol);
233094 nText = sqlite3_value_bytes(apVal[iCol-1]);
233100 zText, nText, (void*)&ctx, fts5StorageInsertCallback
233295 int nText = sqlite3_column_bytes(pScan, ctx.iCol+1);
233298 zText, nText,
233421 int nText = sqlite3_value_bytes(apVal[ctx.iCol+2]);
233424 zText, nText,
233599 int nText = sqlite3_column_bytes(pScan, i+1);
233602 zText, nText,
233957 const char *pText, int nText,
233972 while( is<nText && rc==SQLITE_OK ){
233976 while( is<nText && ((pText[is]&0x80)==0 && a[(int)pText[is]]==0) ){
233979 if( is==nText ) break;
233983 while( ie<nText && ((pText[ie]&0x80) || a[(int)pText[ie]] ) ){
234278 const char *pText, int nText,
234285 unsigned char *zTerm = (unsigned char*)&pText[nText];
235084 const char *pText, int nText,
235093 p->pTokenizer, (void*)&sCtx, flags, pText, nText, fts5PorterCb
235157 const char *pText, int nText,
235164 const unsigned char *zEof = &zIn[nText];