HomeSort by relevance Sort by last modified time
    Searched defs:endIndex (Results 1 - 25 of 143) 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/core/fileapi/
BlobURL.cpp 60 unsigned endIndex = url.pathAfterLastSlash();
61 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/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/
SkPathOpsSimplify.cpp 18 int index, endIndex;
20 SkOpSegment* current = FindSortableTop(contourList, &firstContour, &index, &endIndex,
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...]
  /external/skia/src/pathops/
SkPathOpsSimplify.cpp 18 int index, endIndex;
20 SkOpSegment* current = FindSortableTop(contourList, &firstContour, &index, &endIndex,
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...]
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...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
PlatformLocale.cpp 255 bool Locale::detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex)
258 endIndex = input.length();
263 endIndex -= m_positiveSuffix.length();
270 endIndex -= m_negativeSuffix.length();
275 endIndex -= m_positiveSuffix.length();
303 unsigned endIndex;
304 if (!detectSignAndGetDigitRange(input, isNegative, startIndex, endIndex))
311 for (unsigned i = startIndex; i < endIndex;) {
  /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 681 var endIndex = matchInfo[CAPTURE1];
684 if (startIndex === endIndex && endIndex === currentIndex) {
707 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);
  /external/v8/src/
string.js 646 var endIndex = matchInfo[CAPTURE1];
649 if (startIndex === endIndex && endIndex === currentIndex) {
678 startIndex = currentIndex = endIndex;
  /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) {

Completed in 1440 milliseconds

1 2 3 4 5 6