/external/v8/test/mjsunit/regress/ |
regress-3612.js | 7 var endIndex = 0xffff; 8 Object.defineProperty(a, endIndex, { 21 assertEquals(3, a[endIndex-1]);
|
regress-3621.js | 6 var endIndex = 0xffff; 7 a[endIndex] = 3;
|
/frameworks/base/tools/split-select/ |
SplitDescription.cpp | 89 ssize_t endIndex = index; 90 if (parts[endIndex] == "arm64") { 91 endIndex++; 92 if (endIndex < N) { 93 if (parts[endIndex] == "v8a") { 94 endIndex++; 98 } else if (parts[endIndex] == "armeabi") { 99 endIndex++; 101 if (endIndex < N) { 102 if (parts[endIndex] == "v7a") [all...] |
/external/icu/icu4c/source/i18n/ |
ufieldpositer.cpp | 42 int32_t *beginIndex, int32_t *endIndex) 51 if (endIndex) { 52 *endIndex = fp.getEndIndex();
|
/libcore/ojluni/src/main/java/java/text/ |
AttributedString.java | 195 * @param endIndex Index of the character following the last character 199 * beginIndex and endIndex is out of the text range. 204 int endIndex) { 205 this(text, beginIndex, endIndex, null); 220 * @param endIndex Index of the character following the last character 227 * beginIndex and endIndex is out of the text range. 232 int endIndex, 241 if (beginIndex < textBeginIndex || endIndex > textEndIndex || beginIndex > endIndex) 247 for (char c = text.current(); text.getIndex() < endIndex; c = text.next() [all...] |
/hardware/libhardware/modules/input/evdev/ |
BitUtils.cpp | 46 // endIndex. Round up for endIndex. 48 size_t endIndex = (end + 7) / 8; 50 ALOGD("startIndex=%d, endIndex=%d", startIndex, endIndex); 52 for (size_t i = startIndex; i < endIndex; ++i) { 64 if (i == endIndex - 1 && (end % 8)) {
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
ComprehensionTlv.java | 91 int endIndex = data.length; 92 while (startIndex < endIndex) { 117 int endIndex = data.length; 130 " endIndex=" + endIndex); 162 " endIndex=" + endIndex); 173 " endIndex=" + endIndex); 185 " endIndex=" + endIndex) [all...] |
BerTlv.java | 80 int endIndex = data.length; 98 " curIndex=" + curIndex + " endIndex=" + endIndex); 107 " endIndex=" + endIndex); 118 " curIndex=" + curIndex + " endIndex=" + endIndex); 124 if (endIndex - curIndex < length) { 126 "Command had extra data endIndex=" + endIndex + " curIndex=" + curIndex [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
KernelWakelockReader.java | 118 int endIndex; 123 startIndex = endIndex = i + 1; 127 while (endIndex < len) { 128 for (endIndex=startIndex; 129 endIndex < len && wlBuffer[endIndex] != '\n' && wlBuffer[endIndex] != '\0'; 130 endIndex++); 132 // write to wlBuffer[endIndex] 133 if (endIndex > (len - 1) ) [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/ |
FreePathInterpolator.java | 100 int endIndex = mX.length - 1; 106 return mY[endIndex]; 110 while (endIndex - startIndex > 1) { 111 int midIndex = (startIndex + endIndex) / 2; 113 endIndex = midIndex; 119 float xRange = mX[endIndex] - mX[startIndex]; 128 float endY = mY[endIndex]; 139 int endIndex = mY.length - 1; 143 return mX[endIndex]; 149 while (endIndex - startIndex > 1) [all...] |
/external/apache-http/src/org/apache/http/util/ |
CharArrayBuffer.java | 211 public int indexOf(int ch, int beginIndex, int endIndex) { 215 if (endIndex > this.len) { 216 endIndex = this.len; 218 if (beginIndex > endIndex) { 221 for (int i = beginIndex; i < endIndex; i++) { 233 public String substring(int beginIndex, int endIndex) { 237 if (endIndex > this.len) { 240 if (beginIndex > endIndex) { 243 return new String(this.buffer, beginIndex, endIndex - beginIndex); 246 public String substringTrimmed(int beginIndex, int endIndex) { [all...] |
/frameworks/base/core/tests/coretests/src/android/widget/espresso/ |
TextViewActions.java | 163 * Returns an action that long presses then drags on text from startIndex to endIndex on the 172 * @param endIndex The index of the TextView's text to end the drag at 174 public static ViewAction longPressAndDragOnText(int startIndex, int endIndex) { 179 new TextCoordinates(endIndex), 185 * Returns an action that double taps then drags on text from startIndex to endIndex on the 194 * @param endIndex The index of the TextView's text to end the drag at 196 public static ViewAction doubleTapAndDragOnText(int startIndex, int endIndex) { 201 new TextCoordinates(endIndex), 207 * Returns an action that click then drags by mouse on text from startIndex to endIndex on the 216 * @param endIndex The index of the TextView's text to end the drag a [all...] |
/external/jsilver/src/com/google/streamhtmlparser/util/ |
JavascriptTokenBuffer.java | 61 private int endIndex; 70 endIndex = 0; 83 endIndex = aJavascriptTokenBuffer.endIndex; 115 buffer[endIndex] = input; 116 endIndex = (endIndex + 1) % buffer.length; 117 if (endIndex == startIndex) { 118 startIndex = (endIndex + 1) % buffer.length; 129 if (startIndex == endIndex) { [all...] |
/packages/apps/Settings/src/com/android/settings/ |
LinkifyUtils.java | 58 final int endIndex = text.indexOf(PLACE_HOLDER_LINK_END); 59 if (endIndex == -1) { 63 text.delete(endIndex, endIndex + PLACE_HOLDER_LINK_END.length()); 80 spannableContent.setSpan(spannableLink, beginIndex, endIndex,
|
/external/skia/src/pathops/ |
SkLineParameters.h | 32 int endIndex = 1; 33 cubicEndPoints(pts, 0, endIndex); 38 cubicEndPoints(pts, 0, ++endIndex); 39 SkASSERT(endIndex == 2); 44 cubicEndPoints(pts, 0, ++endIndex); // line 45 SkASSERT(endIndex == 3); 55 if (NotAlmostEqualUlps(pts[0].fY, pts[++endIndex].fY)) { 56 if (pts[0].fY > pts[endIndex].fY) { 61 if (endIndex == 3) { 64 SkASSERT(endIndex == 2) [all...] |
SkPathOpsConic.h | 54 void align(int endIndex, SkDPoint* dstPt) const { 55 fPts.align(endIndex, dstPt); 71 bool isLinear(int startIndex, int endIndex) const { 72 return fPts.isLinear(startIndex, endIndex);
|
/frameworks/support/v4/donut/android/support/v4/view/animation/ |
PathInterpolatorDonut.java | 74 int endIndex = mX.length - 1; 75 while (endIndex - startIndex > 1) { 76 int midIndex = (startIndex + endIndex) / 2; 78 endIndex = midIndex; 84 final float xRange = mX[endIndex] - mX[startIndex]; 93 final float endY = mY[endIndex];
|
/packages/apps/PhoneCommon/src/com/android/phone/common/compat/ |
PathInterpolatorCompat.java | 81 int endIndex = mX.length - 1; 82 while (endIndex - startIndex > 1) { 83 int midIndex = (startIndex + endIndex) / 2; 85 endIndex = midIndex; 91 final float xRange = mX[endIndex] - mX[startIndex]; 100 final float endY = mY[endIndex];
|
/frameworks/av/media/libeffects/loudness/dsp/core/ |
basic.h | 33 // EndIndex: the maximum searched index 35 // StartIndex <= i <= (EndIndex-1)
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/ |
Utils.java | 64 int endIndex = src.indexOf(replacee); 65 while(endIndex != -1) { 66 result.append(src.substring(startIndex,endIndex)); 70 startIndex = endIndex + replacee.length(); 71 endIndex = src.indexOf(replacee,startIndex);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
CompositeFormat.java | 119 final int endIndex = startIndex + n; 120 if (endIndex < source.length()) { 121 if (source.substring(startIndex, endIndex).compareTo(sb.toString()) == 0) { 123 pos.setIndex(endIndex); 144 final int endIndex = pos.getIndex(); 147 if (startIndex == endIndex) { 174 final int endIndex = startIndex + expected.length(); 176 (endIndex > source.length()) || 177 (source.substring(startIndex, endIndex).compareTo(expected) != 0)) { 185 pos.setIndex(endIndex); [all...] |
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
ClassTable.java | 180 int endIndex; 182 for (endIndex = startIndex; endIndex < classTable.length; endIndex += 1) { 183 if (classTable[endIndex].getGlyphID() != nextID || 184 classTable[endIndex].getClassID() != classID) { 198 startIndex = endIndex;
|
/external/proguard/src/proguard/ |
WordReader.java | 188 int endIndex; 212 endIndex = currentIndex++; 233 endIndex = currentIndex; 236 while (endIndex > startIndex && 237 Character.isWhitespace(currentLine.charAt(endIndex-1))) 239 endIndex--; 245 endIndex = ++currentIndex; 264 endIndex = currentIndex; 268 currentWord = currentLine.substring(startIndex, endIndex);
|
/external/icu/icu4c/source/common/unicode/ |
umisc.h | 47 int32_t endIndex;
|
/external/testng/src/main/java/org/testng/mustache/ |
Mustache.java | 44 int endIndex = findClosingIndex(template, ti, conditionalVariable); 52 String subTemplate = template.substring(ti + variable.length() + 4, endIndex); 62 String subTemplate = template.substring(ti + variable.length() + 4, endIndex); 68 ti = endIndex + variable.length() + 4;
|