Home
last modified time | relevance | path

Searched refs:ConvertUTF8toWide (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/llvm-subzero/lib/Support/
DConvertUTFWrapper.cpp20 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source, in ConvertUTF8toWide() function
194 if (!ConvertUTF8toWide(sizeof(wchar_t), Source, ResultPtr, ErrorPtr)) { in ConvertUTF8toWideInternal()
202 bool ConvertUTF8toWide(llvm::StringRef Source, std::wstring &Result) { in ConvertUTF8toWide() function
206 bool ConvertUTF8toWide(const char *Source, std::wstring &Result) { in ConvertUTF8toWide() function
211 return ConvertUTF8toWide(llvm::StringRef(Source), Result); in ConvertUTF8toWide()
/external/llvm/lib/Support/
DConvertUTFWrapper.cpp20 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source, in ConvertUTF8toWide() function
194 if (!ConvertUTF8toWide(sizeof(wchar_t), Source, ResultPtr, ErrorPtr)) { in ConvertUTF8toWideInternal()
202 bool ConvertUTF8toWide(llvm::StringRef Source, std::wstring &Result) { in ConvertUTF8toWide() function
206 bool ConvertUTF8toWide(const char *Source, std::wstring &Result) { in ConvertUTF8toWide() function
211 return ConvertUTF8toWide(llvm::StringRef(Source), Result); in ConvertUTF8toWide()
DCommandLine.cpp957 if (!llvm::ConvertUTF8toWide(envVar, wenvVar)) { in ParseEnvironmentOptions()
/external/llvm/include/llvm/Support/
DConvertUTF.h200 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source,
207 bool ConvertUTF8toWide(llvm::StringRef Source, std::wstring &Result);
213 bool ConvertUTF8toWide(const char *Source, std::wstring &Result);
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DConvertUTF.h196 bool ConvertUTF8toWide(unsigned WideCharWidth, llvm::StringRef Source,
203 bool ConvertUTF8toWide(llvm::StringRef Source, std::wstring &Result);
209 bool ConvertUTF8toWide(const char *Source, std::wstring &Result);
/external/llvm/unittests/Support/
DConvertUTFTest.cpp95 TEST(ConvertUTFTest, ConvertUTF8toWide) { in TEST() argument
99 bool Success = ConvertUTF8toWide((const char*)Src, Result); in TEST()
104 Success = ConvertUTF8toWide(StringRef(Src, 7), Result); in TEST()
/external/clang/lib/Driver/
DMSVCToolChain.cpp99 if (!llvm::ConvertUTF8toWide(valueName, WideValueName)) in readFullStringValue()
483 if (!llvm::ConvertUTF8toWide(ClExe.c_str(), ClExeWide)) in getMSVCVersionFromExe()
/external/clang/lib/Lex/
DLiteralSupport.cpp1575 if (ConvertUTF8toWide(CharByteWidth, Fragment, ResultPtr, ErrorPtrTmp)) in CopyStringFragment()
1605 while (!ConvertUTF8toWide(CharByteWidth, NextFragment, Ptr, ErrorPtrTmp)) { in CopyStringFragment()
/external/clang/lib/Sema/
DSemaExpr.cpp3050 bool success = ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr); in ConvertUTF8ToWideString()