/external/llvm-project/libc/test/src/ctype/ |
D | isalpha_test.cpp | 13 TEST(IsAlpha, DefaultLocale) { in TEST() argument
|
/external/tensorflow/tensorflow/core/util/ |
D | device_name_utils.cc | 27 static bool IsAlpha(char c) { in IsAlpha() function 32 return IsAlpha(c) || (c >= '0' && c <= '9') || c == '_'; in IsAlphaNumOrUnderscore() 37 return !in.empty() && IsAlpha(in.front()) && in IsJobName() 43 if (in->empty() || !IsAlpha(in->front())) return false; in ConsumePrefix()
|
/external/llvm-project/llvm/utils/unittest/googlemock/src/ |
D | gmock-internal-utils.cc | 61 (!IsAlpha(prev_char) && IsLower(*p)) || in ConvertIdentifierNameToWords()
|
/external/googletest/googlemock/src/ |
D | gmock-internal-utils.cc | 79 (!IsAlpha(prev_char) && IsLower(*p)) || in ConvertIdentifierNameToWords()
|
/external/swiftshader/src/OpenGL/libGLES_CM/ |
D | utilities.h | 54 bool IsAlpha(GLint texFormat);
|
D | utilities.cpp | 479 bool IsAlpha(GLint internalformat) in IsAlpha() function
|
D | Context.cpp | 2134 if(IsAlpha(texFormat)) // GL_ALPHA in applyTextures() 2155 if(IsAlpha(texFormat)) // GL_ALPHA in applyTextures() 2199 if(IsAlpha(texFormat)) // GL_ALPHA in applyTextures() 2220 if(IsAlpha(texFormat)) // GL_ALPHA in applyTextures()
|
/external/tensorflow/tensorflow/compiler/aot/ |
D | codegen.cc | 45 bool IsAlpha(char c) { in IsAlpha() function 49 bool IsAlphaNum(char c) { return IsAlpha(c) || (c >= '0' && c <= '9'); } in IsAlphaNum() 829 if (ident[0] != '_' && !IsAlpha(ident[0])) { in ValidateCppIdent()
|
/external/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 378 static bool IsAlpha(char c) { in IsAlpha() function 392 if (str[i] != '.' || !IsAlpha(str[i + 1])) { in IsFunctionCloneSuffix() 396 while (IsAlpha(str[i])) { in IsFunctionCloneSuffix() 425 if (IsAlpha(str[0]) || str[0] == '_') { in MaybeAppendWithLength() 938 IsAlpha(RemainingInput(state)[1]))) { in ParseOperatorName()
|
/external/openscreen/third_party/abseil/src/absl/debugging/internal/ |
D | demangle.cc | 379 static bool IsAlpha(char c) { in IsAlpha() function 393 if (str[i] != '.' || !IsAlpha(str[i + 1])) { in IsFunctionCloneSuffix() 397 while (IsAlpha(str[i])) { in IsFunctionCloneSuffix() 429 (IsAlpha(str[0]) || str[0] == '_')) { in MaybeAppendWithLength() 942 IsAlpha(RemainingInput(state)[1]))) { in ParseOperatorName()
|
/external/webrtc/third_party/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 378 static bool IsAlpha(char c) { in IsAlpha() function 392 if (str[i] != '.' || !IsAlpha(str[i + 1])) { in IsFunctionCloneSuffix() 396 while (IsAlpha(str[i])) { in IsFunctionCloneSuffix() 425 if (IsAlpha(str[0]) || str[0] == '_') { in MaybeAppendWithLength() 938 IsAlpha(RemainingInput(state)[1]))) { in ParseOperatorName()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 379 static bool IsAlpha(char c) { in IsAlpha() function 393 if (str[i] != '.' || !IsAlpha(str[i + 1])) { in IsFunctionCloneSuffix() 397 while (IsAlpha(str[i])) { in IsFunctionCloneSuffix() 429 (IsAlpha(str[0]) || str[0] == '_')) { in MaybeAppendWithLength() 942 IsAlpha(RemainingInput(state)[1]))) { in ParseOperatorName()
|
/external/libtextclassifier/abseil-cpp/absl/debugging/internal/ |
D | demangle.cc | 379 static bool IsAlpha(char c) { in IsAlpha() function 393 if (str[i] != '.' || !IsAlpha(str[i + 1])) { in IsFunctionCloneSuffix() 397 while (IsAlpha(str[i])) { in IsFunctionCloneSuffix() 429 (IsAlpha(str[0]) || str[0] == '_')) { in MaybeAppendWithLength() 942 IsAlpha(RemainingInput(state)[1]))) { in ParseOperatorName()
|
/external/protobuf/src/google/protobuf/compiler/ruby/ |
D | ruby_generator.cc | 307 bool IsAlpha(char ch) { return IsLower(ch) || IsUpper(ch); } in IsAlpha() function 347 } else if (!IsAlpha(ret[0])) { in RubifyConstant()
|
/external/sfntly/cpp/src/test/tinyxml/ |
D | tinyxmlparser.cpp | 129 /*static*/ int TiXmlBase::IsAlpha( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) in IsAlpha() function in TiXmlBase 417 && ( IsAlpha( (unsigned char) *p, encoding ) || *p == '_' ) ) in ReadName() 877 else if ( IsAlpha( *(p+1), encoding ) in Identify()
|
D | tinyxml.h | 380 static int IsAlpha( unsigned char anyByte, TiXmlEncoding encoding );
|
/external/llvm-project/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 1024 auto IsAlpha = [](char c) { return ::isalpha(c); }; in TEST() local 1029 EXPECT_EQ(4U, Punct.find_if_not(IsAlpha)); in TEST() 1030 EXPECT_EQ(StringRef::npos, NoPunct.find_if_not(IsAlpha)); in TEST() 1031 EXPECT_EQ(StringRef::npos, Empty.find_if_not(IsAlpha)); in TEST()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_win.cpp | 524 static bool IsAlpha(char c) { in IsAlpha() function 530 return path != nullptr && IsAlpha(path[0]) && path[1] == ':' && in IsAbsolutePath()
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-port.h | 1524 inline bool IsAlpha(char ch) {
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-port.h | 1911 inline bool IsAlpha(char ch) {
|
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/include/gtest/internal/ |
D | gtest-port.h | 1972 inline bool IsAlpha(char ch) {
|
/external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/ |
D | gtest-port.h | 1887 inline bool IsAlpha(char ch) {
|
/external/googletest/googletest/include/gtest/internal/ |
D | gtest-port.h | 1922 inline bool IsAlpha(char ch) {
|
/external/llvm-project/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-port.h | 2260 inline bool IsAlpha(char ch) {
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
D | gtest-port.h | 2398 inline bool IsAlpha(char ch) {
|