Searched refs:foundIndex (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DAtomicStringKeyedMRUCache.h45 size_t foundIndex = i; local
46 if (foundIndex + 1 < m_cache.size()) {
47 Entry entry = m_cache[foundIndex];
48 m_cache.remove(foundIndex);
49 foundIndex = m_cache.size();
52 return m_cache[foundIndex].second;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DCSSCompletions.js173 var foundIndex = this._firstIndexOfPrefix(prefix);
174 return (foundIndex === -1 ? "" : this._values[foundIndex]);
186 var foundIndex; variable
191 foundIndex = middleIndex;
200 if (foundIndex === undefined)
203 while (foundIndex && this._values[foundIndex - 1].startsWith(prefix))
204 foundIndex--;
206 return foundIndex;
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dutxttest.cpp602 int64_t foundIndex = 0; local
609 foundIndex = utext_getNativeIndex(ut);
610 TEST_ASSERT(expectedIndex == foundIndex);
614 foundIndex = utext_getPreviousNativeIndex(ut);
615 TEST_ASSERT(expectedIndex == foundIndex);
627 foundIndex = UTEXT_GETNATIVEINDEX(ut);
628 TEST_ASSERT(expectedIndex == foundIndex);
644 foundIndex = utext_getNativeIndex(ut);
645 TEST_ASSERT(len == foundIndex);
657 foundIndex
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/hfs/hfscommon/Misc/
H A DFileExtentMapping.c505 u_int32_t foundIndex; local
518 err = SearchExtentFile(vcb, fcb, offset, &foundKey, foundData, &foundIndex, &hint, &nextFABN);
520 startBlock = foundData[foundIndex].startBlock;
521 firstFABN = nextFABN - foundData[foundIndex].blockCount;
891 u_int32_t foundIndex; local
900 error = SearchExtentFile(vcb, fcb, peof-1, &foundKey, foundData, &foundIndex, &hint, &nextBlock);
907 if (foundData[foundIndex].blockCount != 0)
908 ++foundIndex;
909 if (foundIndex == kHFSPlusExtentDensity) {
928 foundIndex
969 u_int32_t foundIndex; local
[all...]
/macosx-10.10/hfs-285/fsck_hfs/dfalib/
H A DSExtents.c433 UInt32 foundIndex; local
448 err = SearchExtentFile(vcb, fcb, sectorOffset, &foundKey, foundData, &foundIndex, &hint, &nextFABN);
450 startBlock = foundData[foundIndex].startBlock;
451 firstFABN = nextFABN - foundData[foundIndex].blockCount;
765 UInt32 foundIndex; // from SearchExtentFile local
837 err = SearchExtentFile(vcb, fcb, (eofBlocks+blocksToAdd) * sectorsPerBlock - 1, &foundKey, foundData, &foundIndex, &hint, &nextBlock);
892 startBlock = foundData[foundIndex].startBlock + foundData[foundIndex].blockCount;
910 foundData[foundIndex].blockCount += actualNumBlocks;
918 if (foundData[foundIndex]
[all...]
/macosx-10.10/IOFireWireFamily-456/IOFireWireLib.CFPlugInProj/
H A DIOFireWireLibDCLCommandPool.cpp462 CFIndex foundIndex = CFArrayGetFirstIndexOfValue(mAllocatedBlocks, searchRange, (const void*) inDCL); local
463 if (foundIndex >= 0)
465 unsigned long foundBlockSize = (unsigned long) CFArrayGetValueAtIndex(mAllocatedBlockSizes, foundIndex) ;
479 CFArrayRemoveValueAtIndex(mAllocatedBlocks, foundIndex) ;
480 CFArrayRemoveValueAtIndex(mAllocatedBlockSizes, foundIndex) ;
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLSelectElement.cpp1023 size_t foundIndex = searchOptionsForValue(state[0], 0, itemsSize); local
1024 if (foundIndex != notFound)
1025 toHTMLOptionElement(items[foundIndex])->setSelectedState(true);
1030 size_t foundIndex = searchOptionsForValue(value, startIndex, itemsSize); local
1031 if (foundIndex == notFound)
1032 foundIndex = searchOptionsForValue(value, 0, startIndex);
1033 if (foundIndex == notFound)
1035 toHTMLOptionElement(items[foundIndex])->setSelectedState(true);
1036 startIndex = foundIndex + 1;
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkText.c4077 TkTextIndex curIndex, foundIndex;
4206 matchOffset, &foundIndex);
4209 matchOffset, &foundIndex);
4217 TkTextNewIndexObj(textPtr, &foundIndex));
4219 searchSpecPtr->resPtr = TkTextNewIndexObj(textPtr, &foundIndex);
4049 TkTextIndex curIndex, foundIndex; local
/macosx-10.10/libmalloc-53.1.1/src/
H A Dstack_logging_disk.c321 __enter_frames_in_table(backtrace_uniquing_table *uniquing_table, uint64_t *foundIndex, mach_vm_address_t *frames, int32_t count) argument
374 if (returnVal) *foundIndex = uParent;

Completed in 435 milliseconds