Searched refs:NOT_A_CODE_POINT (Results 1 - 15 of 15) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
H A Ddigraph_utils.cpp58 return NOT_A_CODE_POINT;
63 return NOT_A_CODE_POINT;
71 return NOT_A_CODE_POINT;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/event/
H A DHardwareKeyboardEventDecoder.java51 return Event.createHardwareKeypressEvent(Event.NOT_A_CODE_POINT, Constants.CODE_DELETE,
68 return Event.createHardwareKeypressEvent(Event.NOT_A_CODE_POINT,
H A DEvent.java65 final public static int NOT_A_CODE_POINT = -1; field in class:Event
82 // associated so this should be NOT_A_CODE_POINT to avoid unintentional use of its value when
204 NOT_A_CODE_POINT, NOT_A_KEY_CODE,
219 return new Event(EVENT_TYPE_SOFTWARE_GENERATED_STRING, text, NOT_A_CODE_POINT, keyCode,
246 return new Event(EVENT_TYPE_CURSOR_MOVE, null, NOT_A_CODE_POINT, NOT_A_KEY_CODE,
265 return new Event(EVENT_TYPE_NOT_HANDLED, null /* text */, NOT_A_CODE_POINT, NOT_A_KEY_CODE,
274 return NOT_A_CODE_POINT == mCodePoint;
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
H A Ddic_node_properties.h34 : mChildrenPtNodeArrayPos(NOT_A_DICT_POS), mDicNodeCodePoint(NOT_A_CODE_POINT),
54 mDicNodeCodePoint = NOT_A_CODE_POINT;
H A Ddic_node_state_input.h35 mPrevCodePoint[i] = NOT_A_CODE_POINT;
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
H A Dbyte_array_utils.h166 return NOT_A_CODE_POINT;
190 while (NOT_A_CODE_POINT != codePoint && length < maxLength) {
202 while (NOT_A_CODE_POINT != codePoint && length < maxLength) {
217 if (codePoint == NOT_A_CODE_POINT || codePoint == CHARACTER_ARRAY_TERMINATOR) {
238 if (codePoint == NOT_A_CODE_POINT || codePoint == CHARACTER_ARRAY_TERMINATOR) {
/packages/inputmethods/LatinIME/native/jni/tests/dictionary/utils/
H A Dbyte_array_utils_test.cpp79 EXPECT_EQ(NOT_A_CODE_POINT, ByteArrayUtils::readCodePoint(buffer, 5));
101 EXPECT_EQ(NOT_A_CODE_POINT, ByteArrayUtils::readCodePoint(buffer, 5));
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
H A Dproximity_info_utils.h38 if (c == NOT_A_CODE_POINT) {
154 proximities[i] = NOT_A_CODE_POINT;
216 proximities[i] = NOT_A_CODE_POINT;
H A Dproximity_info.cpp141 return NOT_A_CODE_POINT;
148 return NOT_A_CODE_POINT;
H A Dproximity_info_state_utils.cpp957 if (codePoint == NOT_A_CODE_POINT) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
H A DInputLogicTestsDeadKeys.java44 add(Event.createSoftwareKeypressEvent(Event.NOT_A_CODE_POINT, keyCode,
121 mLatinIME.onEvent(Event.createSoftwareKeypressEvent(Event.NOT_A_CODE_POINT,
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
H A Dpatricia_trie_reading_utils.cpp78 if (codePoint == NOT_A_CODE_POINT) {
79 // CAVEAT: codePoint == NOT_A_CODE_POINT means the code point is
83 AKLOGE("codePoint is NOT_A_CODE_POINT. pos: %d, codePoint: 0x%x, buffer[pos - 1]: 0x%x",
/packages/inputmethods/LatinIME/native/jni/src/
H A Ddefines.h233 #define NOT_A_CODE_POINT (-1) macro
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
H A Dpatricia_trie_policy.cpp132 while (NOT_A_CODE_POINT != nextChar && --charCount > 0) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1399 codePoint = Event.NOT_A_CODE_POINT;

Completed in 276 milliseconds