Searched defs:endIndex (Results 1 - 25 of 101) sorted by relevance

12345

/external/chromium_org/third_party/icu/source/common/unicode/
H A Dumisc.h47 int32_t endIndex; member in struct:UFieldPosition
H A Dchariter.h145 * (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 { function in class:CharacterIterator
/external/icu/icu4c/source/common/unicode/
H A Dumisc.h47 int32_t endIndex; member in struct:UFieldPosition
H A Dchariter.h145 * (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 { function in class:CharacterIterator
/external/chromium_org/third_party/WebKit/Source/platform/blob/
H A DBlobURL.cpp54 unsigned endIndex = url.pathAfterLastSlash(); local
55 return url.string().substring(startIndex, endIndex - startIndex - 1);
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DNonCopyingSort.h69 ptrdiff_t endIndex = count - 1; local
70 while (endIndex > 0) {
71 swap(start[endIndex], start[0]);
72 siftDown(start, 0, endIndex - 1, compareLess);
73 endIndex--;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAbstractInlineTextBox.h62 WordBoundaries(int startIndex, int endIndex) : startIndex(startIndex), endIndex(endIndex) { } argument
64 int endIndex; member in struct:blink::AbstractInlineTextBox::WordBoundaries
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioResamplerKernel.cpp57 int endIndex = static_cast<int>(nextFractionalIndex + 1.0); // round up to next integer index local
60 // 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.
61 size_t framesNeeded = 1 + endIndex - m_fillIndex;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkLineParameters.h32 int endIndex = 1; local
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
[all...]
H A DSkPathOpsSimplify.cpp20 int index, endIndex; local
25 &index, &endIndex, &topLeft, &topUnsortable, &topDone, &onlyVertical, firstPass);
39 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/jsilver/src/com/google/streamhtmlparser/util/
H A DJavascriptTokenBuffer.java61 private int endIndex; field in class:JavascriptTokenBuffer
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/skia/src/pathops/
H A DSkLineParameters.h32 int endIndex = 1; local
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
[all...]
H A DSkPathOpsSimplify.cpp20 int index, endIndex; local
25 &index, &endIndex, &topLeft, &topUnsortable, &topDone, &onlyVertical, firstPass);
39 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/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java211 public int indexOf(int ch, int beginIndex, int endIndex) { argument
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) { argument
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) { argument
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Deditable_text_area_shadow.js26 * @type {Object.<number, {startIndex: number, endIndex: number}>}
75 * @type {Object.<number, {startIndex: number, endIndex: number}>}
77 var lines = {0: {startIndex: 0, endIndex: 0}};
122 lines[lineIndex].endIndex = offset - 1;
124 lines[lineIndex] = {startIndex: offset, endIndex: offset};
137 lines[lineIndex].endIndex = lastGoodOffset;
139 lines[lineIndex] = {startIndex: lastGoodOffset, endIndex: lastGoodOffset};
149 lines[lineIndex].endIndex = text.length;
154 for (var j = lines[i].startIndex; j <= lines[i].endIndex; j++) {
189 return this.lines_[index].endIndex;
[all...]
H A Dcontent_editable_extractor.js43 * @type {Object.<number, {startIndex: number, endIndex: number}>}
64 * @type {Object.<number, {startIndex: number, endIndex: number}>}
66 var lines = {0: {startIndex: 0, endIndex: 0}};
149 lines[lineIndex].endIndex = textSize;
151 lines[lineIndex] = {startIndex: textSize, endIndex: textSize};
169 lines[lineIndex].endIndex = textSize;
174 for (var j = lines[i].startIndex; j <= lines[i].endIndex; j++) {
234 return this.lines_[index].endIndex;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticReduceOrder.cpp69 int endIndex = 2; local
70 while (quad[startIndex].approximatelyEqual(quad[endIndex])) {
71 --endIndex;
72 if (endIndex == 0) {
77 if (!isLinear(quad, startIndex, endIndex)) {
127 bool isLinear(const Quadratic& quad, int startIndex, int endIndex) { argument
129 lineParameters.quadEndPoints(quad, startIndex, endIndex);
H A DSimplifyFindNext_Test.cpp21 int contourWinding, int spanWinding, int startIndex, int endIndex,
34 pts[0] = segment.xyAtT(&segment.span(endIndex));
36 int nextEnd = endIndex;
20 testCommon( int contourWinding, int spanWinding, int startIndex, int endIndex, SkTArray<SimplifyFindNextTest::Contour>& contours) argument
/external/chromium_org/v8/src/
H A Dstring.js645 var endIndex = matchInfo[CAPTURE1]; variable
648 if (startIndex === endIndex && endIndex === currentIndex) {
669 startIndex = currentIndex = endIndex;
/external/skia/experimental/Intersection/
H A DQuadraticReduceOrder.cpp69 int endIndex = 2; local
70 while (quad[startIndex].approximatelyEqual(quad[endIndex])) {
71 --endIndex;
72 if (endIndex == 0) {
77 if (!isLinear(quad, startIndex, endIndex)) {
127 bool isLinear(const Quadratic& quad, int startIndex, int endIndex) { argument
129 lineParameters.quadEndPoints(quad, startIndex, endIndex);
H A DSimplifyFindNext_Test.cpp21 int contourWinding, int spanWinding, int startIndex, int endIndex,
34 pts[0] = segment.xyAtT(&segment.span(endIndex));
36 int nextEnd = endIndex;
20 testCommon( int contourWinding, int spanWinding, int startIndex, int endIndex, SkTArray<SimplifyFindNextTest::Contour>& contours) argument
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLString.java548 * extends to the character at index <code>endIndex - 1</code>.
549 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
552 * @param endIndex the ending index, exclusive.
556 * <code>endIndex</code> is larger than the length of
559 * <code>endIndex</code>.
561 public abstract XMLString substring(int beginIndex, int endIndex); argument
H A DXMLStringDefault.java641 * extends to the character at index <code>endIndex - 1</code>.
642 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
645 * @param endIndex the ending index, exclusive.
649 * <code>endIndex</code> is larger than the length of
652 * <code>endIndex</code>.
654 public XMLString substring(int beginIndex, int endIndex) argument
656 return new XMLStringDefault(m_str.substring(beginIndex, endIndex));
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXString.java881 * extends to the character at index <code>endIndex - 1</code>.
882 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
885 * @param endIndex the ending index, exclusive.
889 * <code>endIndex</code> is larger than the length of
892 * <code>endIndex</code>.
894 public XMLString substring(int beginIndex, int endIndex) argument
896 return new XString(str().substring(beginIndex, endIndex));
H A DXStringForFSB.java770 * extends to the character at index <code>endIndex - 1</code>.
771 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
774 * @param endIndex the ending index, exclusive.
778 * <code>endIndex</code> is larger than the length of
781 * <code>endIndex</code>.
783 public XMLString substring(int beginIndex, int endIndex) argument
786 int len = endIndex - beginIndex;

Completed in 2227 milliseconds

12345