Searched refs:codepage (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/llvm/tools/llvm-rc/ |
| H A D | WindresOpts.td | 47 defm codepage : LongShort<"c", "codepage", "Default codepage to use">;
|
| H A D | Opts.td | 37 def codepage : JS<"C", "Set the codepage used for input strings.">;
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-rc/ |
| H A D | codepage.test | 5 ; RUN: llvm-windres --no-preprocess --codepage 65001 %p/Inputs/utf8.rc %t.utf8.res 7 ; RUN: llvm-windres --no-preprocess --codepage 0xfde9 %p/Inputs/utf8.rc %t.utf8.res
|
| H A D | helpmsg.test | 10 ; CHECK-NEXT: /C <value> Set the codepage used for input strings.
|
| /llvm-project-15.0.7/llvm/lib/Support/Windows/ |
| H A D | Path.inc | 1499 std::error_code CodePageToUTF16(unsigned codepage, 1503 int len = ::MultiByteToWideChar(codepage, MB_ERR_INVALID_CHARS, original.begin(), 1513 len = ::MultiByteToWideChar(codepage, MB_ERR_INVALID_CHARS, original.begin(), 1539 std::error_code UTF16ToCodePage(unsigned codepage, const wchar_t *utf16, 1544 int len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, converted.begin(), 1555 len = ::WideCharToMultiByte(codepage, 0, utf16, utf16_len, converted.data(),
|
| /llvm-project-15.0.7/libcxx/src/filesystem/ |
| H A D | operations.cpp | 2021 UINT codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP; in __wide_to_char() local 2023 int ret = WideCharToMultiByte(codepage, 0, str.data(), str.size(), out, in __wide_to_char() 2034 UINT codepage = AreFileApisANSI() ? CP_ACP : CP_OEMCP; in __char_to_wide() local 2035 int ret = MultiByteToWideChar(codepage, MB_ERR_INVALID_CHARS, str.data(), in __char_to_wide()
|