Home | History | Annotate | Download | only in fts1

Lines Matching refs:zDoc

2209 ** document zDoc[0..nDoc-1] which is stored in column iColumn.
2215 const char *zDoc,
2242 rc = pTModule->xOpen(pTokenizer, zDoc, nDoc, &pTCursor);
2303 const char *zDoc;
2305 zDoc = (const char*)sqlite3_column_text(p->pStmt, i+1);
2307 snippetOffsetsOfColumn(&p->q, &p->snippet, i, zDoc, nDoc);
2335 ** zDoc[0..nDoc-1] is phrase of text. aMatch[0..nMatch-1] are a set
2336 ** of matching words some of which might be in zDoc. zDoc is column
2339 ** iBreak is suggested spot in zDoc where we could begin or end an
2345 const char *zDoc, /* Document text */
2346 int nDoc, /* Number of bytes in zDoc[] */
2349 int iCol /* The column number for zDoc[] */
2369 if( safe_isspace(zDoc[iBreak-i]) ){
2372 if( safe_isspace(zDoc[iBreak+i]) ){
2424 const char *zDoc;
2457 zDoc = (const char*)sqlite3_column_text(pCursor->pStmt, iCol+1);
2460 iStart = wordBoundary(iStart, zDoc, nDoc, aMatch, nMatch, iCol);
2474 iEnd = wordBoundary(iEnd, zDoc, nDoc, aMatch, nMatch, iCol);
2489 nappend(&sb, &zDoc[iStart], aMatch[iMatch].iStart - iStart);
2492 nappend(&sb, &zDoc[iStart], aMatch[iMatch].nByte);
2503 nappend(&sb, &zDoc[iStart], iEnd - iStart);