HomeSort by relevance Sort by last modified time
    Searched defs:max_word_length (Results 1 - 3 of 3) sorted by null

  /external/libtextclassifier/smartselect/
token-feature-extractor.h 57 int max_word_length = 20; member in struct:libtextclassifier::TokenFeatureExtractorOptions
token-feature-extractor.cc 113 // Trim words that are over max_word_length characters.
114 const int max_word_length = options_.max_word_length; local
116 if (word.size() > max_word_length) {
118 "^" + word.substr(0, max_word_length / 2) + "\1" +
119 word.substr(word.size() - max_word_length / 2, max_word_length / 2) +
161 for (int i = 0; i < options_.max_word_length / 2; i++) {
  /external/google-breakpad/src/processor/
minidump.cc 332 size_t max_word_length = max_length_in_bytes / sizeof(utf16_data[0]); local
333 size_t word_length = UTF16codeunits(utf16_data, max_word_length);
    [all...]

Completed in 664 milliseconds