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

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/
WordReader.java 44 private int currentIndex;
138 while (currentIndex < currentLineLength &&
139 Character.isWhitespace(currentLine.charAt(currentIndex)))
141 currentIndex++;
145 if (currentIndex < currentLineLength &&
146 isComment(currentLine.charAt(currentIndex)))
148 currentIndex = currentLineLength;
153 while (currentLine == null || currentIndex == currentLineLength)
164 currentIndex = 0;
165 while (currentIndex < currentLineLength &
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ReplaceableUCharacterIterator.java 39 this.currentIndex = 0;
51 this.currentIndex = 0;
63 this.currentIndex = 0;
86 if (currentIndex < replaceable.length()) {
87 return replaceable.charAt(currentIndex);
128 * Gets the current currentIndex in text.
129 * @return current currentIndex in text.
132 return currentIndex;
136 * Returns next UTF16 character and increments the iterator's currentIndex by 1.
137 * If the resulting currentIndex is greater or equal to the text length, the
    [all...]
StringUCharacterIterator.java 87 * Gets the current currentIndex in text.
88 * @return current currentIndex in text.
96 * Returns next UTF16 character and increments the iterator's currentIndex
98 * If the resulting currentIndex is greater or equal to the text length,
99 * the currentIndex is reset to the text length and a value of DONE is
101 * @return next UTF16 character in text or DONE if the new currentIndex is
116 * currentIndex by 1.
117 * If the resulting currentIndex is less than 0, the currentIndex is reset
119 * @return next UTF16 character in text or DONE if the new currentIndex is
    [all...]
CharacterIteratorWrapper.java 104 int currentIndex = iterator.getIndex();
112 iterator.setIndex(currentIndex);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ReplaceableUCharacterIterator.java 37 this.currentIndex = 0;
49 this.currentIndex = 0;
61 this.currentIndex = 0;
84 if (currentIndex < replaceable.length()) {
85 return replaceable.charAt(currentIndex);
126 * Gets the current currentIndex in text.
127 * @return current currentIndex in text.
130 return currentIndex;
134 * Returns next UTF16 character and increments the iterator's currentIndex by 1.
135 * If the resulting currentIndex is greater or equal to the text length, the
    [all...]
StringUCharacterIterator.java 85 * Gets the current currentIndex in text.
86 * @return current currentIndex in text.
94 * Returns next UTF16 character and increments the iterator's currentIndex
96 * If the resulting currentIndex is greater or equal to the text length,
97 * the currentIndex is reset to the text length and a value of DONE is
99 * @return next UTF16 character in text or DONE if the new currentIndex is
114 * currentIndex by 1.
115 * If the resulting currentIndex is less than 0, the currentIndex is reset
117 * @return next UTF16 character in text or DONE if the new currentIndex is
    [all...]
CharacterIteratorWrapper.java 102 int currentIndex = iterator.getIndex();
110 iterator.setIndex(currentIndex);
  /external/hamcrest/src/org/hamcrest/internal/
ArrayIterator.java 8 private int currentIndex = 0;
18 return currentIndex < Array.getLength(array);
22 return Array.get(array, currentIndex++);
  /external/apache-http/src/org/apache/http/message/
BasicListHeaderIterator.java 66 protected int currentIndex;
99 this.currentIndex = findNext(-1);
148 return (this.currentIndex >= 0);
162 final int current = this.currentIndex;
168 this.currentIndex = findNext(current);
199 this.currentIndex--; // adjust for the removed element
BasicHeaderIterator.java 66 protected int currentIndex;
92 this.currentIndex = findNext(-1);
135 return (this.currentIndex >= 0);
149 final int current = this.currentIndex;
154 this.currentIndex = findNext(current);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
VBOWithVAOPerformanceTest.java 124 private void addRandomSprite (float[] vertArray, int currentIndex) {
134 vertArray[currentIndex++] = x;
135 vertArray[currentIndex++] = y;
136 vertArray[currentIndex++] = 0;
137 vertArray[currentIndex++] = r;
138 vertArray[currentIndex++] = g;
139 vertArray[currentIndex++] = b;
140 vertArray[currentIndex++] = a;
141 vertArray[currentIndex++] = 0;
142 vertArray[currentIndex++] = 1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
RelativeLayoutRuleTest.java 30 int insertIndex, int currentIndex, String... graphicsFragments) {
44 secondDragPoint, insertIndex, currentIndex, graphicsFragments);
48 int insertIndex, int currentIndex, String[] extraFragments,
58 currentIndex, combined);
FrameLayoutRuleTest.java 26 protected void dragInto(Rect dragBounds, Point dragPoint, int insertIndex, int currentIndex,
40 insertIndex, currentIndex, graphicsFragments);
AbsoluteLayoutRuleTest.java 28 protected INode dragInto(Rect dragBounds, Point dragPoint, int insertIndex, int currentIndex,
42 insertIndex, currentIndex, graphicsFragments);
  /packages/apps/Settings/src/com/android/settings/display/
ScreenZoomPreference.java 48 final int currentIndex = density.getCurrentIndex();
49 setSummary(entries[currentIndex]);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
AnnotationsDirectory.java 213 private int currentIndex;
220 this.currentIndex = 0;
224 while (currentItemIndex < itemIndex && (currentIndex+1) < size) {
225 currentIndex++;
226 currentItemIndex = dexFile.readSmallUint(startOffset + (currentIndex*8));
230 return dexFile.readSmallUint(startOffset + (currentIndex*8)+4);
237 this.currentIndex = 0;
  /external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
PhonePrefixMap.java 153 int currentIndex = numOfEntries - 1;
161 currentIndex = binarySearch(0, currentIndex, phonePrefix);
162 if (currentIndex < 0) {
165 int currentPrefix = phonePrefixMapStorage.getPrefix(currentIndex);
167 return phonePrefixMapStorage.getDescription(currentIndex);
  /external/skia/debugger/QT/
SkSettingsWidget.h 49 return fGLMSAACombo.itemData(fGLMSAACombo.currentIndex()).toInt();
55 int index = fFilterCombo.currentIndex();
  /external/icu/icu4c/source/common/
normlzr.cpp 35 currentIndex(0), nextIndex(0),
44 currentIndex(0), nextIndex(0),
53 currentIndex(0), nextIndex(0),
62 currentIndex(copy.currentIndex), nextIndex(copy.nextIndex),
100 return text->hashCode() + fUMode + fOptions + buffer.hashCode() + bufferPos + currentIndex + nextIndex;
287 currentIndex=nextIndex=text->setToStart();
294 currentIndex=nextIndex=text->getIndex();
313 currentIndex=nextIndex=text->setToEnd();
334 return currentIndex;
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Correlation.java 113 int currentIndex = 0;
115 for (int i = 0; i<N && currentIndex<mBlockSize; i++) {
118 currentIndex++;
122 if (currentIndex>=mBlockSize) {
128 dataDownsampled[currentIndex] += value;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gxvalid/
gxvmorx1.c 118 FT_Short currentIndex;
136 currentIndex = (FT_Short)( glyphOffset_p->ul );
147 GXV_TRACE(( "markIndex = %d, currentIndex = %d\n",
148 markIndex, currentIndex ));
154 if ( optdata->substitutionTable_num_lookupTables < currentIndex + 1 )
156 (FT_UShort)( currentIndex + 1 );
  /external/icu/icu4c/source/tools/gensprep/
store.c 155 static int16_t currentIndex = 0; /* the current index into the data trie */
269 indexes[_SPREP_NORM_CORRECTNS_LAST_UNI_VERSION+mappingLength] = currentIndex;
274 limitIndex = currentIndex;
282 trieWord = currentIndex << 2;
316 if(currentIndex+value->length+1 > _SPREP_MAX_INDEX_VALUE){
318 currentIndex+value->length, _SPREP_MAX_INDEX_VALUE);
326 mappingData[currentIndex++] = (uint16_t) mappingLength;
329 uprv_memmove(mappingData+currentIndex, value->mapping, value->length*U_SIZEOF_UCHAR);
330 currentIndex += value->length;
331 if (currentIndex > mappingDataCapacity)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Path.java 92 int currentIndex = 0;
95 if (index == -1 || index == currentIndex) {
98 currentIndex++;
  /packages/apps/Settings/src/com/android/settings/
WebViewImplementation.java 63 int currentIndex = -1;
71 currentIndex = values.size() - 1;
78 .setSingleChoiceItems(options.toArray(new String[0]), currentIndex,
  /frameworks/base/core/java/android/view/inputmethod/
BaseInputConnection.java 272 int currentIndex = from;
275 if (currentIndex < 0 || N < currentIndex) {
284 return currentIndex; // Reached to the requested length in code points.
287 --currentIndex;
288 if (currentIndex < 0) {
294 final char c = cs.charAt(currentIndex);
316 int currentIndex = from;
319 if (currentIndex < 0 || N < currentIndex) {
    [all...]

Completed in 810 milliseconds

1 2 3 4 5 6 7 8 91011>>