HomeSort by relevance Sort by last modified time
    Searched refs:IsDigit (Results 1 - 25 of 82) sorted by null

1 2 3 4

  /prebuilts/go/darwin-x86/src/unicode/
digit.go 7 // IsDigit reports whether the rune is a decimal digit.
8 func IsDigit(r rune) bool {
digit_test.go 108 if !IsDigit(r) {
109 t.Errorf("IsDigit(U+%04X) = false, want true", r)
113 if IsDigit(r) {
114 t.Errorf("IsDigit(U+%04X) = true, want false", r)
119 // Test that the special case in IsDigit agrees with the table
122 if Is(Digit, i) != IsDigit(i) {
123 t.Errorf("IsDigit(U+%04X) disagrees with Is(Digit)", i)
example_test.go 23 if unicode.IsDigit(c) {
  /prebuilts/go/linux-x86/src/unicode/
digit.go 7 // IsDigit reports whether the rune is a decimal digit.
8 func IsDigit(r rune) bool {
digit_test.go 108 if !IsDigit(r) {
109 t.Errorf("IsDigit(U+%04X) = false, want true", r)
113 if IsDigit(r) {
114 t.Errorf("IsDigit(U+%04X) = true, want false", r)
119 // Test that the special case in IsDigit agrees with the table
122 if Is(Digit, i) != IsDigit(i) {
123 t.Errorf("IsDigit(U+%04X) disagrees with Is(Digit)", i)
example_test.go 23 if unicode.IsDigit(c) {
  /external/sonivox/arm-wt-22k/lib_src/
eas_ctype.h 35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); }
eas_imelody.c 489 if (IsDigit(c))
    [all...]
eas_rtttl.c 355 if (IsDigit(c))
399 else if (IsDigit(c))
948 if (IsDigit(c))
    [all...]
  /external/google-breakpad/src/testing/src/
gmock-internal-utils.cc 62 (!IsDigit(prev_char) && IsDigit(*p));
  /external/googletest/googlemock/src/
gmock-internal-utils.cc 62 (!IsDigit(prev_char) && IsDigit(*p));
  /external/v8/testing/gmock/src/
gmock-internal-utils.cc 62 (!IsDigit(prev_char) && IsDigit(*p));
  /external/protobuf/gtest/test/
gtest-port_test.cc 256 EXPECT_FALSE(IsDigit('\0'));
257 EXPECT_FALSE(IsDigit(' '));
258 EXPECT_FALSE(IsDigit('+'));
259 EXPECT_FALSE(IsDigit('-'));
260 EXPECT_FALSE(IsDigit('.'));
261 EXPECT_FALSE(IsDigit('a'));
265 EXPECT_TRUE(IsDigit('0'));
266 EXPECT_TRUE(IsDigit('1'));
267 EXPECT_TRUE(IsDigit('5'));
268 EXPECT_TRUE(IsDigit('9'))
    [all...]
  /external/protobuf/gtest/src/
gtest-port.cc 183 bool IsDigit(char ch) { return '0' <= ch && ch <= '9'; }
204 case 'd': return IsDigit(ch);
205 case 'D': return !IsDigit(ch);
  /prebuilts/go/darwin-x86/src/cmd/vet/
buildtag.go 75 if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
  /prebuilts/go/linux-x86/src/cmd/vet/
buildtag.go 75 if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
  /prebuilts/go/darwin-x86/src/cmd/asm/internal/lex/
tokenizer.go 65 return i > 0 && unicode.IsDigit(ch)
  /prebuilts/go/linux-x86/src/cmd/asm/internal/lex/
tokenizer.go 65 return i > 0 && unicode.IsDigit(ch)
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 251 while (IsDigit(*nptr)) {
sanitizer_symbolizer_libcdep.cc 252 if (last_colon && IsDigit(last_colon[1])) {
sanitizer_mac.cc 414 if (IsDigit(version[1]))
  /external/pdfium/core/fpdfdoc/
ctypeset.cpp 44 bool IsDigit(uint32_t word) {
147 if ((IsLatin(prevWord) || IsDigit(prevWord)) &&
148 (IsLatin(curWord) || IsDigit(curWord))) {
  /external/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h     [all...]
  /external/googletest/googletest/src/
gtest-internal-inl.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-internal-inl.h     [all...]

Completed in 920 milliseconds

1 2 3 4