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

  /external/chromium_org/third_party/sqlite/src/test/
fts3_common.tcl 49 foreach doclist $A($zTerm) {
51 while {[string length $doclist]>0} {
57 # First varint of a doclist-entry is the docid. Delta-compressed
60 incr docid [gobble_varint doclist]
62 while {[set iDelta [gobble_varint doclist]] != 0} {}
67 # Gobble varints until the 0x00 that terminates the doclist-entry
69 while {[set iDelta [gobble_varint doclist]] > 0} {
71 set iCol [gobble_varint doclist]
145 # with TERM in the selected segments. Each doclist is an element of the
146 # returned list. Each doclist is formatted as follows
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fulltext.c 87 * A doclist with type DL_POSITIONS_OFFSETS is stored like this:
100 * A doclist with type DL_POSITIONS is like the above, but holds only docids
103 * A doclist with type DL_DOCIDS is like the above, but holds only docids
107 * to serialize a doclist's type.
129 typedef struct DocList {
135 } DocList;
137 /* Initialize a new DocList to hold the given data. */
138 static void docListInit(DocList *d, DocListType iType,
152 /* Create a new dynamically-allocated DocList. */
153 static DocList *docListNew(DocListType iType)
1335 DocList doclist; local
1407 DocList doclist; local
    [all...]
fts1.c 157 * A doclist with type DL_POSITIONS_OFFSETS is stored like this:
175 * A doclist with type DL_POSITIONS is like the above, but holds only docids
178 * A doclist with type DL_DOCIDS is like the above, but holds only docids
182 * to serialize a doclist's type.
234 typedef struct DocList {
241 } DocList;
249 /* Initialize a new DocList to hold the given data. */
250 static void docListInit(DocList *d, DocListType iType,
264 /* Create a new dynamically-allocated DocList. */
265 static DocList *docListNew(DocListType iType)
1397 DocList doclist; local
3019 DocList doclist; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c 93 ** A doclist (document list) holds a docid-sorted list of hits for a
97 ** A DL_POSITIONS_OFFSETS doclist is stored like this:
125 ** A DL_POSITIONS doclist omits the startOffset and endOffset
126 ** information. A DL_DOCIDS doclist omits both the position and
144 ** varint nDoclist; (length of term's associated doclist)
145 ** char pDoclist[nDoclist]; (content of doclist)
151 ** varint nDoclist; (length of term's associated doclist)
152 ** char pDoclist[nDoclist]; (content of doclist)
166 ** node (a leaf node with a single term and doclist). The goal of
292 ** optimizations to things like doclist merging will swing the swee
6082 DataBuffer doclist; local
6467 DataBuffer doclist, merged, tmp; local
7010 DataBuffer doclist; local
    [all...]

Completed in 512 milliseconds