Searched refs:index (Results 101 - 125 of 3714) sorted by relevance

1234567891011>>

/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDA/Utils/
H A DCDynamicArray.cpp51 {kLogRemoveAt, "CDynamicArray: remove at, index=, count="},
134 // CDynamicArray::SafeElementPtrAt(ArrayIndex index)
136 void* CDynamicArray::SafeElementPtrAt(ArrayIndex index) argument
139 return ((fSize > 0) && (index > kEmptyIndex) && (index < fSize))
140 ? ElementPtrAt(index)
149 IrDAErr CDynamicArray::RemoveElementsAt(ArrayIndex index, ArrayIndex count) argument
151 remove count elements starting with index.
164 XTRACE(kLogRemoveAt, index, count);
167 // can't remove: before the start (index <
241 InsertElementsBefore(ArrayIndex index, void* elemPtr, ArrayIndex count) argument
296 ReplaceElementsAt(ArrayIndex index, void* elemPtr, ArrayIndex count) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tk/
H A Dmenu.rb98 def activate(index)
99 tk_send_without_enc('activate', _get_eval_enc_str(index))
151 def index(idx) method in class:Tk
152 ret = tk_send_without_enc('index', _get_eval_enc_str(idx))
155 def invoke(index)
156 _fromUTF8(tk_send_without_enc('invoke', _get_eval_enc_str(index)))
158 def insert(index, type, keys=nil)
159 tk_send_without_enc('insert', _get_eval_enc_str(index),
172 def popup(x, y, index=nil)
173 if index
654 def index(index) method in class:Tk.entrycget.entryconfigure.entryconfiginfo.current_entryconfiginfo.Tk.initialize.Tk
[all...]
H A Dtextwindow.rb10 def initialize(parent, index, keys = {})
15 if index == 'end' || index == :end
16 @path = TkTextMark.new(@t, tk_call_without_enc(@t.path, 'index',
18 elsif index.kind_of?(TkTextMark)
19 if tk_call_without_enc(@t.path,'index',index.path) == tk_call_without_enc(@t.path,'index','end')
20 @path = TkTextMark.new(@t, tk_call_without_enc(@t.path, 'index',
23 @path = TkTextMark.new(@t, tk_call_without_enc(@t.path, 'index',
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dentryfield.rb122 def cursor=(index)
123 tk_send_without_enc('icursor', index)
125 index
129 def index(index) method in class:Tk.EntryfieldValidate.ValidateArgs.validate.invalid
130 number(tk_send_without_enc('index', index))
146 def selection_adjust(index)
147 tk_send_without_enc('selection', 'adjust', index)
154 def selection_from(index)
[all...]
H A Dspinner.rb106 def cursor=(index)
107 tk_send_without_enc('icursor', index)
109 index
113 def index(idx) method in class:Tk.EntryfieldValidate.ValidateArgs
114 number(tk_send_without_enc('index', idx))
130 def selection_adjust(index)
131 tk_send_without_enc('selection', 'adjust', index)
138 def selection_from(index)
139 tk_send_without_enc('selection', 'from', index)
149 def selection_to(index)
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/disassembler/udis86/
H A Dud_opcode.py94 def updateTable( self, table, index, type, meta ):
95 if not index in table[ 'entries' ]:
96 table[ 'entries' ][ index ] = { 'type' : type, 'entries' : {}, 'meta' : meta }
97 if table[ 'entries' ][ index ][ 'type' ] != type:
99 ( table[ 'entries' ][ index ][ 'type' ], type) )
100 return table[ 'entries' ][ index ]
168 index = insn.opcodes[0];
170 assert index == '0f'
171 table = self.updateTable(table, index, 'opctbl', '0f')
172 index
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/ipc/
H A Dipc_space.c135 mach_port_index_t index; local
156 for (index = 0; index < new_size; index++) {
157 ipc_entry_t entry = &table[index];
160 entry->ie_next = index+1;
229 mach_port_index_t index; local
253 for (index = 0; index < size; index
291 mach_port_index_t index; local
[all...]
H A Dipc_table.c103 unsigned int index; local
110 for (index = 0, size = 1;
111 (index < num) && (size < PAGE_SIZE);
114 its[index].its_size = (ipc_table_elems_t)(size / elemsize);
115 index++;
121 for (incrsize = PAGE_SIZE; index < num;) {
125 (period < 15) && (index < num);
128 its[index].its_size = (ipc_table_elems_t)(size / elemsize);
129 index++;
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dremtrans.cpp57 void RemoveTransliterator::handleTransliterate(Replaceable& text, UTransPosition& index, argument
62 text.handleReplaceBetween(index.start, index.limit, empty);
63 int32_t len = index.limit - index.start;
64 index.contextLimit -= len;
65 index.limit -= len;
/macosx-10.10.1/libdispatch-442.1.4/src/shims/
H A Datomic_sfb.h42 unsigned int index; local
47 // ffs returns 1 + index, or 0 if none set.
48 index = (unsigned int)__builtin_ffsl((long)~b);
49 if (slowpath(index == 0)) {
52 index--;
53 if (slowpath(index > max_index)) {
56 mask = ((typeof(b))1) << index;
59 return index;
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/controlwidget/
H A DradioMatrix.tcl183 set index 0
186 while {$index < $len} {
188 if {$index >= $len} {
191 set item [lindex $options(-values) $index]
200 radiobutton $win.buttons.cb$index \
204 grid $win.buttons.cb$index -row $rowNum -column $i
205 incr index
227 set index 0
229 while {$index < $len} {
231 if {$index >
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/ftl/
H A DFTLExitThunkGenerator.cpp49 void ExitThunkGenerator::emitThunk(unsigned index) argument
51 OSRExitCompilationInfo& info = m_state.finalizer->osrExit[index];
54 pushToSaveImmediateWithoutTouchingRegisters(TrustedImm32(index));
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DIntegralTypedArrayBase.h42 void set(unsigned index, double value) argument
44 if (index >= TypedArrayBase<T>::m_length)
50 TypedArrayBase<T>::data()[index] = static_cast<T>(static_cast<int64_t>(value));
/macosx-10.10.1/OpenSSL098-52/src/crypto/
H A DLPdir_win.c80 size_t index = 0,len_0 = strlen(directory) + 1; local
94 for (index = 0; index < len_0; index++)
95 wdir[index] = (TCHAR)directory[index];
123 size_t index, len_0 = 0; local
132 for (index = 0; index < len_0; index
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Dspu-dis.c55 const struct spu_opcode *index; local
63 if ((index = spu_disassemble_table[opcode & 0x780]) != 0
64 && index->insn_type == RRR)
65 return index;
67 if ((index = spu_disassemble_table[opcode & 0x7f0]) != 0
68 && (index->insn_type == RI18 || index->insn_type == LBT))
69 return index;
71 if ((index = spu_disassemble_table[opcode & 0x7f8]) != 0
72 && index
99 const struct spu_opcode *index; local
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/library/
H A Dauto.tcl19 # Also delete any commands that are listed in the auto-load index.
173 # parse Tcl source files, writing out index entries as "proc"
189 # dir - Name of the directory in which to create an index.
196 error "can't generate index within safe interpreter"
203 append index "# Tcl autoload index file, version 2.0\n"
204 append index "# This file is generated by the \"auto_mkindex\" command\n"
205 append index "# and sourced to set up indexing information for one or\n"
206 append index "# more commands. Typically each line is a command that\n"
207 append index "# set
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/library/
H A Dauto.tcl19 # Also delete any procedures that are listed in the auto-load index
178 # parse Tcl source files, writing out index entries as "proc"
194 # dir - Name of the directory in which to create an index.
203 error "can't generate index within safe interpreter"
210 append index "# Tcl autoload index file, version 2.0\n"
211 append index "# This file is generated by the \"auto_mkindex\" command\n"
212 append index "# and sourced to set up indexing information for one or\n"
213 append index "# more commands. Typically each line is a command that\n"
214 append index "# set
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/tie/
H A Dtie_array.tcl89 method getv {index} {
91 return $thesource($index)
94 method setv {index value} {
96 set thesource($index) $value
100 method unsetv {index} {
102 unset thesource($index)
H A Dtie_rarray.tcl69 method getv {index} {
70 return [$self Call set ${remotevar}($index)]
73 method setv {index value} {
74 $self Call set ${remotevar}($index) $value
78 method unsetv {index} {
79 $self Call unset -nocomplain ${remotevar}($index)
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Duiter.cpp97 return iter->index;
121 pos=iter->index+delta;
139 return iter->index=pos;
144 return iter->index<iter->limit;
149 return iter->index>iter->start;
154 if(iter->index<iter->limit) {
155 return ((const UChar *)(iter->context))[iter->index];
163 if(iter->index<iter->limit) {
164 return ((const UChar *)(iter->context))[iter->index++];
172 if(iter->index>ite
243 utf16BEIteratorGet(UCharIterator *iter, int32_t index) argument
250 int32_t index; local
261 int32_t index; local
273 int32_t index; local
597 int32_t i, limit, index; local
871 int32_t index; local
906 int32_t index; local
959 int32_t index=(int32_t)(state>>1); /* UTF-8 index */ local
[all...]
/macosx-10.10.1/IOFireWireSerialBusProtocolTransport-251.0.1/SBP2DiskLogger/
H A DSBP2DiskLogger.cpp623 int index; local
652 for ( index = 0; index < count; index++ )
662 debugID = gTraceBuffer[index].debugid;
665 now = gTraceBuffer[index].timestamp & KDBG_TIMESTAMP_MASK;
667 if ( index == 0 )
703 entry->taskID = gTraceBuffer[index].arg2;
704 entry->cdb[0] = gTraceBuffer[index].arg3 & 0xFF;
705 entry->cdb[1] = ( gTraceBuffer[index]
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/PyObjCTest/
H A Dtest_array_interface.py47 self.assertEqual(u.index(0), 0)
48 self.assertEqual(u.index(1), 1)
49 self.assertRaises(ValueError, u.index, 2)
53 self.assertEqual(u.index(0), 2)
54 self.assertEqual(u.index(0, 2), 2)
55 self.assertEqual(u.index(-2, -10), 0)
56 self.assertEqual(u.index(0, 3), 3)
57 self.assertEqual(u.index(0, 3, 4), 3)
58 self.assertRaises(ValueError, u.index, 2, 0, -10)
60 self.assertRaises(TypeError, u.index)
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DLegacyProfileDataGridTree.js125 for (var index = 0; index < count; ++index) {
126 var gridNode = gridNodes[index];
153 insertChild: function(profileDataGridNode, index)
155 WebInspector.DataGridNode.prototype.insertChild.call(this, profileDataGridNode, index);
251 for (var index = 0; index < count; ++index) {
252 children[index]
[all...]
/macosx-10.10.1/IOFireWireFamily-456/IOFireWireFamily.kmodproj/
H A DIOConfigDirectory.cpp167 int index = 0; local
174 index = findIndex(data, fNumEntries, key);
177 if( index < 0 )
183 status = getIndexType(index, type);
196 int index = 0; local
203 index = findIndex(data, fNumEntries, key);
206 if( index < 0 )
212 status = getIndexValue(index, value);
219 status = getIndexValue(index+1, *text);
234 int index local
275 int index = 0; local
315 int index = 0; local
381 getIndexType(int index, IOConfigKeyType &type) argument
410 getIndexKey(int index, int &key) argument
439 getIndexValue(int index, UInt32 &value) argument
469 getIndexValue(int index, OSData *&value) argument
533 getIndexValue(int index, OSString *&value) argument
672 getIndexValue(int index, IOConfigDirectory *&value) argument
715 getIndexOffset(int index, FWAddress &value) argument
761 getIndexOffset(int index, UInt32 &value) argument
803 getIndexEntry(int index, UInt32 &value) argument
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/db_printlog/
H A Drectype.awk8 while ((ndx = index(RECTYPE, ",")) != 0) {
19 if (index($1, types[i]) != 0) {

Completed in 982 milliseconds

1234567891011>>