Searched refs:IsDigit (Results 1 - 9 of 9) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
H A D | utils.h | 26 constexpr bool IsDigit(char c) in IsDigit() function 48 return (IsAlpha(c) || IsDigit(c)); in IsAlnum() 64 if (utils::IsDigit(c)) { in DoIt() 86 if (utils::IsDigit(c)) { in DoIt()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | date_parse.h | 57 while (IsDigit()) {
in ReadNumber() 67 while (IsDigit()) {
in ReadNumber() 95 bool IsDigit() const
in IsDigit() function in panda::ecmascript::DateParse::StringReader
|
H A D | js_locale.h | 306 return IsAlpha(value, INTL_INDEX_TWO, INTL_INDEX_TWO) || IsDigit(value, INTL_INDEX_THREE, INTL_INDEX_THREE); in IsRegionSubtag() 658 static bool IsDigit(const std::string &str, size_t min, size_t max) in IsDigit() function in panda::ecmascript::JSIntlIterator
|
H A D | date_parse.cpp | 279 if (str_->IsDigit()) { in Read()
|
/arkcompiler/ets_runtime/ecmascript/intl/ |
H A D | locale_helper.h | 78 return IsAlpha(value, INTL_INDEX_TWO, INTL_INDEX_TWO) || IsDigit(value, INTL_INDEX_THREE, INTL_INDEX_THREE); in IsRegionSubtag() 132 static bool IsDigit(const std::string &str, size_t min, size_t max) in IsDigit() function in panda::ecmascript::intl::LocaleHelper
|
/arkcompiler/ets_frontend/ets2panda/util/ |
H A D | helpers.cpp | 104 static bool IsDigit(char c) in IsDigit() function 119 if (!IsDigit(c)) { in GetIndex()
|
/arkcompiler/ets_frontend/es2panda/util/ |
H A D | helpers.cpp | 119 static bool IsDigit(char c) in IsDigit() function 134 if (!IsDigit(c)) { in GetIndex()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | stub_builder.h | 632 GateRef IsDigit(GateRef ch);
|
H A D | stub_builder.cpp | 2166 GateRef StubBuilder::IsDigit(GateRef ch) in IsDigit() function in panda::ecmascript::kungfu::StubBuilder 2242 BRANCH(IsDigit(*c), &isDigit, &exit); in StringToElementIndex() 2253 BRANCH(IsDigit(*c), &isDigit2, ¬Digit2); in StringToElementIndex() 8599 BRANCH(IsDigit(*c), &isDigit, ¬IsDigit); in TryStringOrSymbolToElementIndex() 8610 BRANCH(IsDigit(*c), &isDigit2, ¬Digit2); in TryStringOrSymbolToElementIndex()
|
Completed in 24 milliseconds