HomeSort by relevance Sort by last modified time
    Searched refs:zTerm (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/sqlite/src/test/
fts3_common.tcl 34 # set C($iDocid,$iCol,$iPosition) $zTerm
48 foreach zTerm [array names A] {
49 foreach doclist $A($zTerm) {
61 if {[info exists D($zTerm,$docid)]} {
65 set D($zTerm,$docid) 1
76 set C($docid,$iCol,$iPos) $zTerm
234 set zTerm [string range $zPrev 0 [expr $nPrefix-1]]
235 append zTerm [gobble_string blob $nSuffix]
238 lappend terms $zTerm $doclist
239 set zPrev $zTerm
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
utf.c 131 ** During translation, assume that the byte that zTerm points
155 #define READ_UTF8(zIn, zTerm, c) \
159 while( zIn!=zTerm && (*zIn & 0xc0)==0x80 ){ \
172 /* Same as READ_UTF8() above but without the zTerm parameter.
208 unsigned char *zTerm; /* End of input */
239 zTerm = &zIn[pMem->n&~1];
240 while( zIn<zTerm ){
268 /* Set zIn to point at the start of the input buffer and zTerm to point 1
275 zTerm = &zIn[pMem->n];
285 while( zIn<zTerm ){
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_write.c 104 char *zTerm; /* Pointer to current term */
105 int nTermAlloc; /* Allocated size of zTerm buffer */
130 char *zTerm; /* Pointer to previous term buffer */
131 int nTerm; /* Number of bytes in zTerm */
133 char *zMalloc; /* Malloc'd space (possibly) used for zTerm */
154 char *zTerm; /* Pointer to previous term buffer */
155 int nTerm; /* Number of bytes in zTerm */
157 char *zMalloc; /* Malloc'd space (possibly) used for zTerm */
932 pReader->zTerm = (char *)fts3HashKey(pElem);
    [all...]
fts3_aux.c 212 sqlite3_free((void *)pCsr->filter.zTerm);
261 int mc = memcmp(pCsr->zStop, pCsr->csr.zTerm, n);
354 testcase(pCsr->filter.zTerm);
356 sqlite3_free((void *)pCsr->filter.zTerm);
366 pCsr->filter.zTerm = sqlite3_mprintf("%s", zStr);
368 if( pCsr->filter.zTerm==0 ) return SQLITE_NOMEM;
379 pCsr->filter.zTerm, pCsr->filter.nTerm, 0, isScan, &pCsr->csr
409 sqlite3_result_text(pContext, p->csr.zTerm, p->csr.nTerm, SQLITE_TRANSIENT);
fts3Int.h 324 const char *zTerm;
343 char *zTerm; /* Pointer to term buffer */
344 int nTerm; /* Size of zTerm in bytes */
fts3.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 716 /* select rowid, doclist from %_term where term = [zTerm] and first = [iFirst]
719 static int term_select(fulltext_vtab *v, const char *zTerm, int nTerm,
727 rc = sqlite3_bind_text(s, 1, zTerm, nTerm, SQLITE_TRANSIENT);
746 /* select max(first) from %_term where term = [zTerm] and first <= [iFirst]
750 static int term_chunk_select(fulltext_vtab *v, const char *zTerm, int nTerm,
756 rc = sqlite3_bind_text(s, 1, zTerm, nTerm, SQLITE_STATIC);
782 values ([zTerm], [iFirst], [doclist]) */
783 static int term_insert(fulltext_vtab *v, const char *zTerm, int nTerm,
789 rc = sqlite3_bind_text(s, 1, zTerm, nTerm, SQLITE_STATIC);
1061 /* Read the posting list for [zTerm]; AND it with the doclist [in] t
    [all...]

Completed in 333 milliseconds