OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:docid
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/sqlite/src/test/
fts3_common.tcl
50
set
docid
0
57
# First varint of a doclist-entry is the
docid
. Delta-compressed
58
# with respect to the
docid
of the previous entry.
60
incr
docid
[gobble_varint doclist]
61
if {[info exists D($zTerm,$
docid
)]} {
65
set D($zTerm,$
docid
) 1
76
set C($
docid
,$iCol,$iPos) $zTerm
90
set iDoc $E(
docid
)
97
set es "Error at
docid
=$iDoc col=$iCol pos=$pos. Index is missing"
101
set es "Error at
docid
=$iDoc col=$iCol pos=$pos. Index
[
all
...]
/external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app_worker.js
69
docid
: doc_id,
129
' to doc: ' + chunk.
docid
);
186
var docRequest = docStore.get(chunk.
docid
);
192
docid
: chunk.
docid
,
196
' created doc: ' + doc.
docid
);
200
' updating doc: ' + doc.
docid
+
indexeddb_app.js
65
syncStore.createIndex('doc-index', '
docid
');
68
'docs', {keyPath: '
docid
'});
74
userEventStore.createIndex('doc-index', '
docid
');
157
docid
: Math.floor(Math.random() * MAX_DOC_ID),
/external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3.c
61
** A doclist (document list) holds a
docid
-sorted list of hits for a
63
** A
docid
is the unique integer identifier for a single document.
73
** varint
docid
;
99
** The 123 value is the first
docid
. For column zero in this document
104
** 234 at I is the next
docid
. It has one position 72 (72-2) and then
108
** a single
docid
. A "column-list" is the set of positions for a single
110
** a document record consists of a
docid
followed by a position-list and
280
** Since we're using a segmented structure, with no
docid
-oriented
283
** write an empty doclist (varint(
docid
) varint(POS_END)), for updates
285
** data for a particular
docid
with newer data, so deletes or update
2094
sqlite3_int64
docid
;
local
[
all
...]
/external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1.c
11
** the unique
docid
. fts1 embeds the rowid in the index it builds,
160
* varint
docid
;
394
/* Peek at the next
docid
without advancing the read pointer.
404
/* Read the next
docid
. See also nextDocid().
464
/* Skip over a
docid
, including its position list if the doclist has
471
/* Skip past all docids which are less than [iDocid]. Returns 1 if a
docid
501
sqlite_int64
docid
= readDocid(&r);
local
502
if(
docid
==0 ){
506
printf("%s%lld", zSep,
docid
);
662
** Read the next
docid
off of pIn. Return 0 if we reach the end
[
all
...]
Completed in 63 milliseconds