Lines Matching defs:__c
66 [[nodiscard]] static bool __is_whitespace(int __c) { return __c == ' ' || __c == '\t'; }
80 [[nodiscard]] static bool __is_eol(int __c) { return __c == '\n' || __c == std::char_traits<char>::eof(); }
95 for (auto __c : __suffix)
96 if (std::tolower(__input.peek()) == __c)
102 char __c = __input.get();
103 if (std::tolower(__c) != __expected)
105 (string("corrupt tzdb: expected character '") + __expected + "', got '" + __c + "' instead").c_str());
109 for (auto __c : __expected) {
110 _LIBCPP_ASSERT_INTERNAL(!std::isalpha(__c) || std::islower(__c), "lowercase strings only here!");
112 if (std::tolower(__actual) != __c)
114 (string("corrupt tzdb: expected character '") + __c + "' from string '" + string(__expected) + "', got '" +
123 int __c = __input.get();
124 switch (__c) {
137 __result.push_back(__c);
378 int __c = __input.peek();
379 bool __negative = __c == '-';
454 int __c = __input.peek();
456 if (__c == '-') {
464 if (std::isdigit(__c) || __c == '+')
601 int __c = std::tolower(__input.get());
603 switch (__c) {