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 - 4
of
4
) sorted by null
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
patricia_trie_reading_utils.h
62
return (flags &
FLAG_IS_NOT_A_WORD
) != 0;
91
nodeFlags = isNotAWord ? (nodeFlags |
FLAG_IS_NOT_A_WORD
) : nodeFlags;
129
static const NodeFlags
FLAG_IS_NOT_A_WORD
;
patricia_trie_reading_utils.cpp
43
const PtReadingUtils::NodeFlags PtReadingUtils::
FLAG_IS_NOT_A_WORD
= 0x02;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FormatSpec.java
95
* | is not a word ? 1 bit, 1 = yes, 0 = no :
FLAG_IS_NOT_A_WORD
201
static final int
FLAG_IS_NOT_A_WORD
= 0x02;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictEncoderUtils.java
539
if (isNotAWord) flags |= FormatSpec.
FLAG_IS_NOT_A_WORD
;
[
all
...]
Completed in 464 milliseconds