Searched refs:start_it (Results 1 – 4 of 4) sorted by relevance
878 auto start_it = text_piece_info_.begin(); in GetIndexForPoint() local879 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 …]
142 const auto start_it = FirstTokenIterator(model_, 0); in GetFirstTokenMatches() local144 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()
558 std::map<FilePath, InotifyReader::Watch>::iterator start_it = in UpdateRecursiveWatches() local560 std::map<FilePath, InotifyReader::Watch>::iterator end_it = start_it; in UpdateRecursiveWatches()568 recursive_watches_by_path_.erase(start_it, end_it); in UpdateRecursiveWatches()
187 auto start_it = global_start_to_index_map_.upper_bound(global_index); in GetIndexFromGlobalIndex() local189 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()