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

  /packages/inputmethods/LatinIME/native/src/
bigram_dictionary.cpp 127 int bigramFlags;
130 bigramFlags = BinaryFormat::getFlagsAndForwardPointer(root, &pos);
132 const int bigramPos = BinaryFormat::getAttributeAddressAndForwardPointer(root, bigramFlags,
138 const int frequency = UnigramDictionary::MASK_ATTRIBUTE_FREQUENCY & bigramFlags;
142 } while (0 != (UnigramDictionary::FLAG_ATTRIBUTE_HAS_NEXT & bigramFlags));
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
BinaryDictInputOutput.java 562 int bigramFlags = (more ? FLAG_ATTRIBUTE_HAS_NEXT : 0)
566 bigramFlags |= FLAG_ATTRIBUTE_ADDRESS_TYPE_ONEBYTE;
569 bigramFlags |= FLAG_ATTRIBUTE_ADDRESS_TYPE_TWOBYTES;
572 bigramFlags |= FLAG_ATTRIBUTE_ADDRESS_TYPE_THREEBYTES;
577 bigramFlags += frequency & FLAG_ATTRIBUTE_FREQUENCY;
578 return bigramFlags;
635 int bigramFlags = makeAttributeFlags(more, offset, bigram.mFrequency);
636 buffer[index++] = (byte)bigramFlags;
    [all...]

Completed in 1282 milliseconds