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

12

/external/chromium_org/tools/gn/
H A Dtokenizer.h41 return IsIdentifierFirstChar(c) || IsAsciiDigit(c);
H A Dtokenizer.cc191 if (IsAsciiDigit(next_char))
231 if (IsAsciiDigit(following_char))
245 } while (!at_end() && IsAsciiDigit(cur_char()));
/external/chromium_org/ui/app_list/search/
H A Dterm_break_iterator.cc57 if (IsAsciiDigit(ch) || ch == '.' || ch == ',')
/external/chromium_org/content/common/android/
H A Daddress_parser_internal.cc141 if (IsAsciiDigit(*it_)) {
165 if (IsAsciiDigit(previous)) {
422 if (IsAsciiDigit(*it) || (*it == '-' && pos == kZipDigits))
500 DCHECK(IsAsciiDigit(*word.begin));
501 DCHECK(IsAsciiDigit(*(word.begin + 1)));
/external/chromium_org/components/autofill/core/browser/
H A Dvalidation.cc92 if (!IsAsciiDigit(*iter))
115 if (!IsAsciiDigit(*iter))
/external/chromium_org/testing/gtest/test/
H A Dgtest-port_test.cc486 EXPECT_FALSE(IsAsciiDigit('\0'));
487 EXPECT_FALSE(IsAsciiDigit(' '));
488 EXPECT_FALSE(IsAsciiDigit('+'));
489 EXPECT_FALSE(IsAsciiDigit('-'));
490 EXPECT_FALSE(IsAsciiDigit('.'));
491 EXPECT_FALSE(IsAsciiDigit('a'));
495 EXPECT_TRUE(IsAsciiDigit('0'));
496 EXPECT_TRUE(IsAsciiDigit('1'));
497 EXPECT_TRUE(IsAsciiDigit('5'));
498 EXPECT_TRUE(IsAsciiDigit('
[all...]
/external/gtest/test/
H A Dgtest-port_test.cc486 EXPECT_FALSE(IsAsciiDigit('\0'));
487 EXPECT_FALSE(IsAsciiDigit(' '));
488 EXPECT_FALSE(IsAsciiDigit('+'));
489 EXPECT_FALSE(IsAsciiDigit('-'));
490 EXPECT_FALSE(IsAsciiDigit('.'));
491 EXPECT_FALSE(IsAsciiDigit('a'));
495 EXPECT_TRUE(IsAsciiDigit('0'));
496 EXPECT_TRUE(IsAsciiDigit('1'));
497 EXPECT_TRUE(IsAsciiDigit('5'));
498 EXPECT_TRUE(IsAsciiDigit('
[all...]
/external/chromium_org/storage/browser/database/
H A Ddatabase_util.cc22 if (!(IsAsciiAlpha(c) || IsAsciiDigit(c) ||
/external/chromium_org/third_party/mesa/src/src/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);
/external/llvm/utils/unittest/googletest/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);
/external/mesa3d/src/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);
/external/chromium_org/v8/src/
H A Ddateparser.h72 while (IsAsciiDigit()) {
123 bool IsAsciiDigit() const { return IsDecimalDigit(ch_); } function in class:v8::internal::DateParser::BASE_EMBEDDED
H A Ddateparser-inl.h167 if (in_->IsAsciiDigit()) {
/external/gtest/src/
H A Dgtest-port.cc211 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } function in namespace:testing::internal
232 case 'd': return IsAsciiDigit(ch);
233 case 'D': return !IsAsciiDigit(ch);
/external/chromium_org/google_apis/gaia/
H A Doauth_request_signer.cc325 DCHECK(!(IsAsciiAlpha(decoded) || IsAsciiDigit(decoded)));
343 if (IsAsciiAlpha(character) || IsAsciiDigit(character)) {
/external/chromium_org/base/process/
H A Dinternal_linux.cc35 if (!IsAsciiDigit(d_name[i])) {
/external/chromium_org/chrome/browser/ui/search/
H A Dsearch_ipc_router.cc23 if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it))
/external/chromium_org/components/autofill/core/common/
H A Dsave_password_progress_logger.cc182 return !(c == '_' || c == '-' || IsAsciiAlpha(c) || IsAsciiDigit(c));
/external/chromium_org/components/content_settings/core/common/
H A Dcontent_settings_pattern_parser.cc155 if (!IsAsciiDigit(port[i])) {
/external/chromium_org/content/renderer/manifest/
H A Dmanifest_parser.cc178 if (!IsAsciiDigit(str[i]))
/external/chromium_org/extensions/common/
H A Dcsp_validator.cc74 is_valid_port = IsAsciiDigit(url[i]) || url[i] == '*';
H A Dmessage_bundle.cc284 if (!IsAsciiAlpha(*it) && !IsAsciiDigit(*it) && *it != '_' && *it != '@')
/external/chromium_org/net/cookies/
H A Dcookie_util.cc119 bool numerical = IsAsciiDigit(token[0]);
/external/chromium_org/rlz/win/lib/
H A Dmachine_deal.cc32 if (IsAsciiAlpha(ch) || IsAsciiDigit(ch))
/external/chromium_org/ui/base/accelerators/
H A Daccelerator.cc213 !IsAsciiAlpha(shortcut[0]) && !IsAsciiDigit(shortcut[0])) {

Completed in 555 milliseconds

12