Searched refs:startIndex (Results 1 - 25 of 59) sorted by relevance

123

/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DArgList.cpp33 void ArgList::getSlice(int startIndex, ArgList& result) const argument
35 if (startIndex <= 0 || startIndex >= m_argCount) {
40 result.m_args = m_args + startIndex;
41 result.m_argCount = m_argCount - startIndex;
H A DJSArray.h90 bool shiftCountForShift(ExecState* exec, unsigned startIndex, unsigned count) argument
92 return shiftCountWithArrayStorage(exec->vm(), startIndex, count, ensureArrayStorage(exec->vm()));
94 bool shiftCountForSplice(ExecState* exec, unsigned& startIndex, unsigned count) argument
96 return shiftCountWithAnyIndexingType(exec, startIndex, count);
99 bool shiftCount(ExecState* exec, unsigned& startIndex, unsigned count) argument
103 return shiftCountForShift(exec, startIndex, count);
105 return shiftCountForSplice(exec, startIndex, count);
112 bool unshiftCountForShift(ExecState* exec, unsigned startIndex, unsigned count) argument
114 return unshiftCountWithArrayStorage(exec, startIndex, count, ensureArrayStorage(exec->vm()));
116 bool unshiftCountForSplice(ExecState* exec, unsigned startIndex, unsigne argument
121 unshiftCount(ExecState* exec, unsigned startIndex, unsigned count) argument
[all...]
H A DJSArray.cpp671 bool JSArray::shiftCountWithArrayStorage(VM& vm, unsigned startIndex, unsigned count, ArrayStorage* storage) argument
696 if (startIndex >= vectorLength)
699 if (startIndex + count > vectorLength)
700 count = vectorLength - startIndex;
704 unsigned numElementsBeforeShiftRegion = startIndex;
705 unsigned firstIndexAfterShiftRegion = startIndex + count;
715 RELEASE_ASSERT(count + startIndex <= vectorLength);
717 for (unsigned i = startIndex; i-- > 0;) {
730 sizeof(JSValue) * startIndex);
748 unsigned destinationIndex = startIndex
775 shiftCountWithAnyIndexingType(ExecState* exec, unsigned& startIndex, unsigned count) argument
871 unshiftCountWithArrayStorage(ExecState* exec, unsigned startIndex, unsigned count, ArrayStorage* storage) argument
915 unshiftCountWithAnyIndexingType(ExecState* exec, unsigned startIndex, unsigned count) argument
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/tools/toolutil/
H A Dcollationinfo.h31 static int32_t getDataLength(const int32_t indexes[], int32_t startIndex);
H A Dcollationinfo.cpp111 CollationInfo::getDataLength(const int32_t indexes[], int32_t startIndex) { argument
112 return indexes[startIndex + 1] - indexes[startIndex];
/macosx-10.10.1/JavaScriptCore-7600.1.17/
H A DtestRegExp.cpp217 size_t startIndex = i*2; local
218 if (outVector[startIndex] != regExpTest->expectVector[startIndex]) {
221 printf("Line %d: output vector mismatch at index %lu - expected %d got %d\n", lineNumber, startIndex, regExpTest->expectVector[startIndex], outVector[startIndex]);
223 if ((i > 0) && (regExpTest->expectVector[startIndex] != -1) && (outVector[startIndex+1] != regExpTest->expectVector[startIndex+1])) {
226 printf("Line %d: output vector mismatch at index %lu - expected %d got %d\n", lineNumber, startIndex
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationdatawriter.h48 static void copyData(const int32_t indexes[], int32_t startIndex,
H A Duitercollationiterator.h64 FCDUIterCollationIterator(const CollationData *data, UBool numeric, UCharIterator &ui, int32_t startIndex) argument
66 state(ITER_CHECK_FWD), start(startIndex),
H A Dreldtfmt.cpp243 int32_t startIndex = pos.getIndex(); local
254 text.compare(startIndex, fDates[n].len, fDates[n].string) == 0) {
265 pos.setErrorIndex(startIndex);
267 pos.setIndex(startIndex + fDates[n].len);
286 (relativeStringOffset = modifiedText.indexOf(fDates[n].string, fDates[n].len, startIndex)) >= startIndex) {
295 pos.setErrorIndex(startIndex);
H A Duregex.cpp510 int32_t startIndex,
512 return uregex_matches64( regexp2, (int64_t)startIndex, status);
517 int64_t startIndex,
524 if (startIndex == -1) {
527 result = regexp->fMatcher->matches(startIndex, *status);
540 int32_t startIndex,
542 return uregex_lookingAt64( regexp2, (int64_t)startIndex, status);
547 int64_t startIndex,
554 if (startIndex == -1) {
557 result = regexp->fMatcher->lookingAt(startIndex, *statu
509 uregex_matches(URegularExpression *regexp2, int32_t startIndex, UErrorCode *status) argument
516 uregex_matches64(URegularExpression *regexp2, int64_t startIndex, UErrorCode *status) argument
539 uregex_lookingAt(URegularExpression *regexp2, int32_t startIndex, UErrorCode *status) argument
546 uregex_lookingAt64(URegularExpression *regexp2, int64_t startIndex, UErrorCode *status) argument
570 uregex_find(URegularExpression *regexp2, int32_t startIndex, UErrorCode *status) argument
577 uregex_find64(URegularExpression *regexp2, int64_t startIndex, UErrorCode *status) argument
861 uregex_setRegionAndStart(URegularExpression *regexp2, int64_t regionStart, int64_t regionLimit, int64_t startIndex, UErrorCode *status) argument
[all...]
/macosx-10.10.1/mDNSResponder-561.1.1/mDNSWindows/
H A Dloclibrary.c63 int startIndex = i * MODULO_ISOCODES; local
65 langCode = (ISOCODES[startIndex] << 8);
66 langCode = langCode + ( (unsigned short) (ISOCODES[startIndex + 1]) );
69 char *langStr = (char *)&(ISOCODES[startIndex+2]);
/macosx-10.10.1/zlib-55/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
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Duregex.h430 * If startIndex >= zero the match operation starts at the specified
434 * If startIndex == -1 the match must cover the input region, or the entire
439 * @param startIndex The input string (native) index at which to begin matching, or -1
447 int32_t startIndex,
456 * If startIndex >= zero the match operation starts at the specified
460 * If startIndex == -1 the match must cover the input region, or the entire
465 * @param startIndex The input string (native) index at which to begin matching, or -1
473 int64_t startIndex,
481 * <p>If startIndex is >= 0 any input region that was set for this
493 * @param startIndex Th
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dchariter.h516 * (toward startIndex()), and returns that code unit. If there are
525 * (toward startIndex()), and returns that code point. If there are
553 inline int32_t startIndex(void) const;
702 CharacterIterator::startIndex(void) const { function in class:CharacterIterator
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGVariableEventStream.cpp135 unsigned startIndex = index - 1; local
136 while (at(startIndex).kind() != Reset)
137 startIndex--;
144 for (unsigned i = startIndex; i < index; ++i) {
/macosx-10.10.1/WebKit-7600.1.25/win/Interfaces/Accessible2/
H A DAccessibleText.idl583 @param [in] startIndex
597 [in] long startIndex,
604 @param [in] startIndex
623 [in] long startIndex,
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Duvector.cpp289 int32_t UVector::indexOf(void* obj, int32_t startIndex) const {
292 return indexOf(key, startIndex, HINT_KEY_POINTER);
295 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const {
298 return indexOf(key, startIndex, HINT_KEY_INTEGER);
302 int32_t UVector::indexOf(UElement key, int32_t startIndex, int8_t hint) const { argument
305 for (i=startIndex; i<count; ++i) {
311 for (i=startIndex; i<count; ++i) {
H A Duvector.h149 int32_t indexOf(void* obj, int32_t startIndex = 0) const;
151 int32_t indexOf(int32_t obj, int32_t startIndex = 0) const;
266 int32_t indexOf(UElement key, int32_t startIndex = 0, int8_t hint = 0) 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");
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.cpp89 copy.startIndex()!=iter.startIndex() ||
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DCopyWorkList.h131 CopyWorkListIterator(CopyWorkListSegment* startSegment, size_t startIndex) argument
133 , m_currentIndex(startIndex)
/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);
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-block-trampolines.mm115 static uintptr_t startIndex() {
125 return (index >= startIndex() && index < endIndex());
276 pagePair->nextAvailable = pagePair->startIndex();
368 assert(index >= pagePair->startIndex() && index < pagePair->endIndex());

Completed in 288 milliseconds

123