HomeSort by relevance Sort by last modified time
    Searched defs:curIndex (Results 1 - 25 of 63) sorted by null

1 2 3

  /cts/tests/tests/content/src/android/content/res/cts/
RawResourceTest.java 47 int curIndex = 0;
50 assertEquals("At index " + curIndex
51 + " expected " + expectedString.charAt(curIndex)
53 buffer[i], expectedString.charAt(curIndex));
54 curIndex++;
ResourcesTest.java 673 int curIndex = 0;
676 assertEquals("At index " + curIndex
677 + " expected " + expectedString.charAt(curIndex)
679 buffer[i], expectedString.charAt(curIndex));
680 curIndex++;
  /frameworks/base/core/tests/coretests/src/android/content/
AssetTest.java 40 int curIndex = 0;
43 assertEquals("At index " + curIndex
44 + " expected " + expectedString.charAt(curIndex)
46 buffer[i], expectedString.charAt(curIndex));
47 curIndex++;
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberFormattingTextWatcher.java 130 int curIndex = cursor - 1;
145 if (i == curIndex) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
BerTlv.java 79 int curIndex = 0;
86 tag = data[curIndex++] & 0xff;
89 int temp = data[curIndex++] & 0xff;
93 temp = data[curIndex++] & 0xff;
98 " curIndex=" + curIndex + " endIndex=" + endIndex);
106 " byte= " + Integer.toHexString(temp) + " curIndex=" + curIndex +
112 curIndex = 0;
118 " curIndex=" + curIndex + " endIndex=" + endIndex)
    [all...]
ComprehensionTlv.java 116 int curIndex = startIndex;
123 int temp = data[curIndex++] & 0xff;
129 ", startIndex=" + startIndex + " curIndex=" + curIndex +
136 tag = ((data[curIndex] & 0xff) << 8)
137 | (data[curIndex + 1] & 0xff);
140 curIndex += 2;
152 temp = data[curIndex++] & 0xff;
156 length = data[curIndex++] & 0xff;
161 " startIndex=" + startIndex + " curIndex=" + curIndex
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeCompressor.java 371 int curIndex = -1;
545 curIndex = makeIndex(curUC);
546 fIndexCount[curIndex]++;
560 if((fIndexCount[curIndex] > 1) ||
561 (curIndex == makeIndex(nextUC)
562 && curIndex == makeIndex(forwardUC))) {
573 byteBuffer[bytePos++] = (byte) curIndex;
575 (curUC - sOffsetTable[curIndex]
578 fOffsets[whichWindow] = sOffsetTable[curIndex];
741 curIndex = makeIndex(curUC)
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/Gimpact/
btGImpactBvh.cpp 162 int curIndex = m_num_nodes;
170 setNodeBound(curIndex,primitive_boxes[startIndex].m_bound);
171 m_node_array[curIndex].setDataIndex(primitive_boxes[startIndex].m_data);
196 setNodeBound(curIndex,node_bound);
206 m_node_array[curIndex].setEscapeIndex(m_num_nodes - curIndex);
283 int curIndex = 0;
286 while (curIndex < numNodes)
289 getNodeBound(curIndex,bound);
294 bool isleafnode = isLeafNode(curIndex);
    [all...]
btGImpactQuantizedBvh.cpp 183 int curIndex = m_num_nodes;
191 setNodeBound(curIndex,primitive_boxes[startIndex].m_bound);
192 m_node_array[curIndex].setDataIndex(primitive_boxes[startIndex].m_data);
217 setNodeBound(curIndex,node_bound);
227 m_node_array[curIndex].setEscapeIndex(m_num_nodes - curIndex);
305 int curIndex = 0;
317 while (curIndex < numNodes)
322 bool aabbOverlap = m_box_tree.testQuantizedBoxOverlapp(curIndex, quantizedMin,quantizedMax);
323 bool isleafnode = isLeafNode(curIndex);
    [all...]
gim_box_set.h 305 GUINT curIndex = 0;
308 while (curIndex < numNodes)
311 getNodeBound(curIndex,bound);
316 bool isleafnode = isLeafNode(curIndex);
320 collided_results.push_back(getNodeData(curIndex));
326 curIndex++;
331 curIndex+= getScapeNodeIndex(curIndex);
352 GUINT curIndex = 0;
355 while (curIndex < numNodes
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeCompressor.java 374 int curIndex = -1;
548 curIndex = makeIndex(curUC);
549 fIndexCount[curIndex]++;
563 if((fIndexCount[curIndex] > 1) ||
564 (curIndex == makeIndex(nextUC)
565 && curIndex == makeIndex(forwardUC))) {
576 byteBuffer[bytePos++] = (byte) curIndex;
578 (curUC - sOffsetTable[curIndex]
581 fOffsets[whichWindow] = sOffsetTable[curIndex];
744 curIndex = makeIndex(curUC)
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btQuantizedBvh.cpp 143 int curIndex = m_curNodeIndex;
195 int escapeIndex = m_curNodeIndex - curIndex;
376 int escapeIndex, curIndex = 0;
382 while (curIndex < m_curNodeIndex)
401 curIndex++;
406 curIndex += escapeIndex;
472 int escapeIndex, curIndex = 0;
504 while (curIndex < m_curNodeIndex)
544 curIndex++;
549 curIndex += escapeIndex
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
PropertiesUtils.java 305 int curIndex = 0;
307 while (curIndex < len) {
308 char c = comment.charAt(curIndex);
310 if (lastIndex != curIndex) writer.write(comment.substring(lastIndex, curIndex));
320 if (c == '\r' && curIndex != len - 1 && comment.charAt(curIndex + 1) == '\n') {
321 curIndex++;
323 if (curIndex == len - 1 || (comment.charAt(curIndex + 1) != '#' && comment.charAt(curIndex + 1) != '!')
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/display/
DisplayDensityUtils.java 118 int curIndex = 0;
126 currentDensityIndex = curIndex;
128 entries[curIndex] = res.getString(SUMMARIES_SMALLER[i]);
129 values[curIndex] = density;
130 curIndex++;
135 currentDensityIndex = curIndex;
137 values[curIndex] = defaultDensity;
138 entries[curIndex] = res.getString(SUMMARY_DEFAULT);
139 curIndex++;
147 currentDensityIndex = curIndex;
    [all...]
  /external/icu/icu4c/source/test/intltest/
plurults.cpp 268 int32_t curIndex=0;
271 while (curIndex < testSource[i]) {
272 result[curIndex++]=0x6F; //'o' other
274 result[curIndex++]=0x61; // 'a'
277 *max=curIndex;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPrimitiveRestartTests.cpp 270 deUint32 curIndex = 0;
283 addIndex(curIndex++);
298 deUint32 curIndex = 0;
319 addIndex(curIndex++);
335 deUint32 curIndex = 0;
350 addIndex(curIndex++);
365 deUint32 curIndex = 0;
381 addIndex(curIndex++);
391 addIndex(curIndex++);
407 deUint32 curIndex = 0
    [all...]
  /external/icu/icu4c/source/i18n/
plurrule.cpp     [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java     [all...]
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /sdk/apps/NotificationStudio/libs/
android-support-v4.jar 
  /sdk/testapps/jarCheckTests3/lib2/libs/
android-support-v13.jar 
  /development/samples/ControllerSample/libs/
android-support-v4.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 
  /development/samples/training/InteractiveChart/libs/
android-support-v4.jar 

Completed in 376 milliseconds

1 2 3