Searched refs:idx (Results 1 - 25 of 1353) sorted by relevance

1234567891011>>

/macosx-10.10/tcl-105/tcl_ext/tbcload/tbcload/tests/tcl/
H A Dbreak1.tcl20 for {set idx 0} {$idx < $top} {} {lappend outer [incr idx]}
21 lappend outer [incr idx]
22 lappend outer [incr idx]
31 for {set idx 0} {$idx < $outerCounter} {} {
32 lappend inner [incr idx]
34 lappend inner [incr idx]
35 lappend inner [incr idx]
[all...]
H A Dforeach.tcl20 for {set idx 0} {$idx < $top} {} {lappend outer [incr idx]}
/macosx-10.10/IOGraphics-485/tools/
H A Dcapture.c18 CGDisplayCount ndid, idx; local
24 for (idx = 0; idx < ndid; idx++)
26 err = CGDisplayCaptureWithOptions(dispids[idx], kCGCaptureNoFill);
27 printf("CGDisplayCapture(%x) %d\n", dispids[idx], err);
28 CGDisplayHideCursor(dispids[idx]);
33 for (idx = 0; idx < ndid; idx
[all...]
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-sip.c38 u_int idx; local
46 for (idx = 0; idx < len; idx++) {
47 TCHECK2(*(pptr+idx), 2);
48 if (EXTRACT_16BITS(pptr+idx) != 0x0d0a) { /* linefeed ? */
49 safeputchar(*(pptr+idx));
52 idx+=1;
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXselect.c120 int handleCnt, idx;
148 for (idx = 0; idx < handleCnt; idx++) {
149 channelList [idx].channelIdObj = handleObjv [idx];
150 channelList [idx].channel =
152 handleObjv [idx],
154 if (channelList [idx].channel == NULL)
158 if (TclXOSGetSelectFnum (interp, channelList [idx]
119 int handleCnt, idx; local
212 int idx, found = FALSE; local
246 int idx, handleCnt; local
286 int idx; local
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Lib/Foundation/
H A D_nsindexset.py7 def __getitem__(self, idx):
8 if isinstance(idx, slice):
9 raise ValueError(idx)
10 return self.indexAtPosition_(idx)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Lib/Foundation/
H A D_nsindexset.py7 def __getitem__(self, idx):
8 if isinstance(idx, slice):
9 raise ValueError(idx)
10 return self.indexAtPosition_(idx)
/macosx-10.10/JavaScriptCore-7600.1.17/offlineasm/
H A Dparser.rb223 @idx = 0
228 if @tokens[@idx]
229 @tokens[@idx].parseError(*comment)
241 parseError unless @tokens[@idx] =~ regexp
243 parseError unless @idx == @tokens.length
245 @idx += 1
249 while @tokens[@idx] == "\n"
250 @idx += 1
255 if @tokens[@idx] == "not"
256 codeOrigin = @tokens[@idx]
[all...]
/macosx-10.10/Libc-1044.1.2/string/FreeBSD/
H A Dstrcspn.c41 * NB: idx and bit are temporaries whose use causes gcc 3.4.2 to
47 int idx; local
56 for (tbl[0] = idx = 1; idx < sizeof(tbl) / sizeof(tbl[0]); idx++)
57 tbl[idx] = 0;
60 idx = IDX(*charset);
62 tbl[idx] |= bit;
66 idx = IDX(*s1);
68 if ((tbl[idx]
[all...]
H A Dstrspn.c41 * NB: idx and bit are temporaries whose use causes gcc 3.4.2 to
47 int idx; local
55 for (idx = 0; idx < sizeof(tbl) / sizeof(tbl[0]); idx++)
56 tbl[idx] = 0;
59 idx = IDX(*charset);
61 tbl[idx] |= bit;
65 idx = IDX(*s1);
67 if ((tbl[idx]
[all...]
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dpolicy.h94 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, _priority, idx) \
96 bzero((idx), sizeof(struct policyindex)); \
97 (idx)->dir = (_dir); \
98 (idx)->prefs = (ps); \
99 (idx)->prefd = (pd); \
100 (idx)->ul_proto = (ulp); \
101 (idx)->priority = (_priority); \
102 memcpy(&(idx)->src, (s), sysdep_sa_len((struct sockaddr *)(s))); \
103 memcpy(&(idx)->dst, (d), sysdep_sa_len((struct sockaddr *)(d))); \
106 #define KEY_SETSECSPIDX(_dir, s, d, ps, pd, ulp, idx) \
[all...]
/macosx-10.10/SmartcardCCID-55008/ccid/ccid/src/
H A Dutils.h32 void ReleaseReaderIndex(const int idx);
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Lib/Foundation/
H A D_nsindexset.py7 def __getitem__(self, idx):
8 if isinstance(idx, slice):
9 raise ValueError(idx)
10 return self.indexAtPosition_(idx)
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dbuttonbox.rb53 def delete(idx)
54 tk_send('delete', tagid(idx))
58 def index(idx)
59 if idx.kind_of?(Tk::BWidget::Button)
60 name = idx[:name]
61 idx = name unless name.empty?
63 if idx.kind_of?(Tk::Button)
64 idx = idx[:text]
66 number(tk_send('index', idx
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-AddressBook/Examples/Scripts/
H A DmeInC.py16 for idx in range(ABMultiValueCount(emails)):
17 value = ABMultiValueCopyValueAtIndex(emails, idx)
18 print "Email %d: %s"%(idx+1, value)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-AddressBook/Examples/Scripts/
H A DmeInC.py16 for idx in range(ABMultiValueCount(emails)):
17 value = ABMultiValueCopyValueAtIndex(emails, idx)
18 print "Email %d: %s"%(idx+1, value)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-AddressBook-2.5.1/Examples/Scripts/
H A DmeInC.py16 for idx in range(ABMultiValueCount(emails)):
17 value = ABMultiValueCopyValueAtIndex(emails, idx)
18 print "Email %d: %s"%(idx+1, value)
/macosx-10.10/swig-12/Lib/lua/
H A Dstd_vector.i49 T __getitem__(unsigned int idx) throw (std::out_of_range)
51 if (idx>=self->size())
53 return (*self)[idx];
55 void __setitem__(unsigned int idx,T val) throw (std::out_of_range)
57 if (idx>=self->size())
59 (*self)[idx]=val;
/macosx-10.10/libpthread-105.1.4/src/
H A Dpthread_atfork.c38 size_t idx; local
42 idx = globals->atfork_count++;
44 if (idx == 0) {
47 } else if (idx == PTHREAD_ATFORK_INLINE_MAX) {
79 } else if (idx >= PTHREAD_ATFORK_MAX) {
84 struct pthread_atfork_entry *e = &globals->atfork[idx];
103 size_t idx; local
104 for (idx = globals->atfork_count; idx > 0; --idx) {
126 size_t idx; local
154 size_t idx; local
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/doc/
H A Dchew.c175 addr (buffer, idx)
177 unsigned int idx;
179 return buffer->ptr + idx;
250 skip_white_and_stars (src, idx)
252 unsigned int idx;
255 while ((c = at (src, idx)),
260 && at (src, idx +1) != '/'
261 && at (src, idx -1) != '\n'))
262 idx++;
263 return idx;
271 unsigned int idx = 0; /* Pos in input buffer */ variable
424 unsigned int idx = 0; local
493 unsigned int idx; local
564 unsigned int idx = 0; local
596 unsigned int idx = 0; local
642 unsigned int idx = 0; local
728 unsigned int idx = 0; local
783 unsigned int idx = 0; local
895 int idx = 0; local
982 int idx = 0; local
1129 int idx; local
[all...]
/macosx-10.10/emacs-93/emacs/lisp/international/
H A Dkinsoku.el59 (idx 0)
62 (while (< idx len)
63 (setq ch (make-char 'latin-jisx0201 (aref str1 idx))
65 idx (1+ idx)))
82 (idx 0)
84 (while (< idx len)
85 (setq ch (aref kinsoku-bol idx)
86 idx (1+ idx))
[all...]
/macosx-10.10/uucp-11/uucp/lib/
H A Dbsrch.c34 register size_t l, u, idx; local
42 idx = (l + u) / 2;
43 p = (constpointer) (((const char *) base) + (idx * size));
46 u = idx;
48 l = idx + 1;
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Ddlx-dis.c146 int idx; local
148 for (idx = 0; idx < r_opc_num; idx++)
150 if (r_opc[idx] != opc)
156 if (idx == r_opc_num)
159 for (idx = 0 ; idx < dlx_r_opcode_num; idx++)
160 if (dlx_r_opcode[idx]
203 int idx; local
247 int idx; local
303 int idx; local
337 int idx; local
377 int idx; local
414 int idx; local
[all...]
/macosx-10.10/IOPCIFamily-239.1.2/
H A Dballoc.c27 uint32_t idx; local
31 for (idx = 0; idx < bf->bheads_count; idx++)
33 next = bf->bheads[idx].free.next;
36 VTLOG("[%d]: 0x%x\n", idx, next);
114 uint32_t list, idx; local
123 for (idx = list; idx < bf->bheads_count; idx
273 uint32_t idx; local
317 int idx; local
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Doptionmenu.rb35 def disable(idx)
36 tk_call(@path, 'disable', idx)
40 def enable(idx)
41 tk_call(@path, 'enable', idx)
61 def index(idx)
62 number(tk_call(@path, 'index', idx))
65 def insert(idx, *args)
66 tk_call(@path, 'insert', idx, *args)
70 def select(idx)
71 tk_call(@path, 'select', idx)
[all...]

Completed in 136 milliseconds

1234567891011>>