HomeSort by relevance Sort by last modified time
    Searched refs:wstring (Results 1 - 25 of 445) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/merge-nested-templates/
b.h 2 std::wstring::iterator j;
c.h 2 std::wstring::iterator i;
  /external/google-breakpad/src/common/windows/
http_upload.h 51 using std::wstring;
68 static bool SendRequest(const wstring &url,
69 const map<wstring, wstring> &parameters,
70 const wstring &upload_file,
71 const wstring &file_part_name,
73 wstring *response_body,
83 static bool ReadResponse(HINTERNET request, wstring* response);
86 static wstring GenerateMultipartBoundary();
89 static wstring GenerateRequestHeader(const wstring &boundary)
    [all...]
guid_string.h 41 using std::wstring;
47 static wstring GUIDToWString(GUID *guid);
53 static wstring GUIDToSymbolServerWString(GUID *guid);
pdb_source_line_writer.h 49 using std::wstring;
56 wstring debug_file;
65 wstring debug_identifier;
69 wstring cpu;
76 wstring code_file;
84 wstring code_identifier;
102 bool Open(const wstring &file, FileFormat format);
111 bool SetCodeFile(const wstring &exe_file);
184 bool FileIDIsCached(const wstring &file) {
189 void CacheFileID(const wstring &file, DWORD id)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/std/
std_wstring.i 9 %naturalvar wstring;
10 typedef basic_string<wchar_t> wstring;
13 %template(wstring) std::basic_string<wchar_t>;
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_wstring.i 4 * Typemaps for std::wstring and const std::wstring&
7 * To use non-const std::wstring references use the following %apply. Note
9 * %apply const std::wstring & {std::wstring &};
20 %naturalvar wstring;
22 class wstring;
24 // wstring
25 %typemap(ctype, out="void *") wstring "wchar_t *"
26 %typemap(imtype, inattributes="[MarshalAs(UnmanagedType.LPWStr)]") wstring "string
    [all...]
  /external/google-breakpad/src/client/windows/sender/
crash_report_sender.h 50 using std::wstring;
68 explicit CrashReportSender(const wstring &checkpoint_file);
90 ReportResult SendCrashReport(const wstring &url,
91 const map<wstring, wstring> &parameters,
92 const wstring &dump_file_name,
93 wstring *report_code);
109 wstring checkpoint_file_;
  /external/libcxx/test/std/re/re.traits/
lookup_collatename.pass.cpp 115 test(L"NUL", std::wstring(L"\x00", 1));
116 test(L"alert", std::wstring(L"\x07"));
117 test(L"backspace", std::wstring(L"\x08"));
118 test(L"tab", std::wstring(L"\x09"));
119 test(L"carriage-return", std::wstring(L"\x0D"));
120 test(L"newline", std::wstring(L"\x0A"));
121 test(L"vertical-tab", std::wstring(L"\x0B"));
122 test(L"form-feed", std::wstring(L"\x0C"));
123 test(L"space", std::wstring(L" "));
124 test(L"exclamation-mark", std::wstring(L"!"))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
lookup_collatename.pass.cpp 107 test(L"NUL", std::wstring(L"\x00", 1));
108 test(L"alert", std::wstring(L"\x07"));
109 test(L"backspace", std::wstring(L"\x08"));
110 test(L"tab", std::wstring(L"\x09"));
111 test(L"carriage-return", std::wstring(L"\x0D"));
112 test(L"newline", std::wstring(L"\x0A"));
113 test(L"vertical-tab", std::wstring(L"\x0B"));
114 test(L"form-feed", std::wstring(L"\x0C"));
115 test(L"space", std::wstring(L" "));
116 test(L"exclamation-mark", std::wstring(L"!"))
    [all...]
  /external/libcxx/test/std/re/re.syn/
wsmatch.pass.cpp 12 // typedef match_results<wstring::const_iterator> wsmatch;
19 static_assert((std::is_same<std::match_results<std::wstring::const_iterator>, std::wsmatch>::value), "");
wsregex_iterator.pass.cpp 12 // typedef regex_iterator<wstring::const_iterator> wsregex_iterator;
19 static_assert((std::is_same<std::regex_iterator<std::wstring::const_iterator>, std::wsregex_iterator>::value), "");
wsregex_token_iterator.pass.cpp 12 // typedef regex_token_iterator<wstring::const_iterator> wsregex_token_iterator;
19 static_assert((std::is_same<std::regex_token_iterator<std::wstring::const_iterator>, std::wsregex_token_iterator>::value), "");
wssub_match.pass.cpp 12 // typedef sub_match<wstring::const_iterator> wssub_match;
19 static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.syn/
wsmatch.pass.cpp 12 // typedef match_results<wstring::const_iterator> wsmatch;
19 static_assert((std::is_same<std::match_results<std::wstring::const_iterator>, std::wsmatch>::value), "");
wsregex_iterator.pass.cpp 12 // typedef regex_iterator<wstring::const_iterator> wsregex_iterator;
19 static_assert((std::is_same<std::regex_iterator<std::wstring::const_iterator>, std::wsregex_iterator>::value), "");
wsregex_token_iterator.pass.cpp 12 // typedef regex_token_iterator<wstring::const_iterator> wsregex_token_iterator;
19 static_assert((std::is_same<std::regex_token_iterator<std::wstring::const_iterator>, std::wsregex_token_iterator>::value), "");
wssub_match.pass.cpp 12 // typedef sub_match<wstring::const_iterator> wssub_match;
19 static_assert((std::is_same<std::sub_match<std::wstring::const_iterator>, std::wssub_match>::value), "");
  /external/google-breakpad/src/tools/windows/dump_syms/
dump_syms.cc 39 using std::wstring;
49 if (!writer.Open(wstring(argv[1]), PDBSourceLineWriter::ANY_FILE)) {
  /external/libcxx/test/std/localization/locales/locale/locale.operators/
compare.pass.cpp 29 std::wstring s2(L"aaaaaaA");
30 std::wstring s3(L"BaaaaaA");
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/
main.cpp 5 std::wstring s(L"hello world! ??? ???!");
6 std::wstring S(L"!!!!");
  /external/lldb/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/
main.cpp 5 std::wstring s(L"hello world! ??? ???!");
6 std::wstring S(L"!!!!");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.operators/
compare.pass.cpp 29 std::wstring s2(L"aaaaaaA");
30 std::wstring s3(L"BaaaaaA");
  /prebuilts/misc/common/swig/include/2.0.11/java/
std_wstring.i 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
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/allegrocl/
std_string.i 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 $bod
    [all...]

Completed in 869 milliseconds

1 2 3 4 5 6 7 8 91011>>