HomeSort by relevance Sort by last modified time
    Searched refs:INVALID_INDEX (Results 1 - 25 of 37) sorted by null

1 2

  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
BluetoothCmeError.java 35 public static final int INVALID_INDEX = 21;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
trie_map.cpp 23 const int TrieMap::INVALID_INDEX = -1;
72 if (terminalEntryIndex == INVALID_INDEX) {
74 return INVALID_INDEX;
82 if (valueEntryIndex == INVALID_INDEX) {
83 return INVALID_INDEX;
86 return INVALID_INDEX;
89 return INVALID_INDEX;
92 return INVALID_INDEX;
121 if (terminalEntryIndex == INVALID_INDEX) {
167 return Result(entry.getValue(), true, INVALID_INDEX);
    [all...]
trie_map.h 76 return mNextLevelBitmapEntryIndex != INVALID_INDEX;
100 mKey(0), mValue(0), mIsValid(false), mNextLevelBitmapEntryIndex(INVALID_INDEX) {
101 if (!trieMap || mBaseBitmapEntryIndex == INVALID_INDEX) {
153 return TrieMapIterator(nullptr, INVALID_INDEX);
164 static const int INVALID_INDEX;
  /external/mesa3d/src/gallium/drivers/svga/
svga_link.c 33 #define INVALID_INDEX 255
50 linkage->input_map[i] = INVALID_INDEX;
94 if (linkage->input_map[i] == INVALID_INDEX) {
107 assert(linkage->input_map[i] != INVALID_INDEX);
svga_tgsi_vgpu10.c 61 #define INVALID_INDEX 99999
866 emit->vposition.tmp_index != INVALID_INDEX) {
875 emit->clip_dist_tmp_index != INVALID_INDEX) {
885 emit->clip_vertex_tmp_index != INVALID_INDEX) {
904 emit->fs.color_tmp_index != INVALID_INDEX) {
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_two_side.c 47 #define INVALID_INDEX 9999
107 if (ts->front_color_input[i] != INVALID_INDEX) {
132 if (ts->face_input == INVALID_INDEX) {
148 if (ts->front_color_input[i] != INVALID_INDEX) {
211 transform.face_input = INVALID_INDEX;
212 transform.front_color_input[0] = INVALID_INDEX;
213 transform.front_color_input[1] = INVALID_INDEX;
216 transform.back_color_input[0] = INVALID_INDEX;
217 transform.back_color_input[1] = INVALID_INDEX;
tgsi_point_sprite.c 42 #define INVALID_INDEX 9999
183 if (ts->point_size_out != INVALID_INDEX)
188 assert(ts->point_pos_out != INVALID_INDEX);
190 ts->out_tmp_index[ts->point_pos_out] = INVALID_INDEX;
249 if (ts->point_size_out == INVALID_INDEX) {
282 if (ts->point_pos_sout != INVALID_INDEX) {
344 if (ts->out_tmp_index[j] != INVALID_INDEX) {
520 transform.point_size_in = INVALID_INDEX;
521 transform.point_size_out = INVALID_INDEX;
522 transform.point_size_tmp = INVALID_INDEX;
    [all...]
tgsi_aa_point.c 37 #define INVALID_INDEX 9999
238 assert(ts->color_out != INVALID_INDEX);
239 assert(ts->color_tmp != INVALID_INDEX);
294 transform.tmp = INVALID_INDEX;
295 transform.color_out = INVALID_INDEX;
296 transform.color_tmp = INVALID_INDEX;
  /packages/apps/TV/src/com/android/tv/guide/
GuideUtils.java 27 private static final int INVALID_INDEX = -1;
85 int nextFocusIndex = INVALID_INDEX;
112 if (nextFocusIndex != INVALID_INDEX) {
ProgramGrid.java 36 private static final int INVALID_INDEX = -1;
247 if (focusedChildIndex == INVALID_INDEX) {
288 return INVALID_INDEX;
  /packages/inputmethods/LatinIME/native/jni/tests/dictionary/utils/
trie_map_test.cpp 73 EXPECT_EQ(TrieMap::INVALID_INDEX, result.mNextLevelBitmapEntryIndex);
149 EXPECT_NE(TrieMap::INVALID_INDEX, nextLevelBitmapEntryIndex);
161 EXPECT_NE(TrieMap::INVALID_INDEX, secondLevel);
164 EXPECT_NE(TrieMap::INVALID_INDEX, thirdLevel);
175 EXPECT_NE(TrieMap::INVALID_INDEX, secondLevel);
184 EXPECT_NE(TrieMap::INVALID_INDEX, secondLevel);
188 EXPECT_NE(TrieMap::INVALID_INDEX, thirdLevel);
  /frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java 268 private static int INVALID_INDEX = -1;
275 return INVALID_INDEX; // The starting point is out of range.
278 return INVALID_INDEX; // Basically this should not happen.
289 return INVALID_INDEX; // An invalid surrogate pair is found.
296 return INVALID_INDEX; // An invalid surrogate pair is found.
307 return INVALID_INDEX; // A invalid surrogate pair is found.
319 return INVALID_INDEX; // The starting point is out of range.
322 return INVALID_INDEX; // Basically this should not happen.
333 return INVALID_INDEX; // An invalid surrogate pair is found.
340 return INVALID_INDEX; // An invalid surrogate pair is found
    [all...]
  /frameworks/support/emoji/core/src/main/java/androidx/emoji/text/
EmojiProcessor.java 395 if (start == CodepointIndexFinder.INVALID_INDEX
396 || end == CodepointIndexFinder.INVALID_INDEX) {
666 private static final int INVALID_INDEX = -1;
684 return INVALID_INDEX; // The starting point is out of range.
687 return INVALID_INDEX; // Basically this should not happen.
698 return INVALID_INDEX; // An invalid surrogate pair is found.
706 return INVALID_INDEX; // An invalid surrogate pair is found.
717 return INVALID_INDEX; // A invalid surrogate pair is found.
739 return INVALID_INDEX; // The starting point is out of range.
742 return INVALID_INDEX; // Basically this should not happen
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
language_model_dict_content.cpp 51 if (nextBitmapEntryIndex == TrieMap::INVALID_INDEX) {
120 if (bitmapEntryIndex == TrieMap::INVALID_INDEX) {
137 if (bitmapEntryIndex == TrieMap::INVALID_INDEX) {
146 if (bitmapEntryIndex == TrieMap::INVALID_INDEX) {
163 if (!result.mIsValid || result.mNextLevelBitmapEntryIndex == TrieMap::INVALID_INDEX) {
300 if (result.mIsValid && result.mNextLevelBitmapEntryIndex != TrieMap::INVALID_INDEX) {
309 return TrieMap::INVALID_INDEX;
323 return TrieMap::INVALID_INDEX;
  /frameworks/base/core/java/android/widget/
SuggestionsAdapter.java 80 static final int INVALID_INDEX = -1;
83 private int mText1Col = INVALID_INDEX;
84 private int mText2Col = INVALID_INDEX;
85 private int mText2UrlCol = INVALID_INDEX;
86 private int mIconName1Col = INVALID_INDEX;
87 private int mIconName2Col = INVALID_INDEX;
88 private int mFlagsCol = INVALID_INDEX;
320 if (mFlagsCol != INVALID_INDEX) {
403 if (mIconName1Col == INVALID_INDEX) {
415 if (mIconName2Col == INVALID_INDEX) {
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
SuggestionsAdapter.java 80 static final int INVALID_INDEX = -1;
83 private int mText1Col = INVALID_INDEX;
84 private int mText2Col = INVALID_INDEX;
85 private int mText2UrlCol = INVALID_INDEX;
86 private int mIconName1Col = INVALID_INDEX;
87 private int mIconName2Col = INVALID_INDEX;
88 private int mFlagsCol = INVALID_INDEX;
278 if (mFlagsCol != INVALID_INDEX) {
362 if (mIconName1Col == INVALID_INDEX) {
374 if (mIconName2Col == INVALID_INDEX) {
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
pm_errors.py 115 INVALID_INDEX = 321
144 self.INVALID_INDEX : '.InvalidIndex',
175 INVALID_INDEX = 21
231 self.INVALID_INDEX : '.InvalidIndex',
  /external/libxcam/xcore/interface/
stitcher.h 34 #define INVALID_INDEX (uint32_t)(-1)
119 : in_idx (INVALID_INDEX)
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
JDWPConstants.java 489 public static final int INVALID_INDEX = 503;
612 case INVALID_INDEX:
613 return "INVALID_INDEX";
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
SetValues003Test.java 36 private static final int INVALID_INDEX = SetValues003Debuggee.ARRAY_LENGTH;
103 ReplyPacket checkedReply = setArrayValue(checkedObjectID, INVALID_INDEX,
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FramesTest.java 123 * <BR>It is expected the error INVALID_INDEX is returned.
153 if (err == JDWPConstants.Error.INVALID_INDEX) {
160 + JDWPConstants.Error.getName(JDWPConstants.Error.INVALID_INDEX)
161 + "(" + JDWPConstants.Error.INVALID_INDEX + ")");
  /packages/apps/Settings/src/com/android/settings/sound/
AudioSwitchPreferenceController.java 78 private static final int INVALID_INDEX = -1;
151 if (connectedDeviceIndex == INVALID_INDEX) {
387 return INVALID_INDEX;
  /external/deqp/modules/gles31/stress/
es31sDrawTests.cpp 100 INVALID_INDEX,
200 indices[ndx] = (deUint16)((m_op == INVALID_INDEX) ? (overBoundDrawCount + ndx) : (ndx));
588 drawElementsGroup->addChild(new InvalidDrawCase(m_context, "data_over_bounds_with_indices", "Draw elements vertex elements beyond the array end are accessed", InvalidDrawCase::DRAW_ELEMENTS, InvalidDrawCase::INVALID_INDEX));
  /external/oj-libjdwp/src/share/back/
error_messages.c 300 CASE_RETURN_JDWP_ERROR_TEXT(INVALID_INDEX)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ftsiface.h 28 #define INVALID_INDEX UINT(-9)

Completed in 626 milliseconds

1 2