Searched refs:idx (Results 176 - 200 of 1353) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/tktable/
H A Dtktable.rb185 def include?(idx)
186 @t.tag_include?(@id, idx)
504 def activate(idx)
505 tk_send('activate', tagid(idx))
508 def bbox(idx)
509 list(tk_send('bbox', tagid(idx)))
587 def get(idx)
588 tk_tcl2ruby(tk_send('get', tagid(idx)), true, false)
610 def hidden?(idx, *args)
612 if (ret = tk_send('hidden', tagid(idx)))
[all...]
/macosx-10.10/tcl-105/tcl_ext/bwidget/bwidget/
H A Dcombobox.tcl228 if {[set idx [lsearch $bindings [list $path _auto_complete %K]]] != -1} {
229 ::bind $entry <KeyRelease> [join [lreplace $bindings $idx $idx] \n]
239 if {[set idx [lsearch $bindings [list ComboBox::_unmapliste $path]]] != -1} {
240 ::bind $entry <Key-Up> [join [lreplace $bindings $idx $idx] \n]
243 if {[set idx [lsearch $bindings [list ComboBox::_mapliste $path]]] != -1} {
244 ::bind $entry <Key-Down> [join [lreplace $bindings $idx $idx] \n]
248 if {[set idx [lsearc
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/ecdh/
H A Decdh.h99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);
/macosx-10.10/OpenSSL098-52/src/include/openssl/
H A Decdh.h99 int ECDH_set_ex_data(EC_KEY *d, int idx, void *arg);
100 void *ECDH_get_ex_data(EC_KEY *d, int idx);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/antlr/
H A DTokenWithIndex.hpp45 void setIndex( size_t idx )
47 index = idx;
/macosx-10.10/configd-699.1.5/nwi/
H A Dnetwork_information_priv.h178 * If 'idx' is outside of the bounds of the corresponding array, returns NULL.
182 nwi_state_get_ifstate_with_index(nwi_state_t state, int af, int idx) argument
185 int i_idx = idx;
187 if (idx > nwi_state_get_ifstate_count(state, af)) {
192 i_idx = idx + state->ipv6_start;
211 int idx = 0; local
223 while (idx < count) {
224 ifstate = nwi_state_get_ifstate_with_index(state, af, idx);
232 idx++;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfbitvector.py63 idx = CFBitVectorGetFirstIndexOfBit(bitset, (0,8), 1)
64 self.assertEquals(idx, 3)
65 idx = CFBitVectorGetLastIndexOfBit(bitset, (0,8), 1)
66 self.assertEquals(idx, 7)
68 idx = CFBitVectorGetFirstIndexOfBit(bitset, (0,8), 0)
69 self.assertEquals(idx, 0)
70 idx = CFBitVectorGetLastIndexOfBit(bitset, (0,8), 0)
71 self.assertEquals(idx, 6)
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DDataProvidersAndConsumers.py34 idx=0
37 dataP[idx] = chr(r)
38 dataP[idx+1] = chr(g)
39 dataP[idx+2] = '\0'
40 idx += 3
116 idx = 0
125 buffer[idx] = chr(i)
126 idx+=1
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfbitvector.py55 idx = CFBitVectorGetFirstIndexOfBit(bitset, (0,8), 1)
56 self.assertEqual(idx, 3)
57 idx = CFBitVectorGetLastIndexOfBit(bitset, (0,8), 1)
58 self.assertEqual(idx, 7)
60 idx = CFBitVectorGetFirstIndexOfBit(bitset, (0,8), 0)
61 self.assertEqual(idx, 0)
62 idx = CFBitVectorGetLastIndexOfBit(bitset, (0,8), 0)
63 self.assertEqual(idx, 6)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DDataProvidersAndConsumers.py34 idx=0
37 dataP[idx] = chr(r)
38 dataP[idx+1] = chr(g)
39 dataP[idx+2] = '\0'
40 idx += 3
116 idx = 0
125 buffer[idx] = chr(i)
126 idx+=1
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/PyObjCTest/
H A Dtest_cfbitvector.py63 idx = CFBitVectorGetFirstIndexOfBit(bitset, (0,8), 1)
64 self.assertEqual(idx, 3)
65 idx = CFBitVectorGetLastIndexOfBit(bitset, (0,8), 1)
66 self.assertEqual(idx, 7)
68 idx = CFBitVectorGetFirstIndexOfBit(bitset, (0,8), 0)
69 self.assertEqual(idx, 0)
70 idx = CFBitVectorGetLastIndexOfBit(bitset, (0,8), 0)
71 self.assertEqual(idx, 6)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DDataProvidersAndConsumers.py34 idx=0
37 dataP[idx] = chr(r)
38 dataP[idx+1] = chr(g)
39 dataP[idx+2] = '\0'
40 idx += 3
116 idx = 0
125 buffer[idx] = chr(i)
126 idx+=1
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dcombobox.rb49 def icursor(idx)
50 tk_send_without_enc('icursor', idx)
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/tile/
H A Dtcombobox.rb44 def current=(idx)
45 tk_send_without_enc('current', idx)
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dfilescan.test293 loop idx 0 10 {
294 puts $testFH "AAx[replicate xx $idx]xBBc[replicate cc $idx]cDD"
303 set idx [expr $matchInfo(linenum) - 1]
305 set end0 [expr 3+($idx * 2)]
306 Test filescan-$id.0.$idx {filescan tests} {
308 } 0 "x[replicate xx $idx]x"
309 Test filescan-$id.1.$idx {filescan tests} {
314 set end1 [expr $start1+($idx*2)+1]
315 Test filescan-$id.2.$idx {filesca
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/tkHTML/
H A Dhtmlwidget.rb235 def index(idx, count=None, unit=None)
236 tk_send('index', idx, count, unit)
239 def insert_cursor(idx)
240 tk_send('insert', idx)
318 def text_insert(idx, txt)
319 tk_send('text', 'insert', idx, txt)
323 def break_text(idx)
324 tk_send('text', 'break', idx)
332 def text_table(idx, imgs=None, attrs=None)
333 tk_send('text', 'table', idx, img
[all...]
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXlist.c83 int catObjc, idx, argIdx;
115 for (idx = 2; idx < objc; idx++, argIdx++) {
116 catObjv [argIdx] = objv [idx];
358 int listObjc, listIdx, idx, remaining;
374 for (idx = 2, listIdx = 0; idx < objc; idx++, listIdx++) {
384 if (Tcl_SetVar2Ex(interp, Tcl_GetStringFromObj(objv [idx], NUL
82 int catObjc, idx, argIdx; local
353 int listObjc, listIdx, idx, remaining; local
419 int listObjc, idx, match, mode, patternLen, valueLen; local
514 int listObjc, idx; local
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/dfg/
H A DDFGDominators.cpp98 bool Dominators::pruneDominators(Graph& graph, BlockIndex idx) argument
100 BasicBlock* block = graph.block(idx);
111 m_scratch.set(idx);
113 return m_results[idx].setAndCheck(m_scratch);
/macosx-10.10/Libc-1044.1.2/sys/OpenBSD/
H A Dstack_protector.c53 int idx = 0; local
61 while (str && idx < GUARD_MAX) {
71 __stack_chk_guard[idx] = (long)(val & ((unsigned long) -1));
72 idx++;
/macosx-10.10/OpenSSL098-52/src/crypto/rc4/asm/
H A Drc4-x86_64.pl255 $idx="%r8";
273 mov OPENSSL_ia32cap_P(%rip),$idx#d
274 bt \$20,$idx#d
276 bt \$30,$idx#d
288 xor $idx,$idx
292 add ($inp,$len,1),$idx#b
293 add %r10b,$idx#b
295 mov ($dat,$idx,4),%r11d
297 mov %r10d,($dat,$idx,
[all...]
/macosx-10.10/OpenSSL098-52/src/crypto/x509v3/
H A Dpcy_node.c81 int idx; local
86 idx = sk_X509_POLICY_NODE_find(nodes, &l);
87 if (idx == -1)
90 return sk_X509_POLICY_NODE_value(nodes, idx);
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_ikslideshow.py6 def slideshowItemAtIndex_(self, idx): return None
7 def nameOfSlideshowItemAtIndex_(self, idx): return None
8 def canExportSlideshowItemAtIndex_toApplication_(self, idx, app): return True
9 def slideshowDidChangeCurrentIndex_(self, idx): pass
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/PyObjCTest/
H A Dtest_ikslideshow.py11 def slideshowItemAtIndex_(self, idx): return None
12 def nameOfSlideshowItemAtIndex_(self, idx): return None
13 def canExportSlideshowItemAtIndex_toApplication_(self, idx, app): return True
14 def slideshowDidChangeCurrentIndex_(self, idx): pass
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dcombobox.rb45 def insert_list(idx, *elems)
46 tk_call(@path, 'insert', 'list', idx, *elems)
50 def insert_entry(idx, *elems)
51 tk_call(@path, 'insert', 'entry', idx, *elems)
H A Dselectionbox.rb49 def insert_items(idx, *args)
50 tk_call(@path, 'insert', 'items', idx, *args)
70 def index(idx)
71 tk_send_without_enc('index', idx).to_i

Completed in 282 milliseconds

1234567891011>>