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

  /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...]
  /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/vulkan-validation-layers/layers/
descriptor_sets.cpp 187 auto start_it = global_start_to_index_map_.upper_bound(global_index);
189 assert(start_it != global_start_to_index_map_.cbegin());
190 if (start_it != global_start_to_index_map_.cbegin()) {
191 --start_it;
192 index = start_it->second;
    [all...]

Completed in 262 milliseconds