HomeSort by relevance Sort by last modified time
    Searched refs:compareLength (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/
ver4_patricia_trie_policy.cpp 413 const int compareLength = queryLength + 1 /* terminator */;
414 if (strncmp(query, UNIGRAM_COUNT_QUERY, compareLength) == 0) {
416 } else if (strncmp(query, BIGRAM_COUNT_QUERY, compareLength) == 0) {
418 } else if (strncmp(query, MAX_UNIGRAM_COUNT_QUERY, compareLength) == 0) {
424 } else if (strncmp(query, MAX_BIGRAM_COUNT_QUERY, compareLength) == 0) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/
ver4_patricia_trie_policy.cpp 425 const int compareLength = queryLength + 1 /* terminator */;
426 if (strncmp(query, UNIGRAM_COUNT_QUERY, compareLength) == 0) {
428 } else if (strncmp(query, BIGRAM_COUNT_QUERY, compareLength) == 0) {
430 } else if (strncmp(query, MAX_UNIGRAM_COUNT_QUERY, compareLength) == 0) {
436 } else if (strncmp(query, MAX_BIGRAM_COUNT_QUERY, compareLength) == 0) {

Completed in 2185 milliseconds