Searched refs:IsAlpha (Results 1 – 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/intl/ |
D | locale_helper.h | 66 …return IsAlpha(value, INTL_INDEX_TWO, INTL_INDEX_THREE) || IsAlpha(value, INTL_INDEX_FIVE, INTL_IN… in IsLanguageSubtag() 71 return IsAlpha(value, INTL_INDEX_FOUR, INTL_INDEX_FOUR); in IsScriptSubtag() 76 …return IsAlpha(value, INTL_INDEX_TWO, INTL_INDEX_TWO) || IsDigit(value, INTL_INDEX_THREE, INTL_IND… in IsRegionSubtag() 117 static bool IsAlpha(const std::string &str, size_t min, size_t max) in IsAlpha() function
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/include/ |
D | utils.h | 41 constexpr bool IsAlpha(char c) in IsAlpha() function 48 return (IsAlpha(c) || IsDigit(c)); in IsAlnum()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_ir/src/ |
D | lexer.cpp | 346 if (utils::IsAlpha(c) || c == '_' || c == '$') { in GetTokenWithPrefixDollar() 373 if (utils::IsAlpha(c) || c == '_' || c == '$') { in GetTokenWithPrefixPercent() 377 if (c == '%' && utils::IsAlpha(GetCharAtWithUpperCheck(curIdx + 1))) { in GetTokenWithPrefixPercent() 389 if (utils::IsAlpha(c) || c == '_') { in GetTokenWithPrefixAmpersand() 417 if (utils::IsAlpha(c)) { in GetTokenWithPrefixExclamation() 541 if (utils::IsAlpha(c) || c < 0 || c == '_') { in GetTokenSpecial()
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_locale.h | 282 …return IsAlpha(value, INTL_INDEX_TWO, INTL_INDEX_THREE) || IsAlpha(value, INTL_INDEX_FIVE, INTL_IN… in IsLanguageSubtag() 287 return IsAlpha(value, INTL_INDEX_FOUR, INTL_INDEX_FOUR); in IsScriptSubtag() 292 …return IsAlpha(value, INTL_INDEX_TWO, INTL_INDEX_TWO) || IsDigit(value, INTL_INDEX_THREE, INTL_IND… in IsRegionSubtag() 630 static bool IsAlpha(const std::string &str, size_t min, size_t max) in IsAlpha() function
|
D | date_parse.h | 76 for (; IsAlpha(); length++) { in ReadAlphabet() 120 bool IsAlpha() const in IsAlpha() function
|
D | date_parse.cpp | 301 if (str_->IsAlpha()) { in Read()
|
D | js_locale.cpp | 745 IsAlpha(languageStr, INTL_INDEX_FOUR, INTL_INDEX_FOUR)) { in ApplyOptionsToTag()
|