Searched refs:index (Results 201 - 225 of 3714) sorted by relevance

1234567891011>>

/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/ecma/Array/
H A D15.4.2.1-3.js73 for ( var index = 0; index < TEST_LENGTH; index++ ) {
74 ARGUMENTS += index;
75 ARGUMENTS += (index == (TEST_LENGTH-1) ) ? "" : ",";
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A DPackedIntVector.h81 T get(size_t index) const
86 result |= (m_bits.quickGet(index * bitCount + subIndex) ? 1 : 0);
91 void set(size_t index, T value)
102 m_bits.quickSet(index * bitCount + subIndex, !!(myValue & 1));
108 ASSERT(get(index) == value);
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DProbeSetDataFrame.js27 WebInspector.ProbeSetDataFrame = function(index)
30 this._index = index;
38 return a.index - b.index;
58 get index()
/macosx-10.10.1/dtrace-147/libelf/
H A Dgetscn.c38 elf_getscn(Elf * elf, size_t index) argument
42 size_t j = index;
62 * from within _elf_prescn() then we can index straight
65 if (index < tabsz) {
66 s = &elf->ed_hdscn[index];
83 if (s->s_index == index) {
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dsoundex.el49 (key (substring word 0 1)) (index 1) (prev-code code))
51 (while (and (> 4 (length key)) (< index length))
52 ;; look up the code for each letter in word at index
53 (setq code (cdr (assq (aref word index) soundex-alist))
54 index (1+ index)
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/hash/
H A Dhashsize.c45 unsigned int index; local
69 index = new_b->hash;
70 HASHMOD(tab, index);
71 new_b->next = new_s[index];
72 new_s[index] = new_b;
/macosx-10.10.1/llvmCore-3425.0.34/utils/
H A DlldbDataFormatters.py24 def get_child_at_index(self, index):
26 if index < 0:
28 if index >= self.num_children():
31 offset = index * self.type_size
32 return self.begin.CreateChildAtOffset('['+str(index)+']',
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/
H A Dgtest-test-part.cc72 // Returns the TestPartResult at the given index (0-based).
73 const TestPartResult& TestPartResultArray::GetTestPartResult(int index) const {
74 if (index < 0 || index >= size()) {
75 printf("\nInvalid index (%d) into TestPartResultArray.\n", index);
79 return array_[index];
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/textutil/
H A Dstring.tcl61 return [string toupper [string index $string 0]][string range $string 1 end]
74 return [string tolower [string index $string 0]][string range $string 1 end]
110 while {[string index $min $i] == [string index $max $i]} {
111 append prefix [string index $min $i]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/tie/
H A Dtie_file.tcl116 method getv {index} {
118 return -code error "can't read \"$index\": no such variable"
121 return $cache($index)
124 method setv {index value} {
125 puts $chan [list set $index $value]
130 method unsetv {index} {
131 puts $chan [list unset $index]
232 method Set {index value} {
233 set cache($index) $value
238 method Unset {index} {
[all...]
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkMacWinMenu.c48 int index, result, finished;
72 for (index = 0; index < menuPtr->numEntries; index++) {
73 register TkMenuEntry *entryPtr = menuPtr->entries[index];
47 int index, result, finished; local
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Dhibernate_restore.c64 uintptr_t index; local
86 index = (virt >> I386_LPGSHIFT);
89 if (phys == BootPTD[index]) return (virt);
90 BootPTD[index] = phys;
92 BootPTD[index + 1] = (phys + I386_LPGBYTES);
/macosx-10.10.1/xnu-2782.1.97/libkern/c++/
H A DOSArray.cpp242 bool OSArray::setObject(unsigned int index, const OSMetaClassBase *anObject) argument
247 if ((index > count) || !anObject)
255 if (index != count) {
256 for (i = count; i > index; i--)
259 array[index] = anObject;
290 replaceObject(unsigned int index, const OSMetaClassBase *anObject) argument
294 if ((index >= count) || !anObject)
298 oldObject = array[index];
299 array[index] = anObject;
305 void OSArray::removeObject(unsigned int index) argument
394 unsigned int index = (*iteratorP)++; local
[all...]
/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
100 // when empty, value is index of next available slot OR 0 if never used yet
124 static bool validIndex(uintptr_t index) {
125 return (index >= startIndex() && index < endIndex());
128 Payload *payload(uintptr_t index) {
129 assert(validIndex(index));
130 return (Payload *)((char *)this + index*slotSize());
133 IMP trampoline(uintptr_t index) {
134 assert(validIndex(index));
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tktable/tktable/library/
H A Dtktable.py172 def activate(self, index):
173 """Set the active cell to the one indicated by index."""
174 self.tk.call(self._w, 'activate', index)
200 dimensions. When just one index is specified, for example 2,0, that
232 """Deletes text from the active cell. If only one index is given,
233 it deletes the character after that index, otherwise it deletes from
234 the first index to the second. index can be a number, insert or end."""
238 def delete_cols(self, index, count=None, switches=None):
239 args = self._handle_switches(switches) + (index, coun
290 def index(self, index, rc=None): member in class:Table
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dhash.c426 unsigned int index; local
440 index = hash % table->size;
441 for (hashp = table->table[index];
471 hashp->next = table->table[index];
472 table->table[index] = hashp;
499 int index; local
505 index = chain->hash % newsize;
506 chain_end->next = newtable[index];
507 newtable[index] = chain;
523 unsigned int index; local
597 size_t index; local
625 bfd_size_type index; member in struct:strtab_hash_entry
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dscrolledcanvas.rb244 def icursor(tagOrId, index)
245 tk_send_without_enc('icursor', tagid(tagOrId), index)
249 def index(tagOrId, idx) method in class:Tk
250 number(tk_send_without_enc('index', tagid(tagOrId), idx))
253 def insert(tagOrId, index, string)
254 tk_send_without_enc('insert', tagid(tagOrId), index,
304 def select_adjust(tagOrId, index)
305 select('adjust', tagid(tagOrId), index)
310 def select_from(tagOrId, index)
311 select('from', tagid(tagOrId), index)
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationdatareader.cpp88 int32_t index; // one of the indexes[] slots local
89 int32_t offset; // byte offset for the index part
90 int32_t length; // number of bytes in the index part
107 index = IX_REORDER_CODES_OFFSET;
108 offset = getIndex(inIndexes, indexesLength, index);
109 length = getIndex(inIndexes, indexesLength, index + 1) - offset;
125 index = IX_REORDER_TABLE_OFFSET;
126 offset = getIndex(inIndexes, indexesLength, index);
127 length = getIndex(inIndexes, indexesLength, index + 1) - offset;
145 index
[all...]
H A Dudat.cpp360 udat_getAvailable(int32_t index) argument
362 return uloc_getAvailable(index);
449 int32_t index,
566 index = (index > 0)? (index - 1) % 12: 0;
571 if(index < count) {
572 return res[index].extract(result, resultLength, *status);
706 * if(index < count)
707 * array[index]
447 udat_getSymbols(const UDateFormat *fmt, UDateFormatSymbolType type, int32_t index, UChar *result, int32_t resultLength, UErrorCode *status) argument
720 setSymbol(UnicodeString *array, int32_t count, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
735 setEra(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
742 setEraName(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
749 setMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
756 setShortMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
763 setNarrowMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
770 setStandaloneMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
777 setStandaloneShortMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
784 setStandaloneNarrowMonth(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
791 setWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
798 setShortWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
805 setShorterWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
812 setNarrowWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
819 setStandaloneWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
826 setStandaloneShortWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
833 setStandaloneShorterWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
840 setStandaloneNarrowWeekday(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
847 setQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
854 setShortQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
861 setStandaloneQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
868 setStandaloneShortQuarter(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
875 setAmPm(DateFormatSymbols *syms, int32_t index, const UChar *value, int32_t valueLength, UErrorCode &errorCode) argument
892 udat_setSymbols( UDateFormat *format, UDateFormatSymbolType type, int32_t index, UChar *value, int32_t valueLength, UErrorCode *status) argument
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGOSRExitCompiler32_64.cpp184 for (size_t index = 0; index < operands.size(); ++index) {
185 const ValueRecovery& recovery = operands[index];
193 &bitwise_cast<EncodedValueDescriptor*>(scratch + index)->asBits.payload);
199 &bitwise_cast<EncodedValueDescriptor*>(scratch + index)->asBits.tag);
202 &bitwise_cast<EncodedValueDescriptor*>(scratch + index)->asBits.payload);
214 for (size_t index = 0; index < operands.size(); ++index) {
[all...]
/macosx-10.10.1/AppleRAID-4.0.6/
H A DAppleRAIDStorageRequest.cpp30 UInt32 index; local
38 for (index = 0; index < srRequestsAllocated; index++) {
39 if (srMemoryDescriptors[index]) {
40 srMemoryDescriptors[index]->release();
69 UInt32 index; local
96 for (index = 0; index < srRequestsAllocated; index
119 UInt32 index, virtIndex; local
167 UInt32 index, virtIndex; local
[all...]
/macosx-10.10.1/DiskArbitration-268/diskarbitrationd/
H A DDAQueue.c52 CFIndex index; local
56 for ( index = 0; index < count; index++ )
60 session = ( void * ) CFArrayGetValueAtIndex( gDASessionList, index );
103 CFIndex index; local
107 for ( index = 0; index < count; index++ )
111 callback = ( void * ) CFArrayGetValueAtIndex( gDAResponseList, index );
162 CFIndex index; local
224 CFIndex index; local
278 CFIndex index; local
716 CFIndex index; local
781 CFIndex index; local
802 CFIndex index; local
840 CFIndex index; local
973 CFIndex index; local
1037 CFIndex index; local
[all...]
/macosx-10.10.1/IOKitTools-91/ioclasscount.tproj/
H A Dioclasscount.c180 CFIndex index, count; local
191 for (index = 0; index < count; index++) {
192 printInstanceCount(classes, classNames[index], &nameCString,
197 uint32_t index = 0; local
198 for (index = 1; index < argc; index++ ) {
204 argv[index], kCFStringEncodingUTF
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/tests/
H A DNodeList.c53 extern Node* NodeList_item(NodeList* nodeList, unsigned index) argument
56 if (index >= length)
62 unsigned count = length - 1 - index;
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DBytecodeLivenessAnalysisInlines.h47 size_t index = virtualReg.toLocal() - codeBlock->captureCount();
48 if (index >= out.numBits())
50 return out.get(index);

Completed in 206 milliseconds

1234567891011>>