Searched defs:startIndex (Results 1 - 23 of 23) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
H A DArgList.cpp31 void ArgList::getSlice(int startIndex, ArgList& result) const argument
33 if (startIndex <= 0 || static_cast<unsigned>(startIndex) >= m_argCount) {
37 result = ArgList(m_args + startIndex, m_argCount - startIndex);
/external/icu4c/common/unicode/
H A Dchariter.h510 * (toward startIndex()), and returns that code unit. If there are
519 * (toward startIndex()), and returns that code point. If there are
547 inline int32_t startIndex(void) const;
696 CharacterIterator::startIndex(void) const { function in class:CharacterIterator
/external/zlib/contrib/dotzlib/DotZLib/
H A DCodecBase.cs166 /// <param name="startIndex">The index of the first byte to copy</param>
168 protected void copyInput(byte[] data, int startIndex, int count) argument
170 Array.Copy(data, startIndex, _inBuffer,0, count);
H A DUnitTests.cs186 public void CDataAvail(byte[] data, int startIndex, int count) argument
189 compressedData.Add(data[i+startIndex]);
220 private void DDataAvail(byte[] data, int startIndex, int count) argument
223 uncompressedData.Add(data[i+startIndex]);
H A DDotZLib.cs164 /// <paramref name="startIndex">The index of the first processed byte in <c>data</c></paramref>
167 /// You cannot assume that startIndex will be zero.
169 public delegate void DataAvailableHandler(byte[] data, int startIndex, int count); argument
/external/icu4c/common/
H A Dnormlzr.cpp413 int32_t Normalizer::startIndex() const { function in class:Normalizer
H A Duvector.cpp288 int32_t UVector::indexOf(void* obj, int32_t startIndex) const {
291 return indexOf(key, startIndex, HINT_KEY_POINTER);
294 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const {
297 return indexOf(key, startIndex, HINT_KEY_INTEGER);
301 int32_t UVector::indexOf(UHashTok key, int32_t startIndex, int8_t hint) const { argument
304 for (i=startIndex; i<count; ++i) {
310 for (i=startIndex; i<count; ++i) {
H A Duhash.c334 int32_t theIndex, startIndex; local
340 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length;
366 } while (theIndex != startIndex);
H A Dserv.cpp467 int32_t startIndex = 0; local
474 startIndex = i + 1;
478 if (startIndex == 0) {
499 int32_t index = startIndex;
H A Dunorm.cpp3471 int32_t &startIndex,
3479 startIndex=bufferCapacity; /* fill the buffer from the end backwards */
3486 if(startIndex < (c2==0 ? 1 : 2)) {
3497 startIndex+=bufferCapacity-bufferLength;
3500 buffer[--startIndex]=c;
3502 buffer[--startIndex]=c2;
3512 return bufferCapacity-startIndex;
3525 int32_t startIndex=0, bufferLength=0, bufferCapacity=0, destLength=0; local
3607 startIndex,
3612 buffer+startIndex, bufferLengt
3468 _findPreviousIterationBoundary(UCharIterator &src, IsPrevBoundaryFn *isPrevBoundary, uint32_t minC, uint32_t mask, UChar *&buffer, int32_t &bufferCapacity, int32_t &startIndex, UErrorCode *pErrorCode) argument
[all...]
/external/icu4c/i18n/
H A Dplurfmt.cpp475 int32_t startIndex=0; local
491 result += UnicodeString(message, startIndex, i);
493 startIndex = i + 1;
498 if ( startIndex < message.length() ) {
499 result += UnicodeString(message, startIndex, message.length()-startIndex);
H A Duregex.cpp300 int32_t startIndex,
306 if (startIndex == -1) {
309 result = regexp->fMatcher->matches(startIndex, *status);
323 int32_t startIndex,
329 if (startIndex == -1) {
332 result = regexp->fMatcher->lookingAt(startIndex, *status);
346 int32_t startIndex,
352 if (startIndex == -1) {
356 result = regexp->fMatcher->find(startIndex, *status);
299 uregex_matches(URegularExpression *regexp, int32_t startIndex, UErrorCode *status) argument
322 uregex_lookingAt(URegularExpression *regexp, int32_t startIndex, UErrorCode *status) argument
345 uregex_find(URegularExpression *regexp, int32_t startIndex, UErrorCode *status) argument
H A Drbnf.cpp1190 int32_t startIndex = parsePosition.getIndex(); local
1191 parsePosition.setIndex(startIndex + high_pp.getIndex());
1196 parsePosition.setErrorIndex(startIndex + errorIndex);
H A Dusearch.cpp3597 * Find the next break boundary after startIndex. If the UStringSearch object
3601 static int32_t nextBoundaryAfter(UStringSearch *strsrch, int32_t startIndex) { argument
3606 U_ASSERT(startIndex>=0);
3607 U_ASSERT(startIndex<=textLen);
3609 if (startIndex >= textLen) {
3610 return startIndex;
3614 int32_t i = startIndex;
3647 return ubrk_following(breakiterator, startIndex);
3650 return startIndex;
3653 return startIndex;
[all...]
/external/webkit/WebCore/editing/
H A DIndentOutdentCommand.cpp301 int startIndex = indexForVisiblePosition(startOfSelection); local
314 RefPtr<Range> startRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), startIndex, 0, true);
H A DApplyStyleCommand.cpp603 int startIndex = TextIterator::rangeLength(startRange.get(), true); local
627 startRange = TextIterator::rangeFromLocationAndLength(static_cast<Element*>(scope), startIndex, 0, true);
H A DCompositeEditCommand.cpp300 int startIndex = TextIterator::rangeLength(startRange.get()); local
317 RefPtr<Range> selectedRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), startIndex, length);
890 int startIndex = -1; local
904 startIndex = 0;
907 startIndex = TextIterator::rangeLength(startRange.get(), true);
981 if (preserveSelection && startIndex != -1) {
987 RefPtr<Range> start = TextIterator::rangeFromLocationAndLength(document()->documentElement(), destinationIndex + startIndex, 0, true);
/external/webkit/WebCore/inspector/front-end/
H A DTimelinePanel.js361 var startIndex = Math.max(0, Math.min(Math.floor(visibleTop / rowHeight) - 1, recordsInWindow.length - 1)); variable
362 while (startIndex > 0 && recordsInWindow[startIndex].parent)
363 startIndex--;
369 const top = (startIndex * rowHeight) + "px";
381 for (var i = startIndex; i < endIndex; ++i) {
/external/webkit/WebCore/dom/
H A DSelectElement.cpp107 int SelectElement::nextSelectableListIndex(SelectElementData& data, Element* element, int startIndex) argument
110 int index = startIndex + 1;
114 return startIndex;
118 int SelectElement::previousSelectableListIndex(SelectElementData& data, Element* element, int startIndex) argument
121 if (startIndex == -1)
122 startIndex = items.size();
123 int index = startIndex - 1;
127 return startIndex;
/external/webkit/WebCore/platform/graphics/
H A DFontCache.cpp375 int startIndex = familyIndex; local
377 for (int i = 0; startFamily && i < startIndex; i++)
402 if (!result && startIndex == 0) {
/external/icu4c/test/intltest/
H A Dssearch.cpp1787 static int32_t nextBoundaryAfter(const UnicodeString &string, int32_t startIndex) { argument
1791 if (startIndex >= textLen) {
1792 return startIndex;
1796 int32_t i = startIndex;
/external/skia/src/effects/
H A DSkGradientShader.cpp231 int startIndex = dummyFirst ? 0 : 1; local
233 for (int i = startIndex; i < count; i++) {
/external/webkit/WebCore/css/
H A DCSSStyleSelector.cpp2893 int startIndex, int endIndex)
2895 if (startIndex == -1)
2898 for (int i = startIndex; i <= endIndex; i++) {
2892 applyDeclarations(bool applyFirst, bool isImportant, int startIndex, int endIndex) argument

Completed in 464 milliseconds