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

1234567891011>>

/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/scripts.noah/
H A Daref.bash22 local index="$2"
25 [ $index -ge 1 ] && shift $index
/macosx-10.10.1/ruby-106/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.10.1/dtrace-147/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...]
H A Dtst.substr.d33 int index;
48 command[i].index = 3;
52 command[i].index = 300;
56 command[i].index = -10;
60 command[i].index = 0;
64 command[i].index = 1;
68 command[i].index = strlen(str) - 1;
72 command[i].index = strlen(str);
76 command[i].index = strlen(str) + 1;
80 command[i].index
[all...]
/macosx-10.10.1/ruby-106/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.10.1/tcl-105/tcl_ext/xotcl/xotcl/library/
H A DpkgIndex.tcl2 foreach index [concat \
5 set dir [file dirname $index]
6 source $index
/macosx-10.10.1/ruby-106/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.10.1/WebKit-7600.1.25/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];
58 int index;
61 for (index = [self count] - 1; index >= 0; --index) {
62 NSMenuItem *item = [self objectAtIndex:index];
65 if (itemIsSeparator && (removePreviousItemIfSeparator || index
[all...]
H A DWebNSArrayExtras.h33 -(NSNumber *)_webkit_numberAtIndex:(NSUInteger)index;
34 -(NSString *)_webkit_stringAtIndex:(NSUInteger)index;
/macosx-10.10.1/xnu-2782.1.97/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...]
H A DIOInterleavedMemoryDescriptor.cpp97 UInt32 index; local
99 for ( index = 0; index < _descriptorCount; index++ )
102 _descriptors[index]->complete(getDirection());
104 _descriptors[index]->release();
105 _descriptors[index] = 0;
107 _descriptorOffsets[index] = 0;
108 _descriptorLengths[index] = 0;
160 for ( unsigned index
186 unsigned index; local
[all...]
H A DIOMultiMemoryDescriptor.cpp83 for ( unsigned index = 0; index < _descriptorsCount; index++ )
84 _descriptors[index]->release();
120 for ( unsigned index = 0; index < withCount; index++ )
122 descriptors[index]->retain();
123 _length += descriptors[index]->getLength();
124 if ( _tag == 0 ) _tag = descriptors[index]
160 unsigned index; local
[all...]
/macosx-10.10.1/Chess-310.6/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.10.1/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.10.1/xnu-2782.1.97/bsd/kern/
H A Dbsd_stubs.c118 * if index is -1, return a free slot if avaliable
119 * else see whether the index is free
122 * if index is negative, we start
123 * looking for a free slot at the absolute value of index,
127 bdevsw_isfree(int index) argument
131 if (index < 0) {
132 if (index == -1)
133 index = 1; /* start at 1 to avoid collision with volfs (Radar 2842228) */
135 index = -index; /* star
164 bdevsw_add(int index, struct bdevsw * bsw) argument
178 bdevsw_remove(int index, struct bdevsw * bsw) argument
203 cdevsw_isfree(int index) argument
245 cdevsw_add(int index, struct cdevsw * csw) argument
259 cdevsw_remove(int index, struct cdevsw * csw) argument
282 cdevsw_add_with_bdev(int index, struct cdevsw * csw, int bdev) argument
296 cdevsw_setkqueueok(int index, struct cdevsw *csw, int use_offset) argument
[all...]
/macosx-10.10.1/OpenLDAP-499.27/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.10.1/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.10.1/IOGraphics-485/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.10.1/ksh-23/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.10.1/llvmCore-3425.0.34/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.10.1/tcl-105/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...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/mozilla/js1_5/Regress/
H A Dregress-111557.js5153 var index = 0;
5229 levelParents[currentLevel + 1] = index;
5231 // levelIndex is the child index under a branch
5273 // NOTE, index to add to is the parent index + 1 for node tree offset of root=0
5330 var navElement = navigationLink("NDS Libraries for C ","http://developer.novell.com/ndk/doc/ndslib/treetitl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
5331 navigationTree[index] = navElement;
5332 index++;
5337 var navElement = navigationLink("NDS Backup Services ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hevgtl7k.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
5338 navigationTree[index]
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationrootelements.cpp26 int32_t index = findP(p); local
27 uint32_t q = elements[index];
30 // p == elements[index] is a root primary. Find the CE before it.
33 secTer = elements[index - 1];
40 index -= 2;
42 p = elements[index];
47 --index;
51 // p > elements[index] which is the previous primary.
56 q = elements[++index];
71 int32_t index local
88 int32_t index = findPrimary(p); local
118 int32_t index; local
143 int32_t index; local
171 getPrimaryAfter(uint32_t p, int32_t index, UBool isCompressible) const argument
193 getSecondaryAfter(int32_t index, uint32_t s) const argument
216 getTertiaryAfter(int32_t index, uint32_t s, uint32_t t) const argument
249 int32_t index = findP(p); local
[all...]

Completed in 244 milliseconds

1234567891011>>