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

1 2 3 4 5 6

  /external/chromium_org/third_party/icu/source/common/unicode/
umisc.h 47 int32_t endIndex;
chariter.h 145 * (toward endIndex()). If there are
155 * (toward endIndex()). If there are
489 * (toward endIndex()), and returns that code unit. If there are
498 * (toward endIndex()), and returns that code point. If there are
558 inline int32_t endIndex(void) const;
701 CharacterIterator::endIndex(void) const {
  /external/icu4c/common/unicode/
umisc.h 47 int32_t endIndex;
chariter.h 145 * (toward endIndex()). If there are
155 * (toward endIndex()). If there are
495 * (toward endIndex()), and returns that code unit. If there are
504 * (toward endIndex()), and returns that code point. If there are
564 inline int32_t endIndex(void) const;
707 CharacterIterator::endIndex(void) const {
  /external/chromium_org/third_party/WebKit/Source/platform/blob/
BlobURL.cpp 54 unsigned endIndex = url.pathAfterLastSlash();
55 return url.string().substring(startIndex, endIndex - startIndex - 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/chromium_org/third_party/WebKit/Source/core/rendering/
AbstractInlineTextBox.h 62 WordBoundaries(int startIndex, int endIndex) : startIndex(startIndex), endIndex(endIndex) { }
64 int endIndex;
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioResamplerKernel.cpp 59 int endIndex = static_cast<int>(nextFractionalIndex + 1.0); // round up to next integer index
62 // We need to fill the buffer up to and including endIndex (so add 1) but we've already buffered m_fillIndex frames from last time.
63 size_t framesNeeded = 1 + endIndex - m_fillIndex;
  /external/chromium_org/third_party/WebKit/Source/wtf/
NonCopyingSort.h 69 ptrdiff_t endIndex = count - 1;
70 while (endIndex > 0) {
71 swap(start[endIndex], start[0]);
72 siftDown(start, 0, endIndex - 1, compareLess);
73 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/core/java/android/net/http/
CharArrayBuffers.java 67 int endIndex = buffer.length();
70 for (int i = beginIndex; i < endIndex; i++) {
  /external/apache-http/src/org/apache/http/impl/auth/
AuthSchemeBase.java 105 int endIndex = pos;
106 String s = buffer.substring(beginIndex, endIndex);
  /libcore/luni/src/main/java/java/text/
FieldPosition.java 34 private int myField, beginIndex, endIndex;
75 beginIndex = endIndex = 0;
96 && beginIndex == pos.beginIndex && endIndex == pos.endIndex;
114 return endIndex;
138 return attributeHash + myField * 10 + beginIndex * 100 + endIndex;
158 endIndex = index;
169 + myField + ", beginIndex=" + beginIndex + ", endIndex="
170 + endIndex + "]";
  /external/apache-http/src/org/apache/http/impl/client/
AbstractAuthenticationHandler.java 98 int endIndex = pos;
99 String s = buffer.substring(beginIndex, endIndex);
  /external/chromium_org/third_party/skia/src/pathops/
SkLineParameters.h 28 int endIndex = 1;
29 cubicEndPoints(pts, 0, endIndex);
34 cubicEndPoints(pts, 0, ++endIndex);
35 SkASSERT(endIndex == 2);
40 cubicEndPoints(pts, 0, ++endIndex); // line
41 SkASSERT(endIndex == 3);
50 if (NotAlmostEqualUlps(pts[0].fY, pts[++endIndex].fY)) {
51 if (pts[0].fY > pts[endIndex].fY) {
56 if (endIndex == 3) {
59 SkASSERT(endIndex == 2)
    [all...]
SkPathOpsSimplify.cpp 18 int index, endIndex;
21 &index, &endIndex, &topLeft, &topUnsortable, &topDone);
33 if (current->activeWinding(index, endIndex)) {
46 int nextEnd = endIndex;
53 current->addCurveTo(index, endIndex, simple, true);
61 current->xyAtT(endIndex).fX, current->xyAtT(endIndex).fY);
63 current->addCurveTo(index, endIndex, simple, true);
66 endIndex = nextEnd;
68 || !current->done(SkMin32(index, endIndex))));
    [all...]
SkReduceOrder.cpp 40 int endIndex = 2;
41 while (quad[startIndex].approximatelyEqual(quad[endIndex])) {
42 --endIndex;
43 if (endIndex == 0) {
48 if (!quad.isLinear(startIndex, endIndex)) {
160 int endIndex = 3;
161 while (cubic[startIndex].approximatelyEqual(cubic[endIndex])) {
162 --endIndex;
163 if (endIndex == 0) {
168 if (!cubic.isLinear(startIndex, endIndex)) {
    [all...]
  /external/skia/src/pathops/
SkLineParameters.h 28 int endIndex = 1;
29 cubicEndPoints(pts, 0, endIndex);
34 cubicEndPoints(pts, 0, ++endIndex);
35 SkASSERT(endIndex == 2);
40 cubicEndPoints(pts, 0, ++endIndex); // line
41 SkASSERT(endIndex == 3);
50 if (NotAlmostEqualUlps(pts[0].fY, pts[++endIndex].fY)) {
51 if (pts[0].fY > pts[endIndex].fY) {
56 if (endIndex == 3) {
59 SkASSERT(endIndex == 2)
    [all...]
SkPathOpsSimplify.cpp 18 int index, endIndex;
21 &index, &endIndex, &topLeft, &topUnsortable, &topDone);
33 if (current->activeWinding(index, endIndex)) {
46 int nextEnd = endIndex;
53 current->addCurveTo(index, endIndex, simple, true);
61 current->xyAtT(endIndex).fX, current->xyAtT(endIndex).fY);
63 current->addCurveTo(index, endIndex, simple, true);
66 endIndex = nextEnd;
68 || !current->done(SkMin32(index, endIndex))));
    [all...]
  /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...]
  /external/chromium_org/third_party/icu/source/common/
normlzr.cpp 355 int32_t Normalizer::endIndex() const {
356 return text->endIndex();
  /external/chromium_org/v8/src/
string.js 680 var endIndex = matchInfo[CAPTURE1];
683 if (startIndex === endIndex && endIndex === currentIndex) {
706 startIndex = currentIndex = endIndex;
  /external/icu4c/common/
normlzr.cpp 354 int32_t Normalizer::endIndex() const {
355 return text->endIndex();
  /external/llvm/lib/CodeGen/
Spiller.cpp 141 SlotIndex endIndex = loadIndex.getNextIndex();
144 newLI->addRange(LiveRange(loadIndex, endIndex, loadVNI));
  /external/proguard/src/proguard/
WordReader.java 177 int endIndex;
184 endIndex = ++currentIndex;
206 endIndex = currentIndex++;
225 endIndex = currentIndex;
229 currentWord = currentLine.substring(startIndex, endIndex);

Completed in 414 milliseconds

1 2 3 4 5 6