Home | History | Annotate | Download | only in java

Lines Matching refs:wstring

4  * Typemaps for std::wstring and const std::wstring&
8 * OSs so the std::wstring typemaps may not always work as intended.
10 * To use non-const std::wstring references use the following %apply. Note
12 * %apply const std::wstring & {std::wstring &};
17 %naturalvar wstring;
19 class wstring;
21 // wstring
22 %typemap(jni) wstring "jstring"
23 %typemap(jtype) wstring "String"
24 %typemap(jstype) wstring "String"
25 %typemap(javadirectorin) wstring "$jniinput"
26 %typemap(javadirectorout) wstring "$javacall"
28 %typemap(in) wstring
30 SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null std::wstring");
45 %typemap(directorout) wstring
47 SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null std::wstring");
62 %typemap(directorin,descriptor="Ljava/lang/String;") wstring {
72 %typemap(out) wstring
81 %typemap(javain) wstring "$javainput"
83 %typemap(javaout) wstring {
87 //%typemap(typecheck) wstring = wchar_t *;
89 %typemap(throws) wstring
94 // const wstring &
95 %typemap(jni) const wstring & "jstring"
96 %typemap(jtype) const wstring & "String"
97 %typemap(jstype) const wstring & "String"
98 %typemap(javadirectorin) const wstring & "$jniinput"
99 %typemap(javadirectorout) const wstring & "$javacall"
101 %typemap(in) const wstring &
103 SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null std::wstring");
109 std::wstring $1_str;
120 %typemap(directorout,warning=SWIGWARN_TYPEMAP_THREAD_UNSAFE_MSG) const wstring &
122 SWIG_JavaThrowException(jenv, SWIG_JavaNullPointerException, "null std::wstring");
129 static std::wstring $1_str;
139 %typemap(directorin,descriptor="Ljava/lang/String;") const wstring & {
149 %typemap(out) const wstring &
158 %typemap(javain) const wstring & "$javainput"
160 %typemap(javaout) const wstring & {
164 //%typemap(typecheck) const wstring & = wchar_t *;
166 %typemap(throws) const wstring &