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

12

/macosx-10.10.1/ICU-531.30/icuSources/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
H A Dnormlzr.h471 * This is equivalent to setIndexOnly(endIndex()) followed by previous().
484 * in the text. If this is possible, you can test getIndex()<endIndex()
485 * before calling next(), or (getIndex()<endIndex() || last()!=DONE)
565 int32_t endIndex(void) const;
/macosx-10.10.1/ICU-531.30/icuSources/samples/citer/
H A Dciter.cpp76 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
77 u_fprintf(out, "startIndex() or endIndex() failed\n");
135 int32_t i = iter.endIndex();
140 if (iter.startIndex() != 0 || iter.endIndex() != u_strlen(testText)) {
141 u_fprintf(out, "startIndex() or endIndex() failed\n");
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dtstnrapi.cpp90 copy.endIndex()!=iter.endIndex()
115 if(copy.endIndex()!=s.length()-1) {
H A Dcitrtest.cpp212 if (test1d->endIndex() > testText.length())
213 errln("Construction failed: endIndex is greater than the text length");
214 if (test1d->getIndex() < test1d->startIndex() || test1d->endIndex() < test1d->getIndex())
309 if (test8b->endIndex() != u_strlen(testText))
310 errln("Construction failed: endIndex is different from the text length");
311 if (test8c->getIndex() < test8c->startIndex() || test8c->endIndex() < test8c->getIndex())
396 if (iter.startIndex() != 0 || iter.endIndex() != text.length())
397 errln("startIndex() or endIndex() failed");
492 if (iter.startIndex() != 5 || iter.endIndex() != 15)
594 if (iter.startIndex() != 0 || iter.endIndex() !
[all...]
H A Dmeasfmttest.cpp922 CharString endIndex; local
923 endIndex.append(descPrefix, status).append("endIndex", status);
929 assertEquals(endIndex.data(), end, pos.getEndIndex());
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma_2/String/
H A Dsplit-002.js189 e = z.endIndex; // 14
229 return { endIndex : reResult.index + reResult[0].length, captures : cap };
242 return { endIndex : q + r, captures : cap }; // 7
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-block-trampolines.mm88 uintptr_t nextAvailable; // index of next available slot, endIndex() if no more available
120 static uintptr_t endIndex() {
125 return (index >= startIndex() && index < endIndex());
305 if (headPagePair->nextAvailable != headPagePair->endIndex())
368 assert(index >= pagePair->startIndex() && index < pagePair->endIndex());
374 // If the page is now full this will now be endIndex(), handled below.
378 if (nextAvailableIndex == pagePair->endIndex()) {
424 if (payload->nextAvailable <= TrampolineBlockPagePair::endIndex()) {
H A Dobjc-runtime-old.mm2942 ptrdiff_t endIndex;
2984 endIndex = ptr - *list;
2985 oldSize = (endIndex + 1) * sizeof(void *);
2993 bzero (&((*list)[endIndex]), newSize - oldSize);
2999 ptr = &((*list)[endIndex]);
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/Accessible2/
H A DAccessibleText.idl585 @param [in] endIndex
598 [in] long endIndex,
606 @param [in] endIndex
624 [in] long endIndex,
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DAccessibleTextImpl.h53 virtual HRESULT STDMETHODCALLTYPE scrollSubstringTo(long startIndex, long endIndex, enum IA2ScrollType scrollType);
54 virtual HRESULT STDMETHODCALLTYPE scrollSubstringToPoint(long startIndex, long endIndex, enum IA2CoordinateType coordinateType, long x, long y);
H A DAccessibleTextImpl.cpp454 HRESULT AccessibleText::scrollSubstringTo(long startIndex, long endIndex, enum IA2ScrollType scrollType) argument
460 endIndex = convertSpecialOffset(endIndex);
462 VisiblePositionRange textRange = m_object->visiblePositionRangeForRange(PlainTextRange(startIndex, endIndex-startIndex));
495 HRESULT AccessibleText::scrollSubstringToPoint(long startIndex, long endIndex, enum IA2CoordinateType coordinateType, long x, long y) argument
501 endIndex = convertSpecialOffset(endIndex);
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DSpiller.cpp141 SlotIndex endIndex = loadIndex.getNextIndex(); local
144 newLI->addRange(LiveRange(loadIndex, endIndex, loadVNI));
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dudateintervalformat.cpp99 position->endIndex = fp.getEndIndex();
H A Dunum.cpp198 pos->endIndex = fp.getEndIndex();
231 pos->endIndex = fp.getEndIndex();
274 pos->endIndex = fp.getEndIndex();
314 pos->endIndex = fp.getEndIndex();
859 pos->endIndex = fp.getEndIndex();
H A Duameasureformat.cpp192 pos->endIndex = fp.getEndIndex();
/macosx-10.10.1/tcl-105/tk/tk/generic/ttk/
H A DttkManager.c255 int endIndex = mgr->nSlaves++; local
259 while (endIndex > index) {
260 mgr->slaves[endIndex] = mgr->slaves[endIndex - 1];
261 --endIndex;
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/CodeGen/
H A DLiveInterval.h183 if (Pos >= endIndex())
195 /// If Pos is beyond endIndex, end() is returned.
286 SlotIndex endIndex() const {
287 assert(!empty() && "Call to endIndex() on empty interval.");
292 return index >= endIndex();
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Dnormlzr.cpp354 int32_t Normalizer::endIndex() const { function in class:Normalizer
355 return text->endIndex();
H A Duiter.cpp369 return ((CharacterIterator *)(iter->context))->endIndex();
450 } else if((int32_t)state<((CharacterIterator *)(iter->context))->startIndex() || ((CharacterIterator *)(iter->context))->endIndex()<(int32_t)state) {
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcnumtst.c275 if(pos1.beginIndex == 1 && pos1.endIndex == 12)
279 pos1.beginIndex, pos1.endIndex);
309 if(pos2.beginIndex == 9 && pos2.endIndex == 11)
313 pos1.beginIndex, pos1.endIndex);
361 if (pos2.beginIndex == 1 && pos2.endIndex == 6) {
365 pos1.beginIndex, pos1.endIndex);
878 if (fieldPos.endIndex != 27) {
880 __FILE__, __LINE__, 0, fieldPos.endIndex);
1402 if(pos1.beginIndex == 13 && pos1.endIndex == 15)
1406 pos1.beginIndex, pos1.endIndex);
[all...]
H A Dcnmdptst.c733 if (pos.beginIndex != 0 && pos.endIndex != 12) {
734 log_err("Fail: Formatting \"#,##,###\" pattern pos = (%d, %d) expected pos = (0, 12)\n", pos.beginIndex, pos.endIndex);
/macosx-10.10.1/JavaScriptCore-7600.1.17/yarr/
H A DYarrInterpreter.cpp1658 int endIndex = m_bodyDisjunction->terms.size(); local
1668 m_bodyDisjunction->terms[beginTerm].alternative.end = endIndex - beginTerm;
1675 m_bodyDisjunction->terms[endIndex].frameLocation = frameLocation;
1684 int endIndex = m_bodyDisjunction->terms.size(); local
1691 m_bodyDisjunction->terms[beginTerm].alternative.end = endIndex - beginTerm;
1698 m_bodyDisjunction->terms[endIndex].frameLocation = frameLocation;
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLogContentView.js487 var endIndex = this._selectionRange ? Math.max(this._selectionRange[1], newRange[1]) : newRange[1];
489 for (var i = startIndex; i <= endIndex; ++i) {

Completed in 304 milliseconds

12