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

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/common/unicode/
umisc.h 49 int32_t endIndex;
chariter.h 147 * (toward endIndex()). If there are
157 * (toward endIndex()). If there are
497 * (toward endIndex()), and returns that code unit. If there are
506 * (toward endIndex()), and returns that code point. If there are
566 inline int32_t endIndex(void) const;
713 CharacterIterator::endIndex(void) const {
  /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)) {
  /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/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/support/textclassifier/src/androidTest/java/androidx/textclassifier/
TextSelectionTest.java 37 final int endIndex = 37;
39 final TextSelection reference = new TextSelection.Builder(startIndex, endIndex)
52 assertEquals(endIndex, result.getSelectionEndIndex());
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 110 int endIndex = pos;
111 String s = buffer.substring(beginIndex, endIndex);
  /frameworks/base/core/tests/coretests/src/android/view/textclassifier/
TextSelectionTest.java 38 final int endIndex = 37;
40 final TextSelection reference = new TextSelection.Builder(startIndex, endIndex)
54 assertEquals(endIndex, result.getSelectionEndIndex());
  /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/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/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 103 int endIndex = pos;
104 String s = buffer.substring(beginIndex, endIndex);
  /external/icu/icu4c/source/i18n/
scientificnumberformatter.cpp 41 int32_t endIndex,
47 for (int32_t i = beginIndex; i < endIndex;) {
153 int32_t endIndex = fp.getEndIndex();
171 copyFromOffset = 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...]
  /external/skqp/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/tests/coretests/src/android/util/
SparseLongArrayTest.java 59 private void assertRemoved(int startIndex, int endIndex) {
61 if (i >= startIndex && i <= endIndex) {
147 final int endIndex = 200;
148 mSparseLongArray.removeAtRange(startIndex, endIndex - startIndex + 1);
149 for (int i = endIndex; i >= startIndex; i--) {
152 assertEquals(TEST_SIZE - (endIndex - startIndex + 1), mSparseLongArray.size());
153 assertRemoved(startIndex, endIndex);
  /frameworks/base/libs/hwui/
Interpolator.cpp 106 size_t endIndex = mX.size() - 1;
108 while (endIndex > startIndex + 1) {
109 int midIndex = (startIndex + endIndex) / 2;
111 endIndex = midIndex;
117 float xRange = mX[endIndex] - mX[startIndex];
126 float endY = mY[endIndex];
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
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...]
  /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 + ']';
  /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,
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
parseConst.cpp 133 int endIndex = index + size;
138 for (int i = index; i < endIndex; i++) {
172 for (int i = startIndex; i < endIndex; i++) {
  /developers/samples/android/ui/text/TextStyling-Java/app/src/main/java/com/android/example/text/styling/parser/
Parser.java 73 int endIndex = matcher.end();
81 int endOfQuote = getEndOfParagraph(string, endIndex);
83 String quotedText = string.substring(endIndex, endOfQuote);
95 private static int getEndOfParagraph(@NonNull String string, int endIndex) {
96 int endOfParagraph = string.indexOf(LINE_SEPARATOR, endIndex);
117 int endIndex = matcher.end();
119 String mark = string.substring(startIndex, endIndex);
130 int endOfBulletPoint = getEndOfParagraph(string, endIndex);
131 text = string.substring(endIndex, endOfBulletPoint);
141 int markEnd = string.indexOf(CODE_BLOCK, endIndex);
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
EventLocationEventTestCase.java 100 long endIndex = replyPacket.getNextValueAsLong();
102 " and ends at " + endIndex);
109 for (long idx = startIndex; idx <= endIndex; ++idx) {
  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 95 DenseIndex endIndex;
110 endIndex = numParameters - degree;
115 endIndex = numParameters - degree - 1;
118 // There are (endIndex - startIndex + 1) knots obtained from the averaging
120 DenseIndex numAverageKnots = endIndex - startIndex + 3;
125 for (DenseIndex i = startIndex; i <= endIndex; ++i)
  /external/guava/guava/src/com/google/common/escape/
UnicodeEscaper.java 224 int endIndex = destIndex + charsSkipped;
225 if (dest.length < endIndex) {
226 dest = growBuffer(dest, destIndex, endIndex);
229 destIndex = endIndex;
  /external/icu/icu4c/source/common/
normlzr.cpp 362 int32_t Normalizer::endIndex() const {
363 return text->endIndex();

Completed in 1336 milliseconds

1 2 3 4 5 6 7 8 91011>>