OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FLAG_HAS_MULTIPLE_CHARS
(Results
1 - 5
of
5
) sorted by null
/packages/inputmethods/LatinIME/native/src/
binary_format.h
249
if (UnigramDictionary::
FLAG_HAS_MULTIPLE_CHARS
& flags) {
284
if (UnigramDictionary::
FLAG_HAS_MULTIPLE_CHARS
& flags) {
336
if (UnigramDictionary::
FLAG_HAS_MULTIPLE_CHARS
& flags) {
350
if (UnigramDictionary::
FLAG_HAS_MULTIPLE_CHARS
& flags) {
399
if (UnigramDictionary::
FLAG_HAS_MULTIPLE_CHARS
& lastFlags) {
bigram_dictionary.cpp
120
if (0 == (flags & UnigramDictionary::
FLAG_HAS_MULTIPLE_CHARS
)) {
unigram_dictionary.h
44
static const int
FLAG_HAS_MULTIPLE_CHARS
= 0x20;
unigram_dictionary.cpp
470
const bool hasMultipleChars = (0 != (UnigramDictionary::
FLAG_HAS_MULTIPLE_CHARS
& flags));
611
// -
FLAG_HAS_MULTIPLE_CHARS
: whether this node has multiple char or not.
615
const bool hasMultipleChars = (0 != (
FLAG_HAS_MULTIPLE_CHARS
& flags));
[
all
...]
/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
BinaryDictInputOutput.java
45
* g | has several chars ? 1 bit, 1 = yes, 0 = no :
FLAG_HAS_MULTIPLE_CHARS
50
* c | IF
FLAG_HAS_MULTIPLE_CHARS
126
private static final int
FLAG_HAS_MULTIPLE_CHARS
= 0x20;
529
if (group.mChars.length > 1) flags |=
FLAG_HAS_MULTIPLE_CHARS
;
[
all
...]
Completed in 21 milliseconds