Searched refs:ascii_tolower (Results 1 – 12 of 12) sorted by relevance
23 static char ascii_tolower(char x) { in ascii_tolower() function43 unsigned char LHC = ascii_tolower(LHS[I]); in ascii_strncasecmp()44 unsigned char RHC = ascii_tolower(RHS[I]); in ascii_strncasecmp()73 char L = ascii_tolower(C); in find_lower()74 return find_if([L](char D) { return ascii_tolower(D) == L; }, From); in find_lower()125 Result[i] = ascii_tolower(Data[i]); in lower()212 if (ascii_tolower(Data[i]) == ascii_tolower(C)) in rfind_lower()
23 static char ascii_tolower(char x) { in ascii_tolower() function43 unsigned char LHC = ascii_tolower(LHS[I]); in ascii_strncasecmp()44 unsigned char RHC = ascii_tolower(RHS[I]); in ascii_strncasecmp()120 Result[i] = ascii_tolower(Data[i]); in lower()
227 result.push_back(ascii_tolower(input[i])); in ToCamelCase()240 result.push_back(ascii_tolower(input[i])); in ToCamelCase()270 result.push_back(ascii_tolower(input[i])); in ToSnakeCase()
22 static char ascii_tolower(char x) { in ascii_tolower() function35 unsigned char LHC = ascii_tolower(Data[I]); in compare_lower()36 unsigned char RHC = ascii_tolower(RHS.Data[I]); in compare_lower()
10 *i = ascii_tolower(*i); in LowerString()
83 static inline char ascii_tolower(unsigned char c) { return kAsciiToLower[c]; } in ascii_tolower() function
208 result += ascii_tolower(current); in ShoutyToPascalCase()226 prefix_to_match += ascii_tolower(prefix[i]); in TryRemovePrefix()239 if (ascii_tolower(value[value_index]) != prefix_to_match[prefix_index++]) { in TryRemovePrefix()
118 current += ascii_tolower(c); in UnderscoresToCamelCase()147 result[0] = ascii_tolower(result[0]); in UnderscoresToCamelCase()499 result += ascii_tolower(c); in UnCamelCaseFieldName()1168 } else if (desired == ascii_tolower(input)) { in AddFirst()
92 inline char ascii_tolower(char c) { in ascii_tolower() function
1293 static_cast<int>(static_cast<unsigned char>(ascii_tolower(us1[i]))) - in memcasecmp()1294 static_cast<int>(static_cast<unsigned char>(ascii_tolower(us2[i]))); in memcasecmp()
89 tolower = _sre.ascii_tolower
886 self.assertEqual(_sre.ascii_tolower(i), lo)894 self.assertEqual(_sre.ascii_tolower(i), i)902 self.assertEqual(_sre.ascii_tolower(0x0130), 0x0130)