OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:start_it
(Results
1 - 3
of
3
) sorted by null
/external/libtextclassifier/actions/
ngram-model.cc
142
const auto
start_it
= FirstTokenIterator(model_, 0);
local
144
const int start = std::lower_bound(
start_it
, end_it, token_hash).index();
145
const int end = std::upper_bound(
start_it
, end_it, token_hash).index();
/external/libchrome/base/files/
file_path_watcher_linux.cc
558
std::map<FilePath, InotifyReader::Watch>::iterator
start_it
=
local
560
std::map<FilePath, InotifyReader::Watch>::iterator end_it =
start_it
;
568
recursive_watches_by_path_.erase(
start_it
, end_it);
/external/pdfium/xfa/fde/
cfde_texteditengine.cpp
878
auto
start_it
= text_piece_info_.begin();
local
879
for (;
start_it
< text_piece_info_.end(); ++
start_it
) {
880
if (
start_it
->rtPiece.top <= point.y &&
881
point.y <
start_it
->rtPiece.bottom())
886
if (
start_it
== text_piece_info_.end())
889
auto end_it =
start_it
;
900
size_t start_it_idx =
start_it
->nStart;
901
for (;
start_it
<= end_it; ++
start_it
) {
[
all
...]
Completed in 115 milliseconds