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

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_reading_utils.h 73 return (flags & FLAG_HAS_MULTIPLE_CHARS) != 0;
90 nodeFlags = hasMultipleChars ? (nodeFlags | FLAG_HAS_MULTIPLE_CHARS) : nodeFlags;
112 static const NodeFlags FLAG_HAS_MULTIPLE_CHARS;
patricia_trie_reading_utils.cpp 33 const PtReadingUtils::NodeFlags PtReadingUtils::FLAG_HAS_MULTIPLE_CHARS = 0x20;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
Ver3DictDecoder.java 127 if (0 != (flags & FormatSpec.FLAG_HAS_MULTIPLE_CHARS)) {
241 (flags & FormatSpec.FLAG_HAS_MULTIPLE_CHARS) != 0);
FormatSpec.java 105 * | has several chars ? 1 bit, 1 = yes, 0 = no : FLAG_HAS_MULTIPLE_CHARS
123 * c | IF FLAG_HAS_MULTIPLE_CHARS
229 static final int FLAG_HAS_MULTIPLE_CHARS = 0x20;
Ver4DictDecoder.java 203 if (0 != (flags & FormatSpec.FLAG_HAS_MULTIPLE_CHARS)) {
335 (flags & FormatSpec.FLAG_HAS_MULTIPLE_CHARS) != 0);
DynamicBinaryDictIOUtils.java 124 BinaryDictIOUtils.skipString(dictBuffer, (flags & FormatSpec.FLAG_HAS_MULTIPLE_CHARS) != 0);
BinaryDictEncoderUtils.java 623 if (hasMultipleChars) flags |= FormatSpec.FLAG_HAS_MULTIPLE_CHARS;
    [all...]

Completed in 51 milliseconds