Home | History | Annotate | Download | only in allegrocl

Lines Matching refs:wstring

16 %warnfilter(404) std::wstring;
25 // %naturalvar std::wstring;
81 %template(wstring) basic_string<wchar_t>;
84 %apply wchar_t * { wstring };
87 typedef basic_string<wchar_t> wstring;
102 %typemap(ctype) wstring "wchar_t *";
103 %typemap(in) wstring "$1.assign($input);";
104 %typemap(out) wstring "$result = (wchar_t *)(&$1)->c_str();";
105 %typemap(lisptype) wstring "cl:string";
106 %typemap(lout) wstring "(cl::setq ACL_ffresult (excl:native-to-string $body
109 %typemap(ctype) const wstring *"char *";
110 %typemap(in) const wstring * "$1.assign($input);";
111 %typemap(out) const wstring * "$result = (char *)($1)->c_str();";
112 %typemap(lisptype) const wstring * "cl:string";
113 %typemap(lout) const wstring * "(cl::setq ACL_ffresult $body)";