Home
last modified time | relevance | path

Searched refs:ignored_span_boundary_codepoints (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/libtextclassifier/native/annotator/
H A Dfeature-processor_test.cc909 options.ignored_span_boundary_codepoints.push_back('.'); in TEST_F()
910 options.ignored_span_boundary_codepoints.push_back(','); in TEST_F()
911 options.ignored_span_boundary_codepoints.push_back('['); in TEST_F()
912 options.ignored_span_boundary_codepoints.push_back(']'); in TEST_F()
H A Dfeature-processor.cc495 if (options_->ignored_span_boundary_codepoints() != nullptr) { in PrepareIgnoredSpanBoundaryCodepoints()
496 for (const int codepoint : *options_->ignored_span_boundary_codepoints()) { in PrepareIgnoredSpanBoundaryCodepoints()
H A Dmodel.fbs777 ignored_span_boundary_codepoints:[int];
/aosp_15_r20/out/soong/.intermediates/external/libtextclassifier/native/libtextclassifier_fbgen_annotator_model/gen/annotator/
Dmodel_generated.h3896 std::vector<int32_t> ignored_span_boundary_codepoints{};
4025 const flatbuffers::Vector<int32_t> *ignored_span_boundary_codepoints() const { in ignored_span_boundary_codepoints() function
4081 verifier.VerifyVector(ignored_span_boundary_codepoints()) && in Verify()
4181 …ry_codepoints(flatbuffers::Offset<flatbuffers::Vector<int32_t>> ignored_span_boundary_codepoints) { in add_ignored_span_boundary_codepoints()
4182 …et(FeatureProcessorOptions::VT_IGNORED_SPAN_BOUNDARY_CODEPOINTS, ignored_span_boundary_codepoints); in add_ignored_span_boundary_codepoints()
4236 flatbuffers::Offset<flatbuffers::Vector<int32_t>> ignored_span_boundary_codepoints = 0,
4244 builder_.add_ignored_span_boundary_codepoints(ignored_span_boundary_codepoints);
4306 const std::vector<int32_t> *ignored_span_boundary_codepoints = nullptr,
4317 …span_boundary_codepoints__ = ignored_span_boundary_codepoints ? _fbb.CreateVector<int32_t>(*ignore…
7088 ignored_span_boundary_codepoints(o.ignored_span_boundary_codepoints), in FeatureProcessorOptionsT()
[all …]
/aosp_15_r20/external/libtextclassifier/native/annotator/duration/
H A Dduration_test.cc104 options.ignored_span_boundary_codepoints.push_back(','); in BuildFeatureProcessor()