Searched refs:wide_c (Results 1 – 1 of 1) sorted by relevance
/third_party/boost/libs/regex/src/ |
D | w32_regex_traits.cpp | 174 WCHAR wide_c; in w32_is_lower() 175 if (::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0) in w32_is_lower() 179 if(::GetStringTypeExW(idx, CT_CTYPE1, &wide_c, 1, &mask) && (mask & C1_LOWER)) in w32_is_lower() 215 WCHAR wide_c; in w32_is_upper() 216 if (::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0) in w32_is_upper() 220 if(::GetStringTypeExW(idx, CT_CTYPE1, &wide_c, 1, &mask) && (mask & C1_UPPER)) in w32_is_upper() 476 WCHAR wide_c; in w32_tolower() local 477 if (::MultiByteToWideChar(code_page, 0, &c, 1, &wide_c, 1) == 0) in w32_tolower() 484 &wide_c, // source string in w32_tolower() 547 WCHAR wide_c; in w32_toupper() local [all …]
|