Searched refs:AsciiAlphaToLower (Results 1 – 4 of 4) sorted by relevance
17 inline int AsciiAlphaToLower(uc32 c) { in AsciiAlphaToLower() function43 return IsInRange(AsciiAlphaToLower(c), 'a', 'z') || IsDecimalDigit(c); in IsAlphaNumeric()54 return IsDecimalDigit(c) || IsInRange(AsciiAlphaToLower(c), 'a', 'f'); in IsHexDigit()71 return IsInRange(AsciiAlphaToLower(c), 'a', 'z') in IsRegExpWord()
16 inline int AsciiAlphaToLower(uc32 c);
87 if (len < prefix_size) prefix[len] = AsciiAlphaToLower(ch_); in ReadWord()
574 if (AsciiAlphaToLower(c0_) == 'e') { in ParseJsonNumber()