HomeSort by relevance Sort by last modified time
    Searched refs:typemap (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
swigobject.swg 5 %typemap(in) SWIG_Object "$1 = $input;";
7 %typemap(in,noblock=1) SWIG_Object const & ($*ltype temp)
13 %typemap(out,noblock=1) SWIG_Object {
17 %typemap(out,noblock=1) SWIG_Object const & {
23 %typemap(throws,noblock=1) SWIG_Object {
27 %typemap(constcode,noblock=1) SWIG_Object {
33 %typemap(directorin) SWIG_Object "$input = $1;";
34 %typemap(directorout) SWIG_Object "$result = $input;";
  /prebuilts/misc/common/swig/include/2.0.11/java/
java.swg 10 * The jni typemap contains the JNI type used in the JNI (C/C++) code.
11 * The jtype typemap contains the Java type used in the JNI intermediary class.
12 * The jstype typemap contains the Java type used in the Java proxy classes, type wrapper classes and module class. */
58 %typemap(jni) bool, const bool & "jboolean"
59 %typemap(jni) char, const char & "jchar"
60 %typemap(jni) signed char, const signed char & "jbyte"
61 %typemap(jni) unsigned char, const unsigned char & "jshort"
62 %typemap(jni) short, const short & "jshort"
63 %typemap(jni) unsigned short, const unsigned short & "jint"
64 %typemap(jni) int, const int & "jint
    [all...]
enums.swg 11 %typemap(jni) const enum SWIGTYPE & "jint"
12 %typemap(jtype) const enum SWIGTYPE & "int"
13 %typemap(jstype) const enum SWIGTYPE & "$*javaclassname"
15 %typemap(in) const enum SWIGTYPE & ($*1_ltype temp)
18 %typemap(out) const enum SWIGTYPE & %{ $result = (jint)*$1; %}
20 %typemap(directorout,warning=SWIGWARN_TYPEMAP_THREAD_UNSAFE_MSG) const enum SWIGTYPE &
23 %typemap(directorin, descriptor="L$packagepath/$*javaclassname;") const enum SWIGTYPE & "$input = (jint)$1;"
24 %typemap(javadirectorin) const enum SWIGTYPE & "$*javaclassname.swigToEnum($jniinput)"
25 %typemap(javadirectorout) const enum SWIGTYPE & "($javacall).swigValue()"
29 %typemap(throws) const enum SWIGTYPE
    [all...]
enumtypesafe.swg 10 %typemap(jni) const enum SWIGTYPE & "jint"
11 %typemap(jtype) const enum SWIGTYPE & "int"
12 %typemap(jstype) const enum SWIGTYPE & "$*javaclassname"
14 %typemap(in) const enum SWIGTYPE & ($*1_ltype temp)
17 %typemap(out) const enum SWIGTYPE & %{ $result = (jint)*$1; %}
19 %typemap(directorout,warning=SWIGWARN_TYPEMAP_THREAD_UNSAFE_MSG) const enum SWIGTYPE &
22 %typemap(directorin, descriptor="L$packagepath/$*javaclassname;") const enum SWIGTYPE & "$input = (jint)$1;"
23 %typemap(javadirectorin) const enum SWIGTYPE & "$*javaclassname.swigToEnum($jniinput)"
24 %typemap(javadirectorout) const enum SWIGTYPE & "($javacall).swigValue()"
28 %typemap(throws) const enum SWIGTYPE
    [all...]
std_string.i 23 %typemap(jni) string "jstring"
24 %typemap(jtype) string "String"
25 %typemap(jstype) string "String"
26 %typemap(javadirectorin) string "$jniinput"
27 %typemap(javadirectorout) string "$javacall"
29 %typemap(in) string
39 %typemap(directorout) string
49 %typemap(directorin,descriptor="Ljava/lang/String;") string
52 %typemap(out) string
55 %typemap(javain) string "$javainput
    [all...]
various.i 4 * SWIG Typemap library for Java.
22 %typemap(jni) char **STRING_ARRAY "jobjectArray"
23 %typemap(jtype) char **STRING_ARRAY "String[]"
24 %typemap(jstype) char **STRING_ARRAY "String[]"
25 %typemap(in) char **STRING_ARRAY (jint size) {
53 %typemap(freearg) char **STRING_ARRAY {
65 %typemap(out) char **STRING_ARRAY {
84 %typemap(javain) char **STRING_ARRAY "$javainput"
85 %typemap(javaout) char **STRING_ARRAY {
102 %typemap(jni) char **STRING_OUT "jobjectArray
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/tcl/
typemaps.i 4 * SWIG typemap library for Tcl8. This file contains various sorts
13 The SWIG typemap library provides a language independent mechanism for
61 %typemap(in) double *INPUT(double temp), double &INPUT(double temp)
69 %typemap(in) float *INPUT(double dvalue, float temp), float &INPUT(double dvalue, float temp)
78 %typemap(in) int *INPUT(int temp), int &INPUT(int temp)
86 %typemap(in) short *INPUT(int ivalue, short temp), short &INPUT(int ivalue, short temp)
95 %typemap(in) long *INPUT(int ivalue, long temp), long &INPUT(int ivalue, long temp)
104 %typemap(in) unsigned int *INPUT(int ivalue, unsigned int temp),
114 %typemap(in) unsigned short *INPUT(int ivalue, unsigned short temp),
124 %typemap(in) unsigned long *INPUT(int ivalue, unsigned long temp)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/d/
dstrings.swg 8 %typemap(ctype) char *, char *&, char[ANY], char[] "char *"
9 %typemap(imtype) char *, char *&, char[ANY], char[] #DW_STRING_TYPE
10 %typemap(dtype) char *, char *&, char[ANY], char[] #DP_STRING_TYPE
17 %typemap(in) char * %{ $1 = ($1_ltype)$input; %}
18 %typemap(out) char * %{ $result = SWIG_d_string_callback((const char *)$1); %}
19 %typemap(directorout, warning=SWIGWARN_TYPEMAP_DIRECTOROUT_PTR_MSG) char * %{ $result = ($1_ltype)$input; %}
20 %typemap(directorin) char * %{ $input = SWIG_d_string_callback((const char *)$1); %}
21 %typemap(ddirectorin) char * "FROM_STRINGZ($winput)"
22 %typemap(ddirectorout) char * "TO_STRINGZ($dcall)"
29 %typemap(in) char *& ($*1_ltype temp = 0) %
    [all...]
dprimitives.swg 26 %typemap(ctype) TYPE, const TYPE & "TYPE"
27 %typemap(imtype) TYPE, const TYPE & "DTYPE"
28 %typemap(dtype, cprimitive="1") TYPE, const TYPE & "DTYPE"
30 %typemap(in) TYPE "$1 = ($1_ltype)$input;"
31 %typemap(out) TYPE "$result = $1;"
32 %typemap(directorin) TYPE "$input = $1;"
33 %typemap(directorout) TYPE "$result = ($1_ltype)$input;"
34 %typemap(ddirectorin) TYPE "$winput"
35 %typemap(ddirectorout) TYPE "$dcall"
37 %typemap(in) const TYPE & ($*1_ltype temp
    [all...]
std_string.i 24 %typemap(ctype) string, const string & "char *"
25 %typemap(imtype) string, const string & #DW_STRING_TYPE
26 %typemap(dtype) string, const string & #DP_STRING_TYPE
28 %typemap(in, canthrow=1) string, const string &
34 %typemap(in, canthrow=1) const string &
42 %typemap(out) string %{ $result = SWIG_d_string_callback($1.c_str()); %}
43 %typemap(out) const string & %{ $result = SWIG_d_string_callback($1->c_str()); %}
45 %typemap(din) string, const string & "($dinput ? TO_STRINGZ($dinput) : null)"
46 %typemap(dout, excode=SWIGEXCODE) string, const string & {
51 %typemap(directorin) string, const string & %{ $input = SWIG_d_string_callback($1.c_str()); %
    [all...]
dexception.swg 11 %typemap(throws, canthrow=1) int,
22 %typemap(throws, canthrow=1) SWIGTYPE, SWIGTYPE &, SWIGTYPE *, SWIGTYPE [ANY],
28 %typemap(throws, canthrow=1) char *
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_string.i 23 %typemap(ctype) string "char *"
24 %typemap(imtype) string "string"
25 %typemap(cstype) string "string"
27 %typemap(csdirectorin) string "$iminput"
28 %typemap(csdirectorout) string "$cscall"
30 %typemap(in, canthrow=1) string
36 %typemap(out) string %{ $result = SWIG_csharp_string_callback($1.c_str()); %}
38 %typemap(directorout, canthrow=1) string
45 %typemap(directorin) string %{ $input = SWIG_csharp_string_callback($1.c_str()); %}
47 %typemap(csin) string "$csinput
    [all...]
std_wstring.i 25 %typemap(ctype, out="void *") wstring "wchar_t *"
26 %typemap(imtype, inattributes="[MarshalAs(UnmanagedType.LPWStr)]") wstring "string"
27 %typemap(cstype) wstring "string"
28 %typemap(csdirectorin) wstring "$iminput"
29 %typemap(csdirectorout) wstring "$cscall"
31 %typemap(in, canthrow=1) wstring
37 %typemap(out) wstring %{ $result = SWIG_csharp_wstring_callback($1.c_str()); %}
39 %typemap(directorout, canthrow=1) wstring
46 %typemap(directorin) wstring %{ $input = SWIG_csharp_wstring_callback($1.c_str()); %}
48 %typemap(csin) wstring "$csinput
    [all...]
csharp.swg 10 * The ctype typemap contains the PInvoke type used in the PInvoke (C/C++) code.
11 * The imtype typemap contains the C# type used in the intermediary class.
12 * The cstype typemap contains the C# type used in the C# proxy classes, type wrapper classes and module class. */
59 %typemap(ctype) bool, const bool & "unsigned int"
60 %typemap(ctype) char, const char & "char"
61 %typemap(ctype) signed char, const signed char & "signed char"
62 %typemap(ctype) unsigned char, const unsigned char & "unsigned char"
63 %typemap(ctype) short, const short & "short"
64 %typemap(ctype) unsigned short, const unsigned short & "unsigned short"
65 %typemap(ctype) int, const int & "int
    [all...]
wchar.i 54 %typemap(ctype) wchar_t "wchar_t"
55 %typemap(imtype) wchar_t "char"
56 %typemap(cstype) wchar_t "char"
58 %typemap(csin) wchar_t "$csinput"
59 %typemap(csout, excode=SWIGEXCODE) wchar_t {
63 %typemap(csvarin, excode=SWIGEXCODE2) wchar_t %{
67 %typemap(csvarout, excode=SWIGEXCODE2) wchar_t %{
73 %typemap(in) wchar_t %{ $1 = ($1_ltype)$input; %}
74 %typemap(out) wchar_t %{ $result = (wchar_t)$1; %}
76 %typemap(typecheck) wchar_t = char
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/go/
std_string.i 22 %typemap(gotype) string, const string & "string"
24 %typemap(in) string
27 %typemap(directorout) string
30 %typemap(out) string
33 %typemap(directorin) string
36 %typemap(in) const string &
42 %typemap(directorout,warning=SWIGWARN_TYPEMAP_THREAD_UNSAFE_MSG) const string &
49 %typemap(out) const string &
52 %typemap(directorin) const string &
  /prebuilts/misc/common/swig/include/2.0.11/php/
std_string.i 26 %typemap(typecheck,precedence=SWIG_TYPECHECK_STRING) string, const string& %{
30 %typemap(in) string %{
35 %typemap(directorout) string %{
40 %typemap(out) string %{
44 %typemap(directorin) string, const string& %{
48 %typemap(out) const string & %{
52 %typemap(throws) string, const string& %{
59 %typemap(in) string & ($*1_ltype temp) %{
65 %typemap(directorout) string & ($*1_ltype *temp) %{
72 %typemap(argout) string & %
    [all...]
const.i 7 %typemap(consttab) int,
19 %typemap(consttab) float,
23 %typemap(consttab) char
26 %typemap(consttab) char *,
32 %typemap(consttab) SWIGTYPE *,
50 %typemap(consttab) SWIGTYPE (CLASS::*) "";
typemaps.i 4 * SWIG Typemap library for PHP.
8 * ever need to write a typemap.
28 %typemap(in) TYPE *INPUT(TYPE temp), TYPE &INPUT(TYPE temp)
34 %typemap(argout) TYPE *INPUT, TYPE &INPUT "";
35 %typemap(in,numinputs=0) TYPE *OUTPUT(TYPE temp), TYPE &OUTPUT(TYPE temp) "$1 = &temp;";
36 %typemap(argout,fragment="t_output_helper") TYPE *OUTPUT, TYPE &OUTPUT
43 %typemap(in) TYPE *REFERENCE (TYPE lvalue), TYPE &REFERENCE (TYPE lvalue)
49 %typemap(argout) TYPE *REFERENCE, TYPE &REFERENCE
57 %typemap(in) TYPE *INPUT(TYPE temp), TYPE &INPUT(TYPE temp)
63 %typemap(argout) TYPE *INPUT, TYPE &INPUT ""
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
timeval.i 5 Ruby has builtin class Time. INPUT/OUTPUT typemap for timeval and
22 %typemap(in) struct timeval *INPUT (struct timeval temp)
32 %typemap(in,numinputs=0) struct timeval *OUTPUT(struct timeval temp)
37 %typemap(argout) struct timeval *OUTPUT
42 %typemap(out) struct timeval *
47 %typemap(out) struct timespec *
53 %typemap(in) time_t
61 %typemap(typecheck) time_t
66 %typemap(out) time_t
  /prebuilts/misc/common/swig/include/2.0.11/mzscheme/
std_string.i 28 %typemap(typecheck) string = char *;
29 %typemap(typecheck) const string & = char *;
31 %typemap(in) string {
38 %typemap(in) const string & ($*1_ltype temp) {
47 %typemap(out) string {
51 %typemap(out) const string & {
  /prebuilts/misc/common/swig/include/2.0.11/guile/
std_string.i 26 %typemap(typecheck) string = char *;
27 %typemap(typecheck) const string & = char *;
29 %typemap(in) string (char * tempptr) {
39 %typemap(in) const string & ($*1_ltype temp, char *tempptr) {
50 %typemap(in) string * (char *tempptr) {
60 %typemap(out) string {
64 %typemap(out) const string & {
68 %typemap(out) string * {
72 %typemap(varin) string {
82 %typemap(varout) string
    [all...]
typemaps.i 9 %typemap(in) SWIGTYPE *, SWIGTYPE &, SWIGTYPE [] {
12 %typemap(freearg) SWIGTYPE *, SWIGTYPE &, SWIGTYPE [] "";
14 %typemap(in) void * {
17 %typemap(freearg) void * "";
19 %typemap(varin) SWIGTYPE * {
23 %typemap(varin) SWIGTYPE & {
27 %typemap(varin) SWIGTYPE [] {
31 %typemap(varin) SWIGTYPE [ANY] {
40 %typemap(varin) void * {
44 %typemap(out) SWIGTYPE *, SWIGTYPE &, SWIGTYPE []
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/pike/
std_string.i 19 %typemap(typecheck) string = char *;
20 %typemap(typecheck) const string & = char *;
22 %typemap(in, pikedesc="tStr") string {
28 %typemap(in, pikedesc="tStr") const string & ($*1_ltype temp) {
35 %typemap(out, pikedesc="tStr") string "push_text($1.c_str());";
37 %typemap(out, pikedesc="tStr") const string & "push_text($1->c_str());";
39 %typemap(directorin) string, const string &, string & "$1.c_str()";
41 %typemap(directorin) string *, const string * "$1->c_str()";
43 %typemap(directorout) string {
50 %typemap(directorout) const string & ($*1_ltype temp)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
std_string.i 90 %typemap(ctype) string "char *";
91 %typemap(in) string "$1.assign($input);";
92 %typemap(out) string "$result = (char *)(&$1)->c_str();";
93 %typemap(lisptype) string "cl:string";
94 %typemap(lout) string "(cl::setq ACL_ffresult $body)";
96 %typemap(ctype) const string *"char *";
97 %typemap(in) const string * "$1.assign($input);";
98 %typemap(out) const string * "$result = (char *)($1)->c_str();";
99 %typemap(lisptype) const string * "cl:string";
100 %typemap(lout) const string * "(cl::setq ACL_ffresult $body)"
    [all...]

Completed in 421 milliseconds

12 3 4 5 6 7