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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/common/unicode/
umisc.h 49 int32_t endIndex;
  /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...]
  /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...]
  /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/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-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...]
  /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)) {
  /libcore/ojluni/src/main/java/java/text/
FieldPosition.java 85 int endIndex = 0;
184 return endIndex;
204 endIndex = ei;
235 && endIndex == other.endIndex
244 return (field << 24) | (beginIndex << 16) | endIndex;
255 ",endIndex=" + endIndex + ']';
AttributedString.java 196 * @param endIndex Index of the character following the last character
200 * beginIndex and endIndex is out of the text range.
205 int endIndex) {
206 this(text, beginIndex, endIndex, null);
221 * @param endIndex Index of the character following the last character
228 * beginIndex and endIndex is out of the text range.
233 int endIndex,
242 if (beginIndex < textBeginIndex || endIndex > textEndIndex || beginIndex > endIndex)
248 for (char c = text.current(); text.getIndex() < endIndex; c = text.next()
    [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/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...]
  /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/icu/icu4c/source/i18n/
ufieldpositer.cpp 44 int32_t *beginIndex, int32_t *endIndex)
53 if (endIndex) {
54 *endIndex = fp.getEndIndex();
  /frameworks/support/compat/ics/android/support/v4/view/animation/
PathInterpolatorApi14.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];
  /libcore/ojluni/src/main/java/sun/security/x509/
DNSName.java 83 //endIndex is the index of the last character of a component plus 1
84 for (int endIndex,startIndex=0; startIndex < name.length(); startIndex = endIndex+1) {
85 endIndex = name.indexOf('.', startIndex);
86 if (endIndex < 0) {
87 endIndex = name.length();
89 if ((endIndex-startIndex) < 1)
96 for (int nonStartIndex=startIndex+1; nonStartIndex < endIndex; nonStartIndex++) {
  /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/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...]
  /frameworks/base/core/java/android/view/textclassifier/
TextLanguage.java 41 int startIndex, int endIndex, @NonNull EntityConfidence<Locale> languageConfidence) {
43 mEndIndex = endIndex;
114 * @param endIndex the end index of the detected languages in the text provided
117 public Builder(@IntRange(from = 0) int startIndex, @IntRange(from = 0) int endIndex) {
119 Preconditions.checkArgument(endIndex > startIndex);
121 mEndIndex = endIndex;
TextSelection.java 40 int startIndex, int endIndex, @NonNull EntityConfidence<String> entityConfidence,
43 mEndIndex = endIndex;
122 * @param endIndex the end index of the text selection. Must be greater than startIndex
124 public Builder(@IntRange(from = 0) int startIndex, @IntRange(from = 0) int endIndex) {
126 Preconditions.checkArgument(endIndex > startIndex);
128 mEndIndex = endIndex;
  /frameworks/base/core/tests/coretests/src/android/view/textclassifier/
TextClassificationManagerTest.java 64 int endIndex = startIndex + selected.length();
68 assertThat(mClassifier.suggestSelection(text, startIndex, endIndex, LOCALES),
80 int endIndex = startIndex + selected.length();
85 assertThat(mClassifier.suggestSelection(text, startIndex, endIndex, nullLocales),
97 int endIndex = startIndex + selected.length();
101 assertThat(mClassifier.suggestSelection(text, startIndex, endIndex, LOCALES),
112 int endIndex = startIndex + selected.length();
114 assertThat(mClassifier.suggestSelection(text, startIndex, endIndex, LOCALES),
115 isTextSelection(startIndex, endIndex, NO_TYPE));
125 int endIndex = startIndex + classifiedText.length()
    [all...]
  /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);
  /packages/apps/Dialer/java/com/android/dialer/compat/
PathInterpolatorCompat.java 96 int endIndex = mX.length - 1;
97 while (endIndex - startIndex > 1) {
98 int midIndex = (startIndex + endIndex) / 2;
100 endIndex = midIndex;
106 final float xRange = mX[endIndex] - mX[startIndex];
115 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];
  /external/icu/icu4c/source/i18n/unicode/
ufieldpositer.h 98 * @param endIndex
105 * values pointed to by beginIndex and endIndex are undefined.
117 int32_t *beginIndex, int32_t *endIndex);

Completed in 748 milliseconds

1 2 3 4 5 6 7 8 91011>>