Home
last modified time | relevance | path

Searched refs:Path16 (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp96 llvm::SmallVector<UTF16, 128> Path16; in createFromPdb() local
97 if (!llvm::convertUTF8ToUTF16String(Path, Path16)) in createFromPdb()
100 const wchar_t *Path16Str = reinterpret_cast<const wchar_t *>(Path16.data()); in createFromPdb()
122 llvm::SmallVector<UTF16, 128> Path16; in createFromExe() local
123 if (!llvm::convertUTF8ToUTF16String(Path, Path16)) in createFromExe()
126 const wchar_t *Path16Str = reinterpret_cast<const wchar_t *>(Path16.data()); in createFromExe()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/Windows/
H A DWindowsSupport.h242 std::error_code widenPath(const Twine &Path8, SmallVectorImpl<wchar_t> &Path16,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/
H A DPath.inc68 std::error_code widenPath(const Twine &Path8, SmallVectorImpl<wchar_t> &Path16,
77 if (std::error_code EC = UTF8ToUTF16(Path8Str, Path16))
93 if ((Path16.size() + CurPathLen) < MaxPathLen ||
117 return UTF8ToUTF16(FullPath, Path16);
1327 SmallVector<wchar_t, 128> Path16;
1328 std::error_code EC = widenPath(path, Path16);
1337 Path16.push_back(0);
1338 Path16.push_back(0);
1342 shfos.pFrom = Path16.data();