OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAG_IS_NOT_A_WORD
(Results
1 - 5
of
5
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_reading_utils.h
57
return (flags &
FLAG_IS_NOT_A_WORD
) != 0;
86
nodeFlags = isNotAWord ? (nodeFlags |
FLAG_IS_NOT_A_WORD
) : nodeFlags;
116
static const NodeFlags
FLAG_IS_NOT_A_WORD
;
patricia_trie_reading_utils.cpp
41
const PtReadingUtils::NodeFlags PtReadingUtils::
FLAG_IS_NOT_A_WORD
= 0x02;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FormatSpec.java
111
* | is not a word ? 1 bit, 1 = yes, 0 = no :
FLAG_IS_NOT_A_WORD
237
static final int
FLAG_IS_NOT_A_WORD
= 0x02;
BinaryDictDecoderUtils.java
486
0 != (info.mFlags & FormatSpec.
FLAG_IS_NOT_A_WORD
),
492
0 != (info.mFlags & FormatSpec.
FLAG_IS_NOT_A_WORD
),
BinaryDictEncoderUtils.java
647
if (isNotAWord) flags |= FormatSpec.
FLAG_IS_NOT_A_WORD
;
[
all
...]
Completed in 61 milliseconds