Searched defs:IsLower (Results 1 – 4 of 4) sorted by relevance
307 bool IsLower(char ch) { return ch >= 'a' && ch <= 'z'; } in IsLower() function
377 static bool IsLower(char c) { return c >= 'a' && c <= 'z'; } in IsLower() function
49 #define IsLower(c) ((c) >= 'a' && (c) <= 'z') macro
115160 static bool IsLower(char aChar) { return NS_IsLower(aChar); } in IsLower() function in nsCRT