Home | History | Annotate | Download | only in cffi

Lines Matching refs:typemap

8 %typemap(cin) void ":void";
10 %typemap(cin) char ":char";
11 %typemap(cin) char * ":string";
12 %typemap(cin) unsigned char ":unsigned-char";
13 %typemap(cin) signed char ":char";
15 %typemap(cin) short ":short";
16 %typemap(cin) signed short ":short";
17 %typemap(cin) unsigned short ":unsigned-short";
19 %typemap(cin) int ":int";
20 %typemap(cin) signed int ":int";
21 %typemap(cin) unsigned int ":unsigned-int";
23 %typemap(cin) long ":long";
24 %typemap(cin) signed long ":long";
25 %typemap(cin) unsigned long ":unsigned-long";
27 %typemap(cin) long long ":long-long";
28 %typemap(cin) signed long long ":long-long";
29 %typemap(cin) unsigned long long ":unsigned-long-long";
31 %typemap(cin) float ":float";
32 %typemap(cin) double ":double";
33 %typemap(cin) SWIGTYPE ":pointer";
35 %typemap(cout) void ":void";
37 %typemap(cout) char ":char";
38 %typemap(cout) char * ":string";
39 %typemap(cout) unsigned char ":unsigned-char";
40 %typemap(cout) signed char ":char";
42 %typemap(cout) short ":short";
43 %typemap(cout) signed short ":short";
44 %typemap(cout) unsigned short ":unsigned-short";
46 %typemap(cout) int ":int";
47 %typemap(cout) signed int ":int";
48 %typemap(cout) unsigned int ":unsigned-int";
50 %typemap(cout) long ":long";
51 %typemap(cout) signed long ":long";
52 %typemap(cout) unsigned long ":unsigned-long";
54 %typemap(cout) long long ":long-long";
55 %typemap(cout) signed long long ":long-long";
56 %typemap(cout) unsigned long long ":unsigned-long-long";
58 %typemap(cout) float ":float";
59 %typemap(cout) double ":double";
60 %typemap(cout) SWIGTYPE ":pointer";
63 %typemap(ctype) bool "int";
64 %typemap(ctype) char, unsigned char, signed char,
71 %typemap(ctype) SWIGTYPE "$&1_type";
73 %typemap(in) bool "$1 = (bool)$input;";
74 %typemap(in) char, unsigned char, signed char,
81 %typemap(in) SWIGTYPE "$1 = *$input;";
83 %typemap(out) void "";
84 %typemap(out) bool "$result = (int)$1;";
85 %typemap(out) char, unsigned char, signed char,
93 %typemap(out) SWIGTYPE "$result = new $1_type($1);";
95 %typemap(out) SWIGTYPE {
116 %typemap(lisptype) bool "cl:boolean";
117 %typemap(lisptype) char "cl:character";
118 %typemap(lisptype) unsigned char "cl:integer";
119 %typemap(lisptype) signed char "cl:integer";
121 %typemap(lispclass) bool "t";
122 %typemap(lispclass) char "cl:character";
123 %typemap(lispclass) unsigned char, signed char,
129 %typemap(lispclass) float "cl:number";
130 %typemap(lispclass) double "cl:number";
131 %typemap(lispclass) char * "cl:string";
202 %typemap(out) SWIGTYPE "$result = new $1_type($1);";
204 %typemap(out) SWIGTYPE {