Home
last modified time | relevance | path

Searched defs:IsAlpha (Results 1 – 7 of 7) sorted by relevance

/third_party/mindspore/mindspore/core/utils/
Dlog_adapter.cc204 static inline bool IsAlpha(char ch) { return (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z'); } in IsAlpha() function
/third_party/protobuf/src/google/protobuf/compiler/ruby/
Druby_generator.cc311 bool IsAlpha(char ch) { return IsLower(ch) || IsUpper(ch); } in IsAlpha() function
/third_party/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
Dtinyxmlparser.cpp129 /*static*/ int TiXmlBase::IsAlpha( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) in IsAlpha() function in TiXmlBase
/third_party/flutter/skia/third_party/externals/sfntly/cpp/src/test/tinyxml/
Dtinyxmlparser.cpp129 /*static*/ int TiXmlBase::IsAlpha( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) in IsAlpha() function in TiXmlBase
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle.cc379 static bool IsAlpha(char c) { in IsAlpha() function
/third_party/abseil-cpp/absl/debugging/internal/
Ddemangle.cc379 static bool IsAlpha(char c) { in IsAlpha() function
/third_party/node/tools/
Dtest.py1036 def IsAlpha(str): function