OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScriptDetector
(Results
1 - 6
of
6
) sorted by null
/external/libtextclassifier/lang_id/script/
script-detector.h
27
// get the
ScriptDetector
that's most appropriate to your application.
28
class
ScriptDetector
: public RegisterableClass<
ScriptDetector
> {
30
virtual ~
ScriptDetector
() = default;
41
SAFTM_DECLARE_CLASS_REGISTRY_NAME(
ScriptDetector
);
script-detector.cc
22
SAFTM_DEFINE_CLASS_REGISTRY_NAME("script detector",
ScriptDetector
);
approx-script.h
60
class ApproxScriptDetector : public
ScriptDetector
{
65
// We return int to match the general case from the base class
ScriptDetector
tiny-script-detector.h
160
class TinyScriptDetector : public
ScriptDetector
{
/external/libtextclassifier/lang_id/features/
relevant-script-feature.h
58
std::unique_ptr<
ScriptDetector
> script_detector_;
relevant-script-feature.cc
37
script_detector_.reset(
ScriptDetector
::Create(script_detector_name));
39
// This means
ScriptDetector
::Create() could not find the requested
Completed in 165 milliseconds