Home
last modified time | relevance | path

Searched refs:AsciiAlphaToLower (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/
Dchar-predicates-inl.h17 inline int AsciiAlphaToLower(uc32 c) { in AsciiAlphaToLower() function
43 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()
Dchar-predicates.h16 inline int AsciiAlphaToLower(uc32 c);
Ddateparser.h87 if (len < prefix_size) prefix[len] = AsciiAlphaToLower(ch_); in ReadWord()
/external/v8/src/parsing/
Djson-parser.h574 if (AsciiAlphaToLower(c0_) == 'e') { in ParseJsonNumber()