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

/external/icu4c/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
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 { function in class:CharacterIterator
/external/apache-http/src/org/apache/http/util/
H A DCharArrayBuffer.java206 public int indexOf(int ch, int beginIndex, int endIndex) { argument
210 if (endIndex > this.len) {
211 endIndex = this.len;
213 if (beginIndex > endIndex) {
216 for (int i = beginIndex; i < endIndex; i++) {
228 public String substring(int beginIndex, int endIndex) { argument
232 if (endIndex > this.len) {
235 if (beginIndex > endIndex) {
238 return new String(this.buffer, beginIndex, endIndex - beginIndex);
241 public String substringTrimmed(int beginIndex, int endIndex) { argument
[all...]
/external/icu4c/common/
H A Dnormlzr.cpp422 int32_t Normalizer::endIndex() const { function in class:Normalizer
/external/webkit/WebCore/editing/
H A DIndentOutdentCommand.cpp302 int endIndex = indexForVisiblePosition(endOfSelection); local
315 RefPtr<Range> endRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), endIndex, 0, true);
H A DApplyStyleCommand.cpp604 int endIndex = TextIterator::rangeLength(endRange.get(), true); local
628 endRange = TextIterator::rangeFromLocationAndLength(static_cast<Element*>(scope), endIndex, 0, true);
H A DCompositeEditCommand.cpp891 int endIndex = -1; local
910 endIndex = 0;
913 endIndex = TextIterator::rangeLength(endRange.get(), true);
988 RefPtr<Range> end = TextIterator::rangeFromLocationAndLength(document()->documentElement(), destinationIndex + endIndex, 0, true);
/external/webkit/WebCore/inspector/front-end/
H A DTimelinePanel.js364 var endIndex = Math.min(recordsInWindow.length, Math.ceil(visibleBottom / rowHeight)); variable
365 while (endIndex < recordsInWindow.length - 1 && recordsInWindow[endIndex].parent)
366 endIndex++;
373 this._bottomGapElement.style.height = (recordsInWindow.length - endIndex) * rowHeight + "px";
381 for (var i = startIndex; i < endIndex; ++i) {
/external/webkit/WebCore/dom/
H A DSelectElement.cpp734 int endIndex = 0; local
738 endIndex = nextSelectableListIndex(data, element, lastSelectedListIndex(data, element));
740 endIndex = previousSelectableListIndex(data, element, optionToListIndex(data, element, selectedIndex(data, element)));
744 endIndex = nextSelectableListIndex(data, element, data.activeSelectionEndIndex());
746 endIndex = previousSelectableListIndex(data, element, data.activeSelectionEndIndex());
753 ASSERT(endIndex >= 0 && (unsigned) endIndex < listItems.size());
754 setActiveSelectionEndIndex(data, endIndex);
765 toRenderListBox(element->renderer())->scrollToRevealElementAtListIndex(endIndex);
/external/webkit/WebCore/rendering/
H A DRenderListBox.cpp471 int endIndex = scrollToward(pos); local
472 if (endIndex >= 0) {
477 select->setActiveSelectionAnchorIndex(endIndex);
479 select->setActiveSelectionEndIndex(endIndex);
/external/webkit/JavaScriptCore/yarr/
H A DRegexInterpreter.cpp1391 int endIndex = m_bodyDisjunction->terms.size(); local
1401 m_bodyDisjunction->terms[beginTerm].alternative.end = endIndex - beginTerm;
1408 m_bodyDisjunction->terms[endIndex].frameLocation = frameLocation;
1417 int endIndex = m_bodyDisjunction->terms.size(); local
1424 m_bodyDisjunction->terms[beginTerm].alternative.end = endIndex - beginTerm;
1431 m_bodyDisjunction->terms[endIndex].frameLocation = frameLocation;
/external/webkit/WebCore/css/
H A DCSSStyleSelector.cpp2893 int startIndex, int endIndex)
2898 for (int i = startIndex; i <= endIndex; i++) {
2892 applyDeclarations(bool applyFirst, bool isImportant, int startIndex, int endIndex) argument
/external/icu4c/i18n/
H A Ducol.cpp3019 uint32_t endIndex = 0; local
3150 endIndex = trailingZeroIndex ? trailingZeroIndex : ((digIndx/2) + 2) ;
3159 for(i = 2; i < endIndex; i++){
3167 numTempBuf[endIndex-1] -= 1;
3179 //size = ((endIndex+1) & ~1)/2;
3184 while(i < endIndex)
3187 if ( i < endIndex)
3818 uint32_t endIndex = 0; local
3975 digIndx = endIndex = leadingZeroIndex = trailingZeroCount = 0;
3997 endIndex
[all...]

Completed in 198 milliseconds