HomeSort by relevance Sort by last modified time
    Searched defs:endIndex (Results 1 - 25 of 593) 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;
709 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...]
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 110 int endIndex = pos;
111 String s = buffer.substring(beginIndex, endIndex);
  /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...]
  /frameworks/base/libs/hwui/
Interpolator.cpp 100 size_t endIndex = mX.size() - 1;
102 while (endIndex > startIndex + 1) {
103 int midIndex = (startIndex + endIndex) / 2;
105 endIndex = midIndex;
111 float xRange = mX[endIndex] - mX[startIndex];
120 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/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
parseConst.cpp 139 int endIndex = index + size;
144 for (int i = index; i < endIndex; i++) {
178 for (int i = startIndex; i < endIndex; i++) {
  /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 356 int32_t Normalizer::endIndex() const {
357 return text->endIndex();
  /external/ims/rcs/rcsservice/src/com/android/service/ims/presence/
PresenceInfoParser.java 260 int endIndex = uriValue.indexOf("@", startIndex);
263 " startIndex=" + startIndex + " endIndex=" + endIndex);
266 if(endIndex != -1){
267 number = uriValue.substring(0, 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/skia/samplecode/
SampleAAGeometry.cpp 132 int endIndex = 0;
136 endIndex += 1;
139 endIndex += 1;
143 endIndex += 2;
146 endIndex += 3;
155 if (startIndex <= index && index < endIndex) {
    [all...]
  /frameworks/base/core/java/android/database/
MatrixCursor.java 87 final int endIndex = rowCount * columnCount;
88 ensureCapacity(endIndex);
197 private final int endIndex;
204 this.endIndex = index + columnCount;
215 if (index == endIndex) {
  /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...]

Completed in 1344 milliseconds

1 2 3 4 5 6 7 8 91011>>