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

  /external/libtextclassifier/annotator/
feature-processor.cc 156 auto span_end = context_unicode.begin(); local
158 std::advance(span_end, span.second);
162 if (line.first <= span_start && line.second >= span_end) {
302 UnicodeText::const_iterator span_end = token_right_unicode.end(); local
307 token_right_unicode.begin(), span_end,
486 const UnicodeText::const_iterator& span_end,
488 if (span_start == span_end) {
496 it_last = span_end;
501 it = span_end;
574 UnicodeText::const_iterator span_end = context_unicode.begin() local
    [all...]
feature-processor.h 187 const UnicodeText::const_iterator& span_end, CodepointSpan span) const;
232 // maximum end at span_end (exclusive). If count_from_beginning is True, the
233 // counting will start from span_end (exclusive) and end at span_start
237 const UnicodeText::const_iterator& span_end,
  /external/libtextclassifier/utils/utf8/
unicodetext.cc 214 auto span_end = begin(); local
215 std::advance(span_end, end_codepoint);
216 return UTF8Substring(span_begin, span_end);
  /external/tensorflow/tensorflow/core/kernels/
scale_and_translate_op.cc 93 int64 span_end = local
96 span_end = Clamp(static_cast<int64>(0), input_size - 1, span_end) + 1;
97 const int this_span_size = span_end - span_start;
104 for (int source = span_start; source < span_end; ++source) {

Completed in 536 milliseconds