Home
last modified time | relevance | path

Searched refs:WStr (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/strings/basic.string/string.cons/
H A Dimplicit_deduction_guides.pass.cpp92 const WStr win(L"abcdef"); in test()
94 ASSERT_SAME_TYPE(decltype(w), WStr); in test()
108 const WStr win(L"abcdef"); in test()
110 ASSERT_SAME_TYPE(decltype(w), WStr); in test()
124 const WStr win(L"abcdef"); in test()
126 ASSERT_SAME_TYPE(decltype(w), WStr); in test()
140 const WStr win(L"abcdef"); in test()
233 const WStr win(L"abcdef"); in test()
249 const WStr win(L"abcdef"); in test()
265 WStr win(L"abcdef"); in test()
[all …]
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/performance/
H A Dfaster-string-find.cpp84 std::wstring WStr; in StringFind() local
85 WStr.find(L"n"); in StringFind()
89 WStr.find(L"\x3A9"); in StringFind()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp93 SmallVector<UTF16, 32> WStr; in allocateString() local
94 bool OK = convertUTF8ToUTF16String(Str, WStr); in allocateString()
100 WStr.push_back(0); in allocateString()
102 allocateNewObject<support::ulittle32_t>(2 * (WStr.size() - 1)).first; in allocateString()
103 allocateNewArray<support::ulittle16_t>(make_range(WStr.begin(), WStr.end())); in allocateString()
/llvm-project-15.0.7/llvm/lib/Object/
H A DMinidump.cpp46 SmallVector<UTF16, 32> WStr(Size); in getString() local
47 copy(*ExpectedData, WStr.begin()); in getString()
50 if (!convertUTF16ToUTF8String(WStr, Result)) in getString()