OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FindLanguages
(Results
1 - 3
of
3
) sorted by null
/external/libtextclassifier/lang_id/
lang-id.h
43
// LangId::
FindLanguages
. The most likely language code is always the first
81
void
FindLanguages
(const char *data, size_t num_bytes,
84
// Convenience version of
FindLanguages
(const char *, size_t, LangIdResult *).
85
void
FindLanguages
(const string &text, LangIdResult *result) const {
86
FindLanguages
(text.data(), text.size(), result);
97
// can use
FindLanguages
(plural) to get the full LangIdResult, and apply your
lang-id.cc
96
//
FindLanguages
(). We just need the most likely language and its
127
void
FindLanguages
(StringPiece text, LangIdResult *result) const {
270
void LangId::
FindLanguages
(const char *data, size_t num_bytes,
274
pimpl_->
FindLanguages
(text, result);
lang-id_jni.cc
94
model->
FindLanguages
(text_str, &result);
Completed in 114 milliseconds