Home | History | Annotate | Download | only in lua

Lines Matching refs:ltype

49 %typemap(in,checkfn="lua_isnumber")	TYPE *INPUT($*ltype temp), TYPE &INPUT($*ltype temp)
50 %{ temp = ($*ltype)lua_tonumber(L,$input);
52 %typemap(in, numinputs=0) TYPE *OUTPUT ($*ltype temp)
62 // const version (the $*ltype is the basic number without ptr or const's)
63 %typemap(in,checkfn="lua_isnumber") const TYPE *INPUT($*ltype temp)
64 %{ temp = ($*ltype)lua_tonumber(L,$input);
364 %{ $1 = ($ltype)SWIG_get_int_num_array_fixed(L,$input,$1_dim0);
372 %{ $1 = ($ltype)SWIG_get_int_num_array_var(L,$input,&$2);
496 %{ $1 = ($ltype)SWIG_get_ptr_array_fixed(L,$input,$1_dim0,$*1_descriptor);
504 %{ $1 = ($ltype)SWIG_get_ptr_array_var(L,$input,&$2,$*1_descriptor);
559 %typemap(in,numinputs=0) SWIGTYPE** OUTPUT ($*ltype temp)
560 %{ temp = ($*ltype)0;