Home
last modified time | relevance | path

Searched refs:IsLower (Results 1 – 8 of 8) sorted by relevance

/third_party/protobuf/src/google/protobuf/compiler/ruby/
Druby_generator.cc307 bool IsLower(char ch) { return ch >= 'a' && ch <= 'z'; } in IsLower() function
311 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()
/third_party/googletest/googlemock/src/
Dgmock-internal-utils.cc86 (!IsAlpha(prev_char) && IsLower(*p)) || in ConvertIdentifierNameToWords()
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle.cc377 static bool IsLower(char c) { return c >= 'a' && c <= 'z'; } in IsLower() function
945 if (!(IsLower(RemainingInput(state)[0]) && in ParseOperatorName()
958 if (IsLower(*p->real_name)) { // new, delete, etc. in ParseOperatorName()
/third_party/FatFs/source/
Dff.c49 #define IsLower(c) ((c) >= 'a' && (c) <= 'z') macro
2277 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;
/third_party/mesa3d/src/gtest/include/gtest/internal/
Dgtest-port.h1920 inline bool IsLower(char ch) {
/third_party/node/deps/googletest/include/gtest/internal/
Dgtest-port.h1956 inline bool IsLower(char ch) {
/third_party/googletest/googletest/include/gtest/internal/
Dgtest-port.h1930 inline bool IsLower(char ch) {
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp115160 static bool IsLower(char aChar) { return NS_IsLower(aChar); } in IsLower() function in nsCRT