Searched refs:IsLower (Results 1 – 8 of 8) sorted by relevance
307 bool IsLower(char ch) { return ch >= 'a' && ch <= 'z'; } in IsLower() function311 bool IsAlpha(char ch) { return IsLower(ch) || IsUpper(ch); } in IsAlpha()313 char UpperChar(char ch) { return IsLower(ch) ? (ch - 'a' + 'A') : ch; } in UpperChar()348 if (IsLower(ret[0])) { in RubifyConstant()
86 (!IsAlpha(prev_char) && IsLower(*p)) || in ConvertIdentifierNameToWords()
377 static bool IsLower(char c) { return c >= 'a' && c <= 'z'; } in IsLower() function945 if (!(IsLower(RemainingInput(state)[0]) && in ParseOperatorName()958 if (IsLower(*p->real_name)) { // new, delete, etc. in ParseOperatorName()
49 #define IsLower(c) ((c) >= 'a' && (c) <= 'z') macro2277 if (IsLower(chr)) chr -= 0x20; /* To upper ASCII char */ in get_achar()2458 if (IsLower(wc)) { /* ASCII lower case? */ in create_name()2531 if (IsLower(c)) c -= 0x20; /* To upper */ in create_name()2649 if (IsLower(c)) c -= 0x20; in get_ldnumber()2650 if (IsLower(tc)) tc -= 0x20; in get_ldnumber()2669 if (IsLower(c)) c -= 0x20; in get_ldnumber()2670 if (IsLower(tc)) tc -= 0x20; in get_ldnumber()5243 if (IsLower(wc)) wc -= 0x20; /* To upper ASCII characters */6817 if (IsLower(d)) d -= 0x20;
1920 inline bool IsLower(char ch) {
1956 inline bool IsLower(char ch) {
1930 inline bool IsLower(char ch) {
115160 static bool IsLower(char aChar) { return NS_IsLower(aChar); } in IsLower() function in nsCRT