Searched refs:argno (Results 1 - 17 of 17) sorted by relevance

/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DTestSupport.py166 self.fail(message or "argument %d of %r is not a nul-terminated array"%(argno, method))
173 def failUnlessArgIsNullTerminated(self, method, argno, message = None):
179 if not info['arguments'][argno+offset].get('c_array_delimited_by_null'):
180 self.fail(message or "argument %d of %r is not a nul-terminated array"%(argno, method))
182 def failUnlessArgIsVariableSize(self, method, argno, message = None):
188 if not info['arguments'][argno+offset].get('c_array_of_variable_length'):
189 self.fail(message or "argument %d of %r is not a variable sized array"%(argno, method))
194 self.fail(message or "result of %r is not a variable sized array"%(argno, method))
196 def failUnlessArgSizeInResult(self, method, argno, message = None):
202 if not info['arguments'][argno
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/i386/
H A Dsdt_x86.c77 sdt_getarg(void *arg, dtrace_id_t id, void *parg, int argno, int aframes) argument
120 if (argno <= inreg) {
126 argno -= (inreg +1);
139 argno++; /* Advance past probeID */
141 if (argno <= inreg) {
151 argno -= (inreg + 1);
157 val = (uint64_t)(*(((uintptr_t *)stack) + argno));
H A Dfasttrap_isa.c219 fasttrap_anarg(x86_saved_state_t *regs, int function_entry, int argno) argument
245 if (argno < 6)
246 return ((&regs64->rdi)[argno]);
248 stack = regs64->isf.rsp + sizeof(uint64_t) * (argno - 6 + shift);
255 value = dtrace_fuword32((user_addr_t)(unsigned long)&stack[argno + shift]);
2213 fasttrap_pid_getarg(void *arg, dtrace_id_t id, void *parg, int argno, argument
2218 return (fasttrap_anarg((x86_saved_state_t *)find_user_regs(current_thread()), 1, argno));
2222 fasttrap_usdt_getarg(void *arg, dtrace_id_t id, void *parg, int argno, argument
2227 return (fasttrap_anarg((x86_saved_state_t *)find_user_regs(current_thread()), 0, argno));
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DTestSupport.py295 self.fail(message or "argument %d of %r is not a nul-terminated array"%(argno, method))
302 def assertArgIsNullTerminated(self, method, argno, message = None):
308 if not info['arguments'][argno+offset].get('c_array_delimited_by_null'):
309 self.fail(message or "argument %d of %r is not a nul-terminated array"%(argno, method))
311 def assertArgIsVariableSize(self, method, argno, message = None):
317 if not info['arguments'][argno+offset].get('c_array_of_variable_length'):
318 self.fail(message or "argument %d of %r is not a variable sized array"%(argno, method))
323 self.fail(message or "result of %r is not a variable sized array"%(argno, method))
325 def assertArgSizeInResult(self, method, argno, message = None):
331 if not info['arguments'][argno
[all...]
/macosx-10.9.5/tcsh-65/tcsh/
H A Dvms.termcap.c269 int argno = 0, numval; local
276 numval = (argno == 0 ? destline : destcol);
277 argno = 1 - argno;
290 numval = (argno == 0 ? destline : destcol);
292 argno = 1 - argno;
298 argno = 1;
H A Dsh.lex.c1276 int argno = 0; local
1303 quesarg = argno;
1309 argno++;
/macosx-10.9.5/awk-18/src/
H A Dlib.c52 int argno = 1; /* current input argument number */ variable
97 argno++;
123 while (argno < *ARGC || infile == stdin) {
124 dprintf( ("argno=%d, file=|%s|\n", argno, file) );
126 file = getargv(argno);
128 argno++;
133 argno++;
168 argno++;
181 argno
[all...]
/macosx-10.9.5/swig-10/Lib/tcl/
H A Dtclrun.swg595 int argno = 0, opt = 0;
605 for (c = fmt; (*c && (*c != ':') && (*c != ';')); c++,argno++) {
610 if (argno >= (objc-1)) {
623 obj = SWIG_Tcl_GetConstantObj(Tcl_GetStringFromObj(objv[argno+1],0));
624 if (!obj) obj = objv[argno+1];
626 obj = objv[argno+1];
662 *((Tcl_Obj **)vptr) = objv[argno+1];
670 if ((*c != ';') && ((objc-1) > argno)) {
680 sprintf(temp,"%d", argno+1);
/macosx-10.9.5/groff-38/groff/src/preproc/refer/
H A Dcommand.cpp691 int argno = 0; local
715 argno + 1, name);
726 argno + 1, name);
735 argno + 1, name);
748 ++argno;
/macosx-10.9.5/swig-10/Source/Modules/
H A Dphp.cxx1186 int argno = 0; local
1195 assert(0 <= argno && argno < max_num_of_arguments);
1196 String *&pname = arg_names[argno];
1355 if (!arg_values[argno]) {
1356 arg_values[argno] = value;
1358 } else if (Cmp(arg_values[argno], value) != 0) {
1363 Delete(arg_values[argno]);
1364 arg_values[argno] = NewString("?");
1366 } else if (arg_values[argno]) {
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/dtrace/
H A Dsystrace.c1117 systrace_getarg(void *arg, dtrace_id_t id, void *parg, int argno, int aframes) argument
1133 val = (uint64_t)*(stack+argno);
1140 machtrace_getarg(void *arg, dtrace_id_t id, void *parg, int argno, int aframes) argument
1156 val = (uint64_t)*(stack+argno);
/macosx-10.9.5/tcl-102/tcl_ext/ffidl/ffidl/demos/mathswig/
H A Dmathswig_wrap.c850 int argno = 0, opt = 0; local
860 for (c = fmt; (*c && (*c != ':') && (*c != ';')); c++,argno++) {
865 if (argno >= (objc-1)) {
878 obj = SWIG_GetConstant(Tcl_GetStringFromObj(objv[argno+1],0));
879 if (!obj) obj = objv[argno+1];
881 obj = objv[argno+1];
917 *((Tcl_Obj **)vptr) = objv[argno+1];
925 if ((*c != ';') && ((objc-1) > argno)) {
935 sprintf(temp,"%d", argno+1);
/macosx-10.9.5/Heimdal-323.92.1/appl/telnet/telnet/
H A Dcommands.c2348 int argno = 0;
2351 while ((args[argno++] = va_arg(ap, char *)) != 0);
2353 return (*routine)(argno-1, args);
2340 int argno = 0; local
/macosx-10.9.5/remote_cmds-41.90.1/telnet.tproj/
H A Dcommands.c2623 int argno = 0;
2626 while ((args[argno++] = va_arg(ap, char *)) != 0);
2628 return (*routine)(argno-1, args);
2615 int argno = 0; local
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dwoman.el2834 (let ((argno 0) (append (car macro))
2835 argno-string formal-arg from actual-arg start)
2839 (setq argno (1+ argno))
2840 (setq argno-string (format "%d" argno))
2841 (setq formal-arg (concat "\\\\\\$" argno-string)) ; regexp
2861 (setq macro (replace-match argno-string t t macro)))
/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Ddtrace.h1786 * int argno, int aframes)
2221 int argno, int aframes);
/macosx-10.9.5/vim-53/src/testdir/
H A Dtest49.vim9408 let argno = 1
9409 while argno <= a:0
9410 exec "au!" escape(@", " ") a:{argno}
9411 let argno = argno + 1

Completed in 242 milliseconds