Home
last modified time | relevance | path

Searched refs:charBuf (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/
Ddefines.h120 static char charBuf[50]; in dumpWordInfo() local
121 const int N = intArrayToCharArray(word, length, charBuf, NELEMS(charBuf)); in dumpWordInfo()
123 AKLOGI("%2d [ %s ] (%d)", rank, charBuf, probability); in dumpWordInfo()
128 static char charBuf[50]; in dumpWord() local
129 const int N = intArrayToCharArray(word, length, charBuf, NELEMS(charBuf)); in dumpWord()
131 AKLOGI("[ %s ]", charBuf); in dumpWord()
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
Ddic_node.h34 char charBuf[50]; \
35 INTS_TO_CHARS(getOutputWordBuf(), getNodeCodePointCount(), charBuf, NELEMS(charBuf)); \
38 getInputIndex(0), getNormalizedCompoundDistance(), charBuf); \
42 char charBuf[50]; \
46 charBuf, NELEMS(charBuf)); \
50 getNormalizedCompoundDistance(), getRawLength(), charBuf, \
/packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
Dheader_read_write_utils.cpp183 char charBuf[LARGEST_INT_DIGIT_COUNT]; in setIntAttributeInner() local
184 snprintf(charBuf, sizeof(charBuf), "%d", value); in setIntAttributeInner()
185 insertCharactersIntoVector(charBuf, &valueVector); in setIntAttributeInner()