Home
last modified time | relevance | path

Searched refs:start_it (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/xfa/fde/
Dcfde_texteditengine.cpp878 auto start_it = text_piece_info_.begin(); in GetIndexForPoint() local
879 for (; start_it < text_piece_info_.end(); ++start_it) { in GetIndexForPoint()
880 if (start_it->rtPiece.top <= point.y && in GetIndexForPoint()
881 point.y < start_it->rtPiece.bottom()) in GetIndexForPoint()
886 if (start_it == text_piece_info_.end()) in GetIndexForPoint()
889 auto end_it = start_it; in GetIndexForPoint()
900 size_t start_it_idx = start_it->nStart; in GetIndexForPoint()
901 for (; start_it <= end_it; ++start_it) { in GetIndexForPoint()
902 if (!start_it->rtPiece.Contains(point)) in GetIndexForPoint()
905 std::vector<CFX_RectF> rects = GetCharRects(*start_it); in GetIndexForPoint()
[all …]
/external/libtextclassifier/actions/
Dngram-model.cc142 const auto start_it = FirstTokenIterator(model_, 0); in GetFirstTokenMatches() local
144 const int start = std::lower_bound(start_it, end_it, token_hash).index(); in GetFirstTokenMatches()
145 const int end = std::upper_bound(start_it, end_it, token_hash).index(); in GetFirstTokenMatches()
/external/libchrome/base/files/
Dfile_path_watcher_linux.cc558 std::map<FilePath, InotifyReader::Watch>::iterator start_it = in UpdateRecursiveWatches() local
560 std::map<FilePath, InotifyReader::Watch>::iterator end_it = start_it; in UpdateRecursiveWatches()
568 recursive_watches_by_path_.erase(start_it, end_it); in UpdateRecursiveWatches()
/external/vulkan-validation-layers/layers/
Ddescriptor_sets.cpp187 auto start_it = global_start_to_index_map_.upper_bound(global_index); in GetIndexFromGlobalIndex() local
189 assert(start_it != global_start_to_index_map_.cbegin()); in GetIndexFromGlobalIndex()
190 if (start_it != global_start_to_index_map_.cbegin()) { in GetIndexFromGlobalIndex()
191 --start_it; in GetIndexFromGlobalIndex()
192 index = start_it->second; in GetIndexFromGlobalIndex()