HomeSort by relevance Sort by last modified time
    Searched refs:NOT_A_CODE_POINT (Results 1 - 15 of 15) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
digraph_utils.cpp 58 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/
HardwareKeyboardEventDecoder.java 51 return Event.createHardwareKeypressEvent(Event.NOT_A_CODE_POINT, Constants.CODE_DELETE,
68 return Event.createHardwareKeypressEvent(Event.NOT_A_CODE_POINT,
Event.java 65 final public static int NOT_A_CODE_POINT = -1;
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/
dic_node_properties.h 34 : mChildrenPtNodeArrayPos(NOT_A_DICT_POS), mDicNodeCodePoint(NOT_A_CODE_POINT),
54 mDicNodeCodePoint = NOT_A_CODE_POINT;
dic_node_state_input.h 35 mPrevCodePoint[i] = NOT_A_CODE_POINT;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
byte_array_utils.h 166 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/
byte_array_utils_test.cpp 79 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/
proximity_info_utils.h 38 if (c == NOT_A_CODE_POINT) {
154 proximities[i] = NOT_A_CODE_POINT;
216 proximities[i] = NOT_A_CODE_POINT;
proximity_info.cpp 141 return NOT_A_CODE_POINT;
148 return NOT_A_CODE_POINT;
proximity_info_state_utils.cpp     [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputLogicTestsDeadKeys.java 44 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/
patricia_trie_reading_utils.cpp 78 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/
defines.h 233 #define NOT_A_CODE_POINT (-1)
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v2/
patricia_trie_policy.cpp 132 while (NOT_A_CODE_POINT != nextChar && --charCount > 0) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java     [all...]

Completed in 419 milliseconds