Searched refs:idx (Results 201 - 225 of 1353) sorted by relevance

1234567891011>>

/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dselectiondialog.rb39 def insert_items(idx, *args)
40 tk_call(@path, 'insert', 'items', idx, *args)
60 def index(idx)
61 tk_send_without_enc('index', idx).to_i
/macosx-10.10/ruby-106/ruby/lib/irb/ext/
H A Dhistory.rb76 def [](idx)
78 if idx >= 0
79 @contents.find{|no, val| no == idx}[1]
81 @contents[idx][1]
/macosx-10.10/security_dotmac_tp-55107.1/lib/
H A DdotMacTpUtils.cpp114 int idx = 0; local
118 outDomain.Length = idx;
120 while (idx < stopIdx) {
122 outName.Length = idx;
123 outDomain.Length = (CSSM_SIZE)(stopIdx - (idx + 1));
127 idx++;
131 idx = 0;
133 while (idx < stopIdx) {
135 outDomain.Length = idx;
138 idx
148 int idx = 0; local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/krb5/
H A Dget_addrs.c102 unsigned int num, idx; local
140 for (ifa = ifa0, idx = 0; ifa != NULL; ifa = ifa->ifa_next) {
153 ret = krb5_sockaddr2address(context, ifa->ifa_addr, &res->val[idx]);
165 krb5_address_search(context, &res->val[idx], &ignore_addresses)) {
166 krb5_free_address(context, &res->val[idx]);
173 idx++;
180 if ((flags & LOOP_IF_NONE) != 0 && idx == 0) {
196 ifa->ifa_addr, &res->val[idx]);
200 krb5_address_search(context, &res->val[idx],
202 krb5_free_address(context, &res->val[idx]);
[all...]
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Dcollationweights.h83 /** @return number of usable byte values for byte idx */
84 inline int32_t countBytes(int32_t idx) const {
85 return (int32_t)(maxBytes[idx] - minBytes[idx] + 1);
/macosx-10.10/OpenSSH-189/openssh/openbsd-compat/
H A Dbsd-cygwin_util.c84 unsigned int i, idx = 0; local
90 p[idx++] = *e;
93 p[idx] = NULL;
/macosx-10.10/libauto-186/auto_tester/
H A Dauto_tester.m50 [testCases enumerateObjectsUsingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))^(id obj, NSUInteger idx, BOOL *stop){
86 [testCases enumerateObjectsUsingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))^(id obj, NSUInteger idx, BOOL *stop){
131 [testClasses enumerateObjectsUsingBlock:(void (^)(id obj, NSUInteger idx, BOOL *stop))^(id obj, NSUInteger idx, BOOL *stop){
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/examples/csv/
H A Dcsvdiff17 set usage "Usage: $argv0 ?-n? ?-sep sepchar? ?-key LIST? file1 file2\n\tLIST=idx,...\n\tidx in \{n, -m, n-, n-m\}"
47 set idx [list]
51 lappend idx [list $f $t]
54 lappend idx [list $f end]
57 lappend idx [list 0 $t]
59 lappend idx [list $i $i]
61 #puts stderr >>$idx<<
67 set keySpec $idx
/macosx-10.10/tcl-105/tcl_ext/tclx/tclx/generic/
H A DtclXfcntl.c112 int idx;
119 for (idx = 0; TclXfcntlAttrNames [idx].name != NULL; idx++) {
120 if (STREQU (attrNameUp, TclXfcntlAttrNames [idx].name)) {
121 if (modify && !TclXfcntlAttrNames [idx].modifiable) {
127 return TclXfcntlAttrNames [idx].id;
138 for (idx = 0; TclXfcntlAttrNames [idx + 1].name != NULL; idx
111 int idx; local
[all...]
H A DtclXmath.c129 int idx, maxIdx = 1;
134 for (idx = 1; idx < objc; idx++) {
135 if (ConvertIntOrDoubleObj (interp, objv [idx], &value) != TCL_OK)
139 maxIdx = idx;
164 int idx, minIdx = 1;
169 for (idx = 1; idx < objc; idx
127 int idx, maxIdx = 1; local
161 int idx, minIdx = 1; local
[all...]
H A DtclXsignal.c560 int idx;
575 for (idx = 0; sigNameTable [idx].num != -1; idx++) {
576 if (STREQU (sigNamePtr, sigNameTable [idx].name)) {
577 *sigNumPtr = sigNameTable [idx].num;
976 int signalObjc, signalNum, idx, cnt;
999 for (idx = 0; sigNameTable [idx].name != NULL; idx
554 int idx; local
963 int signalObjc, signalNum, idx, cnt; local
1320 int keysObjc, idx; local
1495 int signalNum, nextArg, idx, procId, procObjc; local
1577 int idx; local
1656 int idx; local
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dzn_malloc.c243 int idx; local
276 idx = zo_new->zo_idx;
278 (char*)zh->zh_zones[idx]) >> (order + 1);
279 zh->zh_maps[idx][order-order_start][diff>>3] |= (1 << (diff & 0x7));
280 *ptr++ = zh->zh_seqno[idx];
465 int i, k, inserted = 0, idx; local
482 idx = zoo->zo_idx;
483 assert(idx != -1);
484 zone = zh->zh_zones[idx];
501 zh->zh_maps[idx][
685 int idx = -1, rc = 0; local
752 int idx, rc = 0; local
809 int idx; local
833 int idx; local
857 int idx; local
881 int idx; local
[all...]
/macosx-10.10/ruby-106/ruby/ext/tk/sample/
H A Dtkalignbox.rb45 def _place_config(widget, idx, cnt)
55 @widgets.each_with_index{|w, idx| _place_config(w, idx, cnt)}
80 def insert(idx, widget)
85 @widgets[idx,0] = widget
93 def delete(idx)
94 ret = @widgets.delete_at(idx)
135 def _place_config(widget, idx, cnt)
137 'relx'=>idx/cnt, 'x'=>@padx,
147 def _place_config(widget, idx, cn
[all...]
H A Dtkcombobox.rb94 def _set_sel(idx)
95 @lbox.activate(idx)
97 @lbox.selection_set(idx)
120 idx = @lbox.nearest(0)
121 if idx >= 0
122 @lbox.see(idx - 1)
123 _set_sel(idx)
124 @up_arrow.pack_forget if idx == 1
125 @up_timer.stop if idx == 0
128 if cidx && cidx > 0 && (idx
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/tie/
H A Dtie.tcl208 # $mid,$idx | Propagation for index $idx is in progress.
304 proc ::tie::Trace {mid avar idx op} {
305 #puts "[pid] Trace $mid $avar ($idx) $op"
313 if {($op eq "unset") && ($idx eq "")} {
322 if {[::info exists lock($mid,$idx)]} {
323 #puts "%% locked $mid,$idx"
326 set lock($mid,$idx) .
327 #puts "%% lock $mid,$idx"
332 $dso unsetv $idx
[all...]
/macosx-10.10/apache-793/httpd/modules/dav/main/
H A Dliveprop.c69 apr_hash_index_t *idx = apr_hash_first(p, dav_liveprop_uris); local
71 for ( ; idx != NULL; idx = apr_hash_next(idx) ) {
76 apr_hash_this(idx, &key, NULL, &val);
/macosx-10.10/iodbc-42.5/iodbc/iodbc/
H A Ddlproc.c102 _iodbcdm_getproc (HDBC hdbc, int idx) argument
108 if (idx <= 0 || idx >= __LAST_API_FUNCTION__)
116 phproc = penv->dllproc_tab + idx;
119 *phproc = _iodbcdm_dllproc (penv->hdll, odbcapi_symtab[idx]);
/macosx-10.10/network_cmds-457/ifconfig.tproj/
H A Difclone.c48 int idx; local
76 for (cp = buf, idx = 0; idx < ifcr.ifcr_count; idx++, cp += IFNAMSIZ) {
77 if (idx > 0)
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_AppKit_nsbezierpath.m18 int idx;
23 if (!PyArg_ParseTuple(arguments, "i", &idx)) {
33 idx,
44 idx,
94 int idx;
100 if (!PyArg_ParseTuple(arguments, "Oi", &pointList, &idx)) {
133 idx);
143 idx);
167 int idx = *(int*)args[2];
190 v = PyInt_FromLong(idx);
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/Modules/
H A D_AppKit_nsbezierpath.m14 NSInteger idx;
19 if (!PyArg_ParseTuple(arguments, Py_ARG_NSInteger, &idx)) {
29 idx,
40 idx,
90 NSInteger idx;
97 &pointList, &idx)) {
130 idx);
140 idx);
164 NSInteger idx = *(NSInteger*)args[2];
187 v = PyInt_FromLong(idx);
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Cocoa-2.5.1/Modules/
H A D_AppKit_nsbezierpath.m14 NSInteger idx;
19 if (!PyArg_ParseTuple(arguments, Py_ARG_NSInteger, &idx)) {
29 idx,
40 idx,
90 NSInteger idx;
97 &pointList, &idx)) {
130 idx);
140 idx);
164 NSInteger idx = *(NSInteger*)args[2];
187 v = PyInt_FromLong(idx);
[all...]
/macosx-10.10/tcl-105/tcl_ext/tktable/tktable/demos/
H A Ddynarows.tcl15 proc table_validate {w idx} {
16 if {[scan $idx %d,%d row col] != 2} return
17 set val [$w get $idx]
25 $w activate $idx
34 $w set $idx [join $date "/"]
/macosx-10.10/tcl-105/tcl_ext/bwidget/bwidget/
H A Ddragsite.tcl92 set idx [lsearch $tags "BwDrag*"]
95 if { $idx != -1 } {
96 bindtags $path [lreplace $tags $idx $idx BwDrag$event]
103 } elseif { $idx != -1 } {
104 bindtags $path [lreplace $tags $idx $idx]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2base/
H A Dhtml_cssdefaults.tcl46 H1.title, H1.idx-title {
112 DIV.idx-kwnav {
132 TR.idx-even {
137 TR.idx-odd {
142 DIV.idx-header, DIV.idx-footer, DIV.idx-leader {
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Dpackage.cpp424 int32_t idx; local
428 for(idx=0; idx<itemCount; ++idx) {
429 if(items[idx].isDataOwned) {
430 free(items[idx].data);
977 int32_t idx, nameLength, middleLength; local
984 idx=findNextIndex++;
985 name=items[idx].name;
1012 return idx;
1032 int32_t idx; local
1090 removeItem(int32_t idx) argument
1111 int32_t idx; local
1130 extractItem(const char *filesPath, const char *outName, int32_t idx, char outType) argument
1188 extractItem(const char *filesPath, int32_t idx, char outType) argument
1194 int32_t idx; local
[all...]

Completed in 303 milliseconds

1234567891011>>