/external/webrtc/third_party/abseil-cpp/absl/strings/ |
D | ascii_test.cc | 99 EXPECT_TRUE(absl::ascii_islower(i)) << ": failed on " << i; in TEST() 101 EXPECT_TRUE(!absl::ascii_islower(i)) << ": failed on " << i; in TEST() 125 EXPECT_EQ(absl::ascii_islower(i), absl::ascii_islower(sc)) << i; in TEST() 151 EXPECT_EQ(islower(i) != 0, absl::ascii_islower(i)) << i; in TEST() 169 if (absl::ascii_islower(i)) in TEST()
|
D | ascii.h | 152 inline bool ascii_islower(unsigned char c) { return c >= 'a' && c <= 'z'; } in ascii_islower() function
|
D | ascii_benchmark.cc | 94 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_islower);
|
/external/abseil-cpp/absl/strings/ |
D | ascii_test.cc | 99 EXPECT_TRUE(absl::ascii_islower(i)) << ": failed on " << i; in TEST() 101 EXPECT_TRUE(!absl::ascii_islower(i)) << ": failed on " << i; in TEST() 125 EXPECT_EQ(absl::ascii_islower(i), absl::ascii_islower(sc)) << i; in TEST() 151 EXPECT_EQ(islower(i) != 0, absl::ascii_islower(i)) << i; in TEST() 169 if (absl::ascii_islower(i)) in TEST()
|
D | ascii.h | 152 inline bool ascii_islower(unsigned char c) { return c >= 'a' && c <= 'z'; } in ascii_islower() function
|
D | ascii_benchmark.cc | 94 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_islower);
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/ |
D | ascii_test.cc | 99 EXPECT_TRUE(absl::ascii_islower(i)) << ": failed on " << i; in TEST() 101 EXPECT_TRUE(!absl::ascii_islower(i)) << ": failed on " << i; in TEST() 125 EXPECT_EQ(absl::ascii_islower(i), absl::ascii_islower(sc)) << i; in TEST() 151 EXPECT_EQ(islower(i) != 0, absl::ascii_islower(i)) << i; in TEST() 169 if (absl::ascii_islower(i)) in TEST()
|
D | ascii.h | 152 inline bool ascii_islower(unsigned char c) { return c >= 'a' && c <= 'z'; } in ascii_islower() function
|
D | ascii_benchmark.cc | 94 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_islower);
|
/external/libtextclassifier/abseil-cpp/absl/strings/ |
D | ascii_test.cc | 99 EXPECT_TRUE(absl::ascii_islower(i)) << ": failed on " << i; in TEST() 101 EXPECT_TRUE(!absl::ascii_islower(i)) << ": failed on " << i; in TEST() 125 EXPECT_EQ(absl::ascii_islower(i), absl::ascii_islower(sc)) << i; in TEST() 151 EXPECT_EQ(islower(i) != 0, absl::ascii_islower(i)) << i; in TEST() 169 if (absl::ascii_islower(i)) in TEST()
|
D | ascii.h | 152 inline bool ascii_islower(unsigned char c) { return c >= 'a' && c <= 'z'; } in ascii_islower() function
|
D | ascii_benchmark.cc | 94 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_islower);
|
/external/openscreen/third_party/abseil/src/absl/strings/ |
D | ascii_test.cc | 99 EXPECT_TRUE(absl::ascii_islower(i)) << ": failed on " << i; in TEST() 101 EXPECT_TRUE(!absl::ascii_islower(i)) << ": failed on " << i; in TEST() 125 EXPECT_EQ(absl::ascii_islower(i), absl::ascii_islower(sc)) << i; in TEST() 151 EXPECT_EQ(islower(i) != 0, absl::ascii_islower(i)) << i; in TEST() 169 if (absl::ascii_islower(i)) in TEST()
|
D | ascii.h | 152 inline bool ascii_islower(unsigned char c) { return c >= 'a' && c <= 'z'; } in ascii_islower() function
|
D | ascii_benchmark.cc | 94 BENCHMARK_TEMPLATE(BM_Ascii, absl::ascii_islower);
|
/external/dynamic_depth/internal/strings/ |
D | ascii_ctype.h | 76 static inline bool ascii_islower(unsigned char c) { in ascii_islower() function
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | utility.cc | 270 (!was_cap || (i + 1 < input.size() && ascii_islower(input[i + 1])))) { in ToCamelCase() 279 if (ascii_islower(input[i])) { in ToCamelCase() 313 ascii_islower(input[i + 1])))) { // case 4 in in ToSnakeCase()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | strutil.h | 86 inline bool ascii_islower(char c) { in ascii_islower() function 91 return ascii_islower(c) ? c - ('a' - 'A') : c; in ascii_toupper()
|
/external/protobuf/src/google/protobuf/compiler/objectivec/ |
D | objectivec_helpers.cc | 123 } else if (ascii_islower(c)) { in UnderscoresToCamelCase() 315 return !ascii_islower(name[length]); in IsSpecialName() 597 if (ascii_islower(worker[0])) { in UnCamelCaseFieldName()
|
/external/protobuf/src/google/protobuf/compiler/csharp/ |
D | csharp_helpers.cc | 211 } else if (ascii_islower(previous)) { in ShoutyToPascalCase()
|