Searched refs:IsAsciiDigit (Results 1 - 25 of 25) sorted by relevance

/external/chromium/testing/gtest/test/
H A Dgtest-port_test.cc424 EXPECT_FALSE(IsAsciiDigit('\0'));
425 EXPECT_FALSE(IsAsciiDigit(' '));
426 EXPECT_FALSE(IsAsciiDigit('+'));
427 EXPECT_FALSE(IsAsciiDigit('-'));
428 EXPECT_FALSE(IsAsciiDigit('.'));
429 EXPECT_FALSE(IsAsciiDigit('a'));
433 EXPECT_TRUE(IsAsciiDigit('0'));
434 EXPECT_TRUE(IsAsciiDigit('1'));
435 EXPECT_TRUE(IsAsciiDigit('5'));
436 EXPECT_TRUE(IsAsciiDigit('
[all...]
/external/gtest/test/
H A Dgtest-port_test.cc444 EXPECT_FALSE(IsAsciiDigit('\0'));
445 EXPECT_FALSE(IsAsciiDigit(' '));
446 EXPECT_FALSE(IsAsciiDigit('+'));
447 EXPECT_FALSE(IsAsciiDigit('-'));
448 EXPECT_FALSE(IsAsciiDigit('.'));
449 EXPECT_FALSE(IsAsciiDigit('a'));
453 EXPECT_TRUE(IsAsciiDigit('0'));
454 EXPECT_TRUE(IsAsciiDigit('1'));
455 EXPECT_TRUE(IsAsciiDigit('5'));
456 EXPECT_TRUE(IsAsciiDigit('
[all...]
/external/chromium/testing/gtest/src/
H A Dgtest-port.cc185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
206 case 'd': return IsAsciiDigit(ch);
207 case 'D': return !IsAsciiDigit(ch);
H A Dgtest-internal-inl.h907 GTEST_API_ bool IsAsciiDigit(char ch);
/external/gtest/src/
H A Dgtest-port.cc185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
206 case 'd': return IsAsciiDigit(ch);
207 case 'D': return !IsAsciiDigit(ch);
H A Dgtest-internal-inl.h914 GTEST_API_ bool IsAsciiDigit(char ch);
/external/llvm/utils/unittest/googletest/
H A Dgtest-port.cc185 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
206 case 'd': return IsAsciiDigit(ch);
207 case 'D': return !IsAsciiDigit(ch);
/external/v8/src/
H A Ddateparser.h95 while (IsAsciiDigit()) {
146 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); } function in class:v8::internal::DateParser::BASE_EMBEDDED
H A Ddateparser-inl.h186 if (in_->IsAsciiDigit()) {
/external/chromium/chrome/browser/autofill/
H A Dphone_number.cc234 if (!IsAsciiDigit(number[i]))
H A Dcredit_card.cc412 if (!IsAsciiDigit(*iter))
/external/chromium/chrome/browser/download/
H A Dsave_package_unittest.cc55 if (!IsAsciiDigit(filename[i]))
H A Dsave_package.cc139 if (!IsAsciiDigit(pure_file_name[i]))
/external/chromium/chrome/common/extensions/
H A Dextension_message_bundle.cc287 if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it) && *it != '_' && *it != '@')
/external/webkit/Source/WebKit/android/content/
H A Daddress_detector.cpp378 if (IsAsciiDigit(*it_)) {
402 if (IsAsciiDigit(previous)) {
656 if (IsAsciiDigit(*it) || (*it == '-' && pos == kZipDigits))
/external/chromium/chrome/browser/
H A Dshell_integration_win.cc66 IsAsciiDigit(basenames[i]) ||
/external/chromium/base/
H A Dstring_util.h389 inline bool IsAsciiDigit(Char c) { function
/external/chromium/chrome/browser/net/
H A Durl_fixer_upper.cc332 if (!IsAsciiDigit(original_text[i]))
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_parser.cc282 if (!IsAsciiAlpha(c) && !IsAsciiDigit(c) && c != '.' && c != '_' &&
/external/chromium/net/base/
H A Ddnssec_chain_verifier.cc304 if (!IsAsciiAlpha(c) && !IsAsciiDigit(c))
H A Dcookie_monster.cc449 bool numerical = IsAsciiDigit(token[0]);
H A Dnet_util.cc1871 if (i != size && !IsAsciiDigit(allowed_ports[i]) &&
H A Dx509_certificate.cc440 } else if (!IsAsciiDigit(c)) {
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h913 GTEST_API_ bool IsAsciiDigit(char ch);
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win.cc1132 IsAsciiDigit(role_name_[1])) {

Completed in 548 milliseconds