Searched refs:index (Results 1 - 25 of 4102) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DTouchList.cpp34 Touch* TouchList::item(unsigned index) argument
36 if (index >= m_values.size())
38 return m_values[index].get();
41 const Touch* TouchList::item(unsigned index) const
43 return const_cast<TouchList*>(this)->item(index);
/macosx-10.9.5/bash-92/bash-3.2/examples/scripts.noah/
H A Daref.bash22 local index="$2"
25 [ $index -ge 1 ] && shift $index
/macosx-10.9.5/WebCore-7537.78.1/Modules/gamepad/
H A DGamepadList.cpp39 void GamepadList::set(unsigned index, PassRefPtr<Gamepad> gamepad) argument
41 if (index >= kMaximumGamepads)
43 m_items[index] = gamepad;
51 Gamepad* GamepadList::item(unsigned index) argument
53 return index < length() ? m_items[index].get() : 0;
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dscrolledframe.rb30 def xview(*index)
31 if index.size == 0
34 tk_send_without_enc('xview', *index)
38 def xview_moveto(*index)
39 xview('moveto', *index)
41 def xview_scroll(*index)
42 xview('scroll', *index)
45 def yview(*index)
46 if index.size == 0
49 tk_send_without_enc('yview', *index)
[all...]
/macosx-10.9.5/dtrace-118.1/test/tst/common/funcs/
H A Dtst.index.d.out4 if (index("foobarbaz", "barbaz") != 3) {
5 printf("perl => index(\"foobarbaz\", \"barbaz\") = %d\n",
6 index("foobarbaz", "barbaz"));
7 printf(" D => index(\"foobarbaz\", \"barbaz\") = 3\n");
18 if (index("foofoofoo", "foo") != 0) {
19 printf("perl => index(\"foofoofoo\", \"foo\") = %d\n",
20 index("foofoofoo", "foo"));
21 printf(" D => index(\"foofoofoo\", \"foo\") = 0\n");
32 if (index("boofoofoo", "foo") != 3) {
33 printf("perl => index(\"boofoofo
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DEntryArray.cpp42 Entry* EntryArray::item(unsigned index) const
44 if (index >= m_entries.size())
46 return m_entries[index].get();
/macosx-10.9.5/ruby-104/ruby/test/rake/
H A Dtest_rake_multi_task.rb28 assert @runs.index("A0") < @runs.index("A1")
29 assert @runs.index("A1") < @runs.index("A2")
30 assert @runs.index("B0") < @runs.index("B1")
31 assert @runs.index("B1") < @runs.index("B2")
41 assert @runs.index("S0") < @runs.index("S
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/library/
H A DpkgIndex.tcl2 foreach index [concat \
5 set dir [file dirname $index]
6 source $index
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dtxtwin_abst.rb13 def bbox(index)
14 list(tk_send_without_enc('bbox', index))
20 def get(*index)
21 _fromUTF8(tk_send_without_enc('get', *index))
23 def insert(index, *args)
24 tk_send('insert', index, *args)
35 def see(index)
36 tk_send_without_enc('see', index)
H A Dscrollable.rb14 def xview(*index)
15 if index.size == 0
18 tk_send_without_enc('xview', *index)
22 def xview_moveto(*index)
23 xview('moveto', *index)
25 def xview_scroll(*index)
26 xview('scroll', *index)
48 def yview(*index)
49 if index.size == 0
52 tk_send_without_enc('yview', *index)
[all...]
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSArrayExtras.m35 -(NSNumber *)_webkit_numberAtIndex:(NSUInteger)index
37 id object = [self objectAtIndex:index];
41 -(NSString *)_webkit_stringAtIndex:(NSUInteger)index
43 id object = [self objectAtIndex:index];
57 int index;
60 for (index = [self count] - 1; index >= 0; --index) {
61 NSMenuItem *item = [self objectAtIndex:index];
64 if (itemIsSeparator && (removePreviousItemIfSeparator || index
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DIORangeAllocator.cpp136 // allocate element at index
137 bool IORangeAllocator::allocElement( UInt32 index )
153 index * sizeof( IORangeAllocatorElement));
154 bcopy( elements + index,
155 newElements + index + 1,
156 (numElements - index) * sizeof( IORangeAllocatorElement));
166 bcopy( elements + index,
167 elements + index + 1,
168 (numElements - index) * sizeof( IORangeAllocatorElement));
175 // destroy element at index
190 UInt32 index; local
246 UInt32 index; local
295 UInt32 index; local
336 UInt32 index; local
367 UInt32 index; local
[all...]
/macosx-10.9.5/Chess-310.5/sjeng/
H A Dttable.c116 uint32_t index; local
120 index = hash % TTSize;
123 QS_TTable[index].Type = UPPER;
125 QS_TTable[index].Type = LOWER;
127 QS_TTable[index].Type = EXACT;
129 QS_TTable[index].Hash = hash;
130 QS_TTable[index].Hold_hash = hold_hash;
131 QS_TTable[index].Bestmove = best;
132 QS_TTable[index].Bound = score;
133 QS_TTable[index]
140 uint32_t index; local
222 uint32_t index; local
249 uint32_t index; local
335 uint32_t index; local
[all...]
H A Decache.c43 int index; local
45 index = hash % ECacheSize;
47 ECache[index].stored_hash = hash;
48 ECache[index].hold_hash = hold_hash;
49 ECache[index].score = score;
54 int index; local
58 index = hash % ECacheSize;
60 if(ECache[index].stored_hash == hash &&
61 ECache[index].hold_hash == hold_hash)
67 *score = ECache[index]
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DTimeRanges.idl31 [RaisesException] double start(unsigned long index);
32 [RaisesException] double end(unsigned long index);
H A DMediaController.cpp99 for (size_t index = 1; index < m_mediaElements.size(); ++index)
100 bufferedRanges->intersectWith(m_mediaElements[index]->buffered().get());
113 for (size_t index = 1; index < m_mediaElements.size(); ++index)
114 seekableRanges->intersectWith(m_mediaElements[index]->seekable().get());
127 for (size_t index = 1; index < m_mediaElement
[all...]
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dindex.c1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dbsd_stubs.c119 * if index is -1, return a free slot if avaliable
120 * else see whether the index is free
123 * if index is negative, we start
124 * looking for a free slot at the absolute value of index,
128 bdevsw_isfree(int index) argument
132 if (index < 0) {
133 if (index == -1)
134 index = 1; /* start at 1 to avoid collision with volfs (Radar 2842228) */
136 index = -index; /* star
165 bdevsw_add(int index, struct bdevsw * bsw) argument
179 bdevsw_remove(int index, struct bdevsw * bsw) argument
204 cdevsw_isfree(int index) argument
246 cdevsw_add(int index, struct cdevsw * csw) argument
260 cdevsw_remove(int index, struct cdevsw * csw) argument
283 cdevsw_add_with_bdev(int index, struct cdevsw * csw, int bdev) argument
297 cdevsw_setkqueueok(int index, struct cdevsw *csw, int use_offset) argument
[all...]
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/tests/data/
H A Dslapd-nis-master.conf40 index objectClass eq
41 index uid pres,eq,approx
42 index gidNumber pres,eq,approx
43 index uidNumber pres,eq,approx
44 index cn pres,eq,approx
45 index memberUid pres,eq,approx
46 index macAddress pres,eq,approx
47 index ipServiceProtocol pres,eq,approx
48 index ipServicePort pres,eq,approx
49 index oncRpcNumbe
[all...]
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/Stack/
H A DIrDscInfo.cpp61 for( int index = 0; index < kHintCount; index++ ) {
62 if( hints & ( 1<<index ) )
63 fHintCount[index]++;
73 for( int index = 0; index < kHintCount; index++ ) {
74 ULong hintMask = 1<<index;
76 fHintCount[index]
122 ULong index; local
168 ULong index; local
[all...]
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/PassengerPane/
H A Dconfig_uninstaller.rb22 def remove_from_hosts(index)
23 server_name = @data[index]['host']
24 [server_name, *@data[index]['aliases'].split(' ')].each do |host|
30 def remove_vhost_conf(index)
31 OSX::NSLog("Will remove vhost file: #{config_path(index)}")
32 File.delete config_path(index)
35 def config_path(index)
36 "#{PassengerPaneConfig::PASSENGER_APPS_DIR}/#{@data[index]['host'].bypass_safe_level_1}.#{PassengerPaneConfig::PASSENGER_APPS_EXTENSION}"
44 (0..(@data.length - 1)).each do |index|
45 remove_from_hosts index
[all...]
/macosx-10.9.5/IOGraphics-471.92.1/tools/
H A Dfbshared.c23 uint32_t index, maxIndex; local
35 for ( index = 0;
36 index++, (framebuffer = IOIteratorNext(iter));
41 printf("\n/* [%d] Using device: %s */\n", index, path);
77 shmem[index] = (StdFBShmem_t *) mapAddr;
82 shmem[index]->screenBounds.minx, shmem[index]->screenBounds.miny,
83 shmem[index]->screenBounds.maxx, shmem[index]->screenBounds.maxy);
86 shmem[index]
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dstrchr.c36 #undef index
38 extern char* index(const char*, int);
43 return(index(s, c));
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DX86DisassemblerTables.cpp214 for (unsigned index = 0; index < 256; ++index) {
215 if (decision.instructionIDs[index] != decision.instructionIDs[0])
218 if (((index & 0xc0) == 0xc0) &&
219 (decision.instructionIDs[index] != decision.instructionIDs[0xc0]))
222 if (((index & 0xc0) != 0xc0) &&
223 (decision.instructionIDs[index] != decision.instructionIDs[0x00]))
226 if (((index & 0xc0) == 0xc0) &&
227 (decision.instructionIDs[index] !
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dcheckbox.itk5 # selecting, and deselecting of checkbuttons by tag and index.
64 method insert {index tag args}
65 method delete {index}
66 method get {{index ""}}
67 method index {index}
68 method select {index}
69 method deselect {index}
70 method flash {index}
71 method toggle {index}
[all...]

Completed in 217 milliseconds

1234567891011>>