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

123

/macosx-10.9.5/ICU-511.35/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.9.5/WebCore-7537.78.1/fileapi/
H A DBlobURL.cpp60 unsigned endIndex = url.pathAfterLastSlash(); local
61 return url.string().substring(startIndex, endIndex - startIndex - 1);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/atk/
H A DWebKitAccessibleInterfaceHypertext.cpp91 gint endIndex = atk_hyperlink_get_end_index(hyperlink); local
94 if (startIndex <= charIndex && charIndex < endIndex)
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DAudioResamplerKernel.cpp59 int endIndex = static_cast<int>(nextFractionalIndex + 1.0); // round up to next integer index local
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;
/macosx-10.9.5/WebCore-7537.78.1/platform/text/
H A DPlatformLocale.cpp259 bool Locale::detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex) argument
262 endIndex = input.length();
267 endIndex -= m_positiveSuffix.length();
274 endIndex -= m_negativeSuffix.length();
279 endIndex -= m_positiveSuffix.length();
307 unsigned endIndex; local
308 if (!detectSignAndGetDigitRange(input, isNegative, startIndex, endIndex))
315 for (unsigned i = startIndex; i < endIndex;) {
H A DPlatformLocale.h134 bool detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex);
H A DLocaleICU.h73 bool detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex);
/macosx-10.9.5/ICU-511.35/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.9.5/ICU-511.35/icuSources/test/intltest/
H A Dtstnrapi.cpp90 copy.endIndex()!=iter.endIndex()
115 if(copy.endIndex()!=s.length()-1) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/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.9.5/WebCore-7537.78.1/icu/unicode/
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
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLSourceTracker.cpp67 size_t length = static_cast<size_t>(token.endIndex() - token.startIndex());
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/Accessible2/
H A DAccessibleText.idl585 @param [in] endIndex
598 [in] long endIndex,
606 @param [in] endIndex
624 [in] long endIndex,
/macosx-10.9.5/WebKit-7537.78.2/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.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DSpiller.cpp141 SlotIndex endIndex = loadIndex.getNextIndex(); local
144 newLI->addRange(LiveRange(loadIndex, endIndex, loadVNI));
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dudateintervalformat.cpp99 position->endIndex = fp.getEndIndex();
H A Dunum.cpp194 pos->endIndex = fp.getEndIndex();
227 pos->endIndex = fp.getEndIndex();
270 pos->endIndex = fp.getEndIndex();
310 pos->endIndex = fp.getEndIndex();
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DApplyBlockElementCommand.cpp86 int endIndex = indexForVisiblePosition(endOfSelection, endScope); local
94 ASSERT(startIndex <= endIndex);
95 if (startScope == endScope && startIndex >= 0 && startIndex <= endIndex) {
97 VisiblePosition end(visiblePositionForIndex(endIndex, endScope.get()));
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLSelectElement.cpp1363 int endIndex = 0; local
1370 endIndex = nextSelectableListIndex(startIndex);
1372 endIndex = nextSelectableListIndexPageAway(startIndex, SkipForwards);
1377 endIndex = previousSelectableListIndex(startIndex);
1379 endIndex = nextSelectableListIndexPageAway(startIndex, SkipBackwards);
1384 endIndex = nextSelectableListIndex(m_activeSelectionEndIndex);
1387 endIndex = previousSelectableListIndex(m_activeSelectionEndIndex);
1390 endIndex = nextSelectableListIndexPageAway(m_activeSelectionEndIndex, SkipForwards);
1393 endIndex = nextSelectableListIndexPageAway(m_activeSelectionEndIndex, SkipBackwards);
1398 endIndex
[all...]
/macosx-10.9.5/tcl-102/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.9.5/WebCore-7537.78.1/inspector/front-end/
H A DUIUtils.js929 var endIndex = startIndex;
930 while (endIndex < snapshotLength && nodeRanges[endIndex].offset + nodeRanges[endIndex].length < endOffset)
931 endIndex++;
932 if (endIndex === snapshotLength)
939 var lastTextNode = textNodeSnapshot.snapshotItem(endIndex);
941 lastTextNode.textContent = lastText.substring(endOffset - nodeRanges[endIndex].offset);
944 if (startIndex === endIndex) {
964 for (var j = startIndex + 1; j < endIndex;
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/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();

Completed in 187 milliseconds

123