OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAG_HAS_BIGRAMS
(Results
1 - 7
of
7
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_reading_utils.h
69
return (flags &
FLAG_HAS_BIGRAMS
) != 0;
89
nodeFlags = hasBigrams ? (nodeFlags |
FLAG_HAS_BIGRAMS
) : nodeFlags;
115
static const NodeFlags
FLAG_HAS_BIGRAMS
;
patricia_trie_reading_utils.cpp
39
const PtReadingUtils::NodeFlags PtReadingUtils::
FLAG_HAS_BIGRAMS
= 0x04;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
Ver3DictDecoder.java
167
if (0 != (flags & FormatSpec.
FLAG_HAS_BIGRAMS
)) {
249
if ((flags & FormatSpec.
FLAG_HAS_BIGRAMS
) != 0) {
FormatSpec.java
110
* | has bigrams ? 1 bit, 1 = yes, 0 = no :
FLAG_HAS_BIGRAMS
157
* | IF FLAG_IS_TERMINAL &&
FLAG_HAS_BIGRAMS
236
static final int
FLAG_HAS_BIGRAMS
= 0x04;
Ver4DictDecoder.java
245
if (0 != (flags & FormatSpec.
FLAG_HAS_BIGRAMS
)) {
BinaryDictEncoderUtils.java
646
if (hasBigrams) flags |= FormatSpec.
FLAG_HAS_BIGRAMS
;
[
all
...]
DynamicBinaryDictIOUtils.java
368
(currentInfo.mFlags & FormatSpec.
FLAG_HAS_BIGRAMS
) != 0,
Completed in 31 milliseconds