Home
last modified time | relevance | path

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

/external/libtextclassifier/native/annotator/datetime/
Dregex-parser.cc186 std::vector<std::pair<DatetimeParseResultSpan, int>> indexed_found_spans; in Parse() local
187 indexed_found_spans.reserve(found_spans.size()); in Parse()
189 indexed_found_spans.push_back({found_spans[i], i}); in Parse()
194 std::sort(indexed_found_spans.begin(), indexed_found_spans.end(), in Parse()
208 resolved_found_spans.reserve(indexed_found_spans.size()); in Parse()
209 for (auto& span_index_pair : indexed_found_spans) { in Parse()