Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp105 llvm::SmallVector<UTF16, 128> Path16; in createFromPdb() local
106 if (!llvm::convertUTF8ToUTF16String(Path, Path16)) in createFromPdb()
109 const wchar_t *Path16Str = reinterpret_cast<const wchar_t *>(Path16.data()); in createFromPdb()
131 llvm::SmallVector<UTF16, 128> Path16; in createFromExe() local
132 if (!llvm::convertUTF8ToUTF16String(Path, Path16)) in createFromExe()
135 const wchar_t *Path16Str = reinterpret_cast<const wchar_t *>(Path16.data()); in createFromExe()
/freebsd-12.1/contrib/llvm/lib/Support/Windows/
H A DPath.inc71 SmallVectorImpl<wchar_t> &Path16) {
116 return UTF8ToUTF16(FullPath, Path16);
120 return UTF8ToUTF16(Path8Str, Path16);
1207 SmallVector<wchar_t, 128> Path16;
1208 std::error_code EC = widenPath(path, Path16);
1217 Path16.push_back(0);
1218 Path16.push_back(0);
1222 shfos.pFrom = Path16.data();
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DPath.h456 std::error_code widenPath(const Twine &Path8, SmallVectorImpl<wchar_t> &Path16);