Searched refs:endIndex (Results 1 - 25 of 186) sorted by relevance

12345678

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dnav_braille.js23 * endIndex: (undefined|number)}} kwargs The arguments for braille.
27 * endIndex The end of a selection within text.
48 this.endIndex = goog.isDef(kwargs.endIndex) ?
49 kwargs.endIndex : this.startIndex;
70 typeof json.endIndex !== 'number') {
76 endIndex: json.endIndex
95 ' endIndex="' + this.endIndex
[all...]
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...]
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dumisc.h47 int32_t endIndex; member in struct:UFieldPosition
/external/icu/icu4c/source/common/unicode/
H A Dumisc.h47 int32_t endIndex; member in struct:UFieldPosition
/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/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DUtils.java64 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/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/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/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/skia/src/pathops/
H A DSkPathOpsCommon.h18 SkOpSegment* FindChase(SkTDArray<SkOpSpan*>* chase, int* tIndex, int* endIndex);
20 bool* firstContour, int* index, int* endIndex, SkPoint* topLeft,
H A DSkPathOpsOp.cpp12 static SkOpSegment* findChaseOp(SkTDArray<SkOpSpan*>& chase, int* tIndex, int* endIndex) { argument
21 *endIndex = -1;
22 if (const SkOpAngle* last = segment->activeAngle(*tIndex, tIndex, endIndex, &done,
28 *endIndex = last->end();
43 const SkOpAngle* angle = segment->spanToAngle(*tIndex, *endIndex);
74 *endIndex = end;
130 int index, endIndex; local
135 &index, &endIndex, &topLeft, &topUnsortable, &topDone, &onlyVertical, firstPass);
156 if (current->activeOp(index, endIndex, xorMask, xorOpMask, op)) {
163 int nextEnd = endIndex;
[all...]
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...]
H A DSkOpSegment.h109 bool isConnected(int startIndex, int endIndex) const {
110 return fTs[startIndex].fWindSum != SK_MinS32 || fTs[endIndex].fWindSum != SK_MinS32;
134 int oppSign(int startIndex, int endIndex) const {
135 int result = startIndex < endIndex ? -fTs[startIndex].fOppValue : fTs[endIndex].fOppValue;
186 void setUpWinding(int index, int endIndex, int* maxWinding, int* sumWinding) { argument
187 int deltaSum = spanSign(index, endIndex);
213 int spanSign(int startIndex, int endIndex) const {
214 int result = startIndex < endIndex ? -fTs[startIndex].fWindValue : fTs[endIndex]
[all...]
/external/skia/src/pathops/
H A DSkPathOpsCommon.h18 SkOpSegment* FindChase(SkTDArray<SkOpSpan*>* chase, int* tIndex, int* endIndex);
20 bool* firstContour, int* index, int* endIndex, SkPoint* topLeft,
H A DSkPathOpsOp.cpp12 static SkOpSegment* findChaseOp(SkTDArray<SkOpSpan*>& chase, int* tIndex, int* endIndex) { argument
21 *endIndex = -1;
22 if (const SkOpAngle* last = segment->activeAngle(*tIndex, tIndex, endIndex, &done,
28 *endIndex = last->end();
43 const SkOpAngle* angle = segment->spanToAngle(*tIndex, *endIndex);
74 *endIndex = end;
130 int index, endIndex; local
135 &index, &endIndex, &topLeft, &topUnsortable, &topDone, &onlyVertical, firstPass);
156 if (current->activeOp(index, endIndex, xorMask, xorOpMask, op)) {
163 int nextEnd = endIndex;
[all...]
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...]
H A DSkOpSegment.h109 bool isConnected(int startIndex, int endIndex) const {
110 return fTs[startIndex].fWindSum != SK_MinS32 || fTs[endIndex].fWindSum != SK_MinS32;
134 int oppSign(int startIndex, int endIndex) const {
135 int result = startIndex < endIndex ? -fTs[startIndex].fOppValue : fTs[endIndex].fOppValue;
184 void setUpWinding(int index, int endIndex, int* maxWinding, int* sumWinding) { argument
185 int deltaSum = spanSign(index, endIndex);
211 int spanSign(int startIndex, int endIndex) const {
212 int result = startIndex < endIndex ? -fTs[startIndex].fWindValue : fTs[endIndex]
[all...]
/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/proguard/src/proguard/
H A DWordReader.java188 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/chromium_org/third_party/isimpledom/
H A DISimpleDOMText.idl59 cpp_quote("// /* [in] */ unsigned int endIndex,")
72 cpp_quote("// /* [in] */ unsigned int endIndex);")
95 [in] unsigned int endIndex,
102 [in] unsigned int endIndex,
109 [in] unsigned int endIndex);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DShapeOps.cpp139 int index, endIndex; local
141 Segment* current = findSortableTop(contourList, firstContour, index, endIndex, topLeft,
154 if (current->activeOp(index, endIndex, xorMask, xorOpMask, op)) {
163 int nextEnd = endIndex;
170 current->addCurveTo(index, endIndex, simple, true);
178 current->xyAtT(endIndex).fX, current->xyAtT(endIndex).fY);
180 current->addCurveTo(index, endIndex, simple, true);
183 endIndex = nextEnd;
185 || !current->done(SkMin32(index, endIndex))));
[all...]
/external/skia/experimental/Intersection/
H A DShapeOps.cpp139 int index, endIndex; local
141 Segment* current = findSortableTop(contourList, firstContour, index, endIndex, topLeft,
154 if (current->activeOp(index, endIndex, xorMask, xorOpMask, op)) {
163 int nextEnd = endIndex;
170 current->addCurveTo(index, endIndex, simple, true);
178 current->xyAtT(endIndex).fX, current->xyAtT(endIndex).fY);
180 current->addCurveTo(index, endIndex, simple, true);
183 endIndex = nextEnd;
185 || !current->done(SkMin32(index, endIndex))));
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs16 public SubList( IList source, int startIndex, int endIndex )
20 if ( startIndex < 0 || endIndex < 0 )
22 if ( startIndex > endIndex || endIndex >= source.Count )
27 _endIndex = endIndex;
177 public SubList( IList<T> source, int startIndex, int endIndex )
181 if ( startIndex < 0 || endIndex < 0 )
183 if ( startIndex > endIndex || endIndex >= source.Count )
188 _endIndex = endIndex;
[all...]

Completed in 574 milliseconds

12345678