Lines Matching refs:nText

13697     const char *pText, int nText, /* Text to tokenize */
13734 const char *pText, int nText, /* Text to tokenize */
13978 const char *pText, int nText,
14003 const char *pText, int nText,
235148 const char *pText, int nText, /* Text to tokenize */
235185 const char *pText, int nText, /* Text to tokenize */
235429 const char *pText, int nText,
235454 const char *pText, int nText,
235847 const char *pText, int nText, /* Text to tokenize */
240061 const char *pText, int nText, /* Text to tokenize */
240073 pConfig->t.pTok, pCtx, flags, pText, nText, xToken
240077 pText, nText, pConfig->t.pLocale, pConfig->t.nLocale, xToken
240752 i64 nText = strlen(zText);
240753 char *zExpr = (char*)sqlite3_malloc64(nText*4 + 1);
240774 while( i<=nText ){
240775 if( i==nText
240792 while( i<nText && zText[i]!=']' ) i++;
255105 int nText = 0;
255108 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
255109 *pzText = sqlite3Fts5Mprintf(&rc, "%.*s", nText, pText);
255878 const char *pText, int nText,
255889 FTS5_TOKENIZE_AUX, pText, nText, pUserData, xToken
255902 const char *pText, int nText,
255906 return fts5ApiTokenize_v2(pCtx, pText, nText, 0, 0, pUserData, xToken);
257046 const char *pText, int nText,
257051 return p->x2.xTokenize(p->pReal, pCtx, flags, pText, nText, 0, 0, xToken);
257061 const char *pText, int nText,
257068 return p->x1.xTokenize(p->pReal, pCtx, flags, pText, nText, xToken);
257335 int nText = 0;
257344 nText = sqlite3_value_bytes(apArg[1]);
257347 sqlite3_result_text(pCtx, zText, nText, SQLITE_TRANSIENT);
257354 nBlob = FTS5_LOCALE_HDR_SIZE + nLocale + 1 + nText;
257367 if( zText ) memcpy(pCsr, zText, nText);
257368 assert( &pCsr[nText]==&pBlob[nBlob] );
258127 int nText = 0;
258140 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
258153 nText = sqlite3_value_bytes(pVal);
258165 pText, nText, (void*)&ctx, fts5StorageInsertCallback
258446 int nText = 0; /* Size of pText in bytes */
258455 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
258458 nText = sqlite3_value_bytes(pVal);
258470 pText, nText,
258588 int nText = 0;
258592 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
258594 sqlite3_bind_text(pInsert, i, pText, nText, SQLITE_TRANSIENT);
258640 int nText = 0; /* Size of pText in bytes */
258658 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
258661 nText = sqlite3_value_bytes(pVal);
258667 FTS5_TOKENIZE_DOCUMENT, pText, nText, (void*)&ctx,
258837 int nText = 0;
258846 pVal, &pText, &nText, &pLoc, &nLoc
258855 nText = sqlite3_value_bytes(pVal);
258869 pText, nText,
259235 const char *pText, int nText,
259250 while( is<nText && rc==SQLITE_OK ){
259254 while( is<nText && ((pText[is]&0x80)==0 && a[(int)pText[is]]==0) ){
259257 if( is==nText ) break;
259261 while( ie<nText && ((pText[ie]&0x80) || a[(int)pText[ie]] ) ){
259560 const char *pText, int nText,
259567 unsigned char *zTerm = (unsigned char*)&pText[nText];
260368 const char *pText, int nText,
260378 p->pTokenizer, (void*)&sCtx, flags, pText, nText, pLoc, nLoc, fts5PorterCb
260461 const char *pText, int nText,
260470 const unsigned char *zEof = (zIn ? &zIn[nText] : 0);