Home
last modified time | relevance | path

Searched refs:supported_codepoint_ranges_ (Results 1 – 3 of 3) sorted by relevance

/external/libtextclassifier/native/annotator/
Dfeature-processor_test.cc58 using FeatureProcessor::supported_codepoint_ranges_;
641 IsCodepointInRanges(-1, feature_processor.supported_codepoint_ranges_)); in TEST_F()
643 IsCodepointInRanges(0, feature_processor.supported_codepoint_ranges_)); in TEST_F()
645 IsCodepointInRanges(10, feature_processor.supported_codepoint_ranges_)); in TEST_F()
647 IsCodepointInRanges(127, feature_processor.supported_codepoint_ranges_)); in TEST_F()
649 IsCodepointInRanges(128, feature_processor.supported_codepoint_ranges_)); in TEST_F()
651 IsCodepointInRanges(9999, feature_processor.supported_codepoint_ranges_)); in TEST_F()
653 10000, feature_processor.supported_codepoint_ranges_)); in TEST_F()
655 10001, feature_processor.supported_codepoint_ranges_)); in TEST_F()
657 25000, feature_processor.supported_codepoint_ranges_)); in TEST_F()
Dfeature-processor.h118 &supported_codepoint_ranges_); in FeatureProcessor()
298 std::vector<CodepointRangeStruct> supported_codepoint_ranges_; variable
Dfeature-processor.cc628 if (IsCodepointInRanges(codepoint, supported_codepoint_ranges_)) { in SupportedCodepointsRatio()