Home
last modified time | relevance | path

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

/external/libtextclassifier/native/annotator/person_name/
Dperson-name-engine-dummy.h43 bool ClassifyText(const std::string& context, CodepointSpan selection_indices, in ClassifyText() function
/external/libtextclassifier/native/annotator/experimental/
Dexperimental-dummy.h50 bool ClassifyText(const UnicodeText& context, CodepointSpan click, in ClassifyText() function
/external/libtextclassifier/native/annotator/installed_app/
Dinstalled-app-engine-dummy.h42 bool ClassifyText(const std::string& context, CodepointSpan selection_indices, in ClassifyText() function
/external/libtextclassifier/native/annotator/contact/
Dcontact-engine-dummy.h44 bool ClassifyText(const std::string& context, CodepointSpan selection_indices, in ClassifyText() function
/external/libtextclassifier/native/annotator/grammar/
Dgrammar-annotator.h51 bool ClassifyText(const std::vector<Locale>& locales, const UnicodeText& text,
Dgrammar-annotator.cc424 bool GrammarAnnotator::ClassifyText( in ClassifyText() function in libtextclassifier3::GrammarAnnotator
/external/libtextclassifier/native/annotator/knowledge/
Dknowledge-engine-dummy.h39 bool ClassifyText(const std::string& text, CodepointSpan selection_indices, in ClassifyText() function
/external/libtextclassifier/native/annotator/translate/
Dtranslate.h39 bool ClassifyText(const UnicodeText& context, CodepointSpan selection_indices,
Dtranslate.cc32 bool TranslateAnnotator::ClassifyText( in ClassifyText() function in libtextclassifier3::TranslateAnnotator
/external/libtextclassifier/native/annotator/duration/
Dduration_test.cc123 EXPECT_TRUE(duration_annotator_.ClassifyText( in TEST_F()
134 EXPECT_TRUE(duration_annotator_.ClassifyText( in TEST_F()
145 EXPECT_FALSE(duration_annotator_.ClassifyText( in TEST_F()
371 EXPECT_TRUE(duration_annotator_.ClassifyText( in TEST_F()
Dduration.h84 bool ClassifyText(const UnicodeText& context, CodepointSpan selection_indices,
Dduration.cc105 bool DurationAnnotator::ClassifyText( in ClassifyText() function in libtextclassifier3::DurationAnnotator
/external/libtextclassifier/native/annotator/number/
Dnumber.h55 bool ClassifyText(const UnicodeText& context, CodepointSpan selection_indices,
Dnumber.cc31 bool NumberAnnotator::ClassifyText( in ClassifyText() function in libtextclassifier3::NumberAnnotator
/external/libtextclassifier/native/annotator/
Dannotator.cc1742 std::vector<ClassificationResult> Annotator::ClassifyText( in ClassifyText() function in libtextclassifier3::Annotator
1788 knowledge_engine_->ClassifyText( in ClassifyText()
1800 if (contact_engine_ && contact_engine_->ClassifyText( in ClassifyText()
1808 person_name_engine_->ClassifyText(context, selection_indices, in ClassifyText()
1818 installed_app_engine_->ClassifyText(context, selection_indices, in ClassifyText()
1855 number_annotator_->ClassifyText(context_unicode, selection_indices, in ClassifyText()
1864 duration_annotator_->ClassifyText(context_unicode, selection_indices, in ClassifyText()
1874 translate_annotator_->ClassifyText(context_unicode, selection_indices, in ClassifyText()
1882 if (grammar_annotator_ && grammar_annotator_->ClassifyText( in ClassifyText()
1890 experimental_annotator_->ClassifyText(context_unicode, selection_indices, in ClassifyText()
Dannotator.h186 std::vector<ClassificationResult> ClassifyText(
Dmodel.fbs622 // Global switch that controls if SuggestSelection(), ClassifyText() and
631 // Global configuration for the output of SuggestSelection(), ClassifyText()
Dannotator_jni.cc646 model_context->model()->ClassifyText(context_utf8, input_indices, in TC3_JNI_METHOD()