Home
last modified time | relevance | path

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

/external/libtextclassifier/annotator/datetime/
Dparser.cc129 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()
[all …]
Dparser.h85 std::vector<DatetimeParseResultSpan>* found_spans) const;