Home | History | Annotate | Download | only in modula3

Lines Matching refs:typemap

4  * Pointer and reference handling typemap library
14 %typemap(ctype) bool *, bool & "bool *"
15 %typemap(ctype) char & "char *"
16 %typemap(ctype) signed char *, signed char & "signed char *"
17 %typemap(ctype) unsigned char *, unsigned char & "unsigned short *"
18 %typemap(ctype) short *, short & "short *"
19 %typemap(ctype) unsigned short *, unsigned short & "unsigned short *"
20 %typemap(ctype) int *, int & "int *"
21 %typemap(ctype) unsigned int *, unsigned int & "unsigned int *"
22 %typemap(ctype) long *, long & "long *"
23 %typemap(ctype) unsigned long *, unsigned long & "unsigned long *"
24 %typemap(ctype) long long *, long long & "long long *"
25 %typemap(ctype) unsigned long long *, unsigned long long & "unsigned long long *"
26 %typemap(ctype) float *, float & "float *"
27 %typemap(ctype) double *, double & "double *"
29 %typemap(imtype) bool *, bool & "ref bool"
30 %typemap(imtype) char & "ref char"
31 %typemap(imtype) signed char *, signed char & "ref sbyte"
32 %typemap(imtype) unsigned char *, unsigned char & "ref byte"
33 %typemap(imtype) short *, short & "ref short"
34 %typemap(imtype) unsigned short *, unsigned short & "ref ushort"
35 %typemap(imtype) int *, int & "ref int"
36 %typemap(imtype) unsigned int *, unsigned int & "ref uint"
37 %typemap(imtype) long *, long & "ref int"
38 %typemap(imtype) unsigned long *, unsigned long & "ref uint"
39 %typemap(imtype) long long *, long long & "ref long"
40 %typemap(imtype) unsigned long long *, unsigned long long & "ref ulong"
41 %typemap(imtype) float *, float & "ref float"
42 %typemap(imtype) double *, double & "ref double"
44 %typemap(cstype) bool *, bool & "ref bool"
45 %typemap(cstype) char & "ref char"
46 %typemap(cstype) signed char *, signed char & "ref sbyte"
47 %typemap(cstype) unsigned char *, unsigned char & "ref byte"
48 %typemap(cstype) short *, short & "ref short"
49 %typemap(cstype) unsigned short *, unsigned short & "ref ushort"
50 %typemap(cstype) int *, int & "ref int"
51 %typemap(cstype) unsigned int *, unsigned int & "ref uint"
52 %typemap(cstype) long *, long & "ref int"
53 %typemap(cstype) unsigned long *, unsigned long & "ref uint"
54 %typemap(cstype) long long *, long long & "ref long"
55 %typemap(cstype) unsigned long long *, unsigned long long & "ref ulong"
56 %typemap(cstype) float *, float & "ref float"
57 %typemap(cstype) double *, double & "ref double"
59 %typemap(csin) bool *, bool &,