Lines Matching refs:found_spans
129 std::vector<DatetimeParseResultSpan>* found_spans) const { in FindSpansUsingLocales()
155 anchor_start_end, found_spans)) { in FindSpansUsingLocales()
168 std::vector<DatetimeParseResultSpan> found_spans; in Parse() local
176 &executed_rules, &found_spans)) { in Parse()
181 indexed_found_spans.reserve(found_spans.size()); in Parse()
182 for (int i = 0; i < found_spans.size(); i++) { in Parse()
183 indexed_found_spans.push_back({found_spans[i], i}); in Parse()
200 found_spans.clear(); in Parse()
202 found_spans.push_back(span_index_pair.first); in Parse()
206 [&found_spans](int a, int b) { in Parse()
207 return found_spans[a].span.first < found_spans[b].span.first; in Parse()
209 for (int i = 0; i < found_spans.size(); ++i) { in Parse()
210 if (!DoesCandidateConflict(i, found_spans, chosen_indices_set)) { in Parse()
212 results->push_back(found_spans[i]); in Parse()