| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_global_uri-inl.h | 25 bool BuiltinsGlobal::IsUnescapedURI(uint16_t ch) in IsUnescapedURI() 33 bool BuiltinsGlobal::IsInUnescapedURISet(uint16_t ch) in IsInUnescapedURISet() 41 bool BuiltinsGlobal::IsInReservedURISet(uint16_t ch) in IsInReservedURISet() 50 bool BuiltinsGlobal::IsReservedURI(uint16_t ch) in IsReservedURI() 63 bool BuiltinsGlobal::IsInMarkURISet(uint16_t ch) in IsInMarkURISet()
|
| D | builtins_string.h | 294 static bool IsUTF16HighSurrogate(uint16_t ch) in IsUTF16HighSurrogate() 298 static bool IsUTF16LowSurrogate(uint16_t ch) in IsUTF16LowSurrogate()
|
| D | builtins_global.h | 242 static bool IsUTF16HighSurrogate(uint16_t ch) in IsUTF16HighSurrogate() 247 static bool IsUTF16LowSurrogate(uint16_t ch) in IsUTF16LowSurrogate()
|
| D | builtins_global.cpp | 116 bool BuiltinsGlobal::IsReservedURI(uint16_t ch) in IsReservedURI() 123 bool BuiltinsGlobal::IsInMarkURISet(uint16_t ch) in IsInMarkURISet() 130 bool BuiltinsGlobal::IsHexDigits(uint16_t ch) in IsHexDigits() 316 uint16_t ch = EcmaStringAccessor(string).Get(thread, i); in GetValueFromHexString() local 331 uint16_t ch = stringAcc.Get(thread, i); in GetValueFromHexString() local
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/helpers/ |
| D | json_helper.h | 29 static inline bool IsHighSurrogate(uint16_t ch) in IsHighSurrogate() 34 static inline bool IsLowSurrogate(uint16_t ch) in IsLowSurrogate() 39 inline void AppendUnicodeEscape(uint32_t ch) in AppendUnicodeEscape()
|
| D | json_helper.cpp | 146 bool JSONStringifier::DealSpecialCharacter(uint8_t ch) in DealSpecialCharacter() 205 const auto ch = sp[i]; in AppendUtf16ToQuotedString() local 220 const auto ch = sp[index]; in AppendUtf8Character() local 243 const auto ch = sp[i]; in AppendUtf8ToQuotedString() local
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | json_helper.cpp | 110 auto ch = sp[index]; in AppendQuotedValueToC16String() local 144 auto ch = sp[i]; in AppendValueToQuotedString() local 174 const auto ch = static_cast<uint8_t>(str[i]); in AppendValueToQuotedString() local
|
| D | json_helper.h | 76 static inline void AppendUnicodeEscape(uint32_t ch, T& output) in AppendUnicodeEscape()
|
| /arkcompiler/ets_frontend/es2panda/lexer/ |
| D | lexer.h | 424 inline uint32_t Lexer::HexValue(char32_t ch) in HexValue() 436 inline bool Lexer::IsHexDigit(char32_t ch) in IsHexDigit() 441 inline bool Lexer::IsBinaryDigit(char32_t ch) in IsBinaryDigit() 446 inline bool Lexer::IsOctalDigit(char32_t ch) in IsOctalDigit()
|
| /arkcompiler/ets_runtime/common_components/base/ |
| D | utf_helper.h | 121 std::array<uint8_t, MAX_BYTES> ch; member 126 inline bool IsUTF16Surrogate(uint16_t ch) in IsUTF16Surrogate() 131 inline bool IsUTF16HighSurrogate(uint16_t ch) in IsUTF16HighSurrogate() 136 inline bool IsUTF16LowSurrogate(uint16_t ch) in IsUTF16LowSurrogate() 182 static inline bool IsHexDigits(uint16_t ch) in IsHexDigits() 188 static inline size_t HexChar16Value(uint16_t ch) in HexChar16Value()
|
| /arkcompiler/runtime_core/static_core/libpandabase/utils/ |
| D | json_builder.cpp | 31 …std::find_if(string.begin(), string.end(), [](char ch) { return ch == '"' || ch == '\\' || ch < ' … in JsonEscape()
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | json_builder.cpp | 29 …std::find_if(string.begin(), string.end(), [](char ch) { return ch == '"' || ch == '\\' || ch < ' … in JsonEscape()
|
| D | utf.cpp | 31 std::array<uint8_t, CONST_4> ch; member 164 MUtf8Char ch = ConvertUtf16ToMUtf8(utf16_in[i], next16Code); in ConvertRegionUtf16ToMUtf8() local
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | date_parse.h | 86 char GetLower(char ch) in GetLower() 116 bool IsThisChar(char ch) const in IsThisChar() 137 bool IsChar(char ch) in IsChar() 187 bool IsSymbol(char ch) const in IsSymbol() 265 static DateUnit Symbol(char ch) in Symbol() 336 bool IgnoreSymbol(char ch) in IgnoreSymbol()
|
| D | js_locale.h | 398 static bool IsAsciiAlpha(char ch) in IsAsciiAlpha() 403 static char LocaleIndependentAsciiToUpper(char ch) in LocaleIndependentAsciiToUpper() 408 static char LocaleIndependentAsciiToLower(char ch) in LocaleIndependentAsciiToLower() 685 static bool IsAToZ(char ch) in IsAToZ()
|
| /arkcompiler/ets_frontend/merge_abc/src/ |
| D | mergeProgram.cpp | 150 … std::find_if(line.begin(), line.end(), [](unsigned char ch) { return std::isspace(ch) == 0; })); in CollectProtoFiles() 152 …line.erase(std::find_if(line.rbegin(), line.rend(), [](unsigned char ch) { return ch != CARRIAGE; … in CollectProtoFiles()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/native/core/ |
| D | IntlLanguageTag.cpp | 29 …return std::all_of(str.begin(), str.end(), [](auto ch) { return std::isalpha(ch, std::locale::clas… in IsAlpha() 34 …return std::all_of(str.begin(), str.end(), [](auto ch) { return std::isdigit(ch, std::locale::clas… in IsNum() 39 return std::all_of(str.begin(), str.end(), [](auto ch) { in IsAlphaNum()
|
| /arkcompiler/ets_frontend/ets2panda/lexer/ |
| D | lexer.h | 621 inline uint32_t Lexer::HexValue(char32_t ch) in HexValue() 633 inline bool Lexer::IsHexDigit(char32_t ch) in IsHexDigit() 638 inline bool Lexer::IsBinaryDigit(char32_t ch) in IsBinaryDigit() 643 inline bool Lexer::IsOctalDigit(char32_t ch) in IsOctalDigit()
|
| /arkcompiler/runtime_core/panda_guard/util/ |
| D | string_util.cpp | 123 …std::find_if(string.begin(), string.end(), [](char ch) { return ch == '"' || ch == '\\' || ch < ' … in UnicodeEscape() 169 return std::all_of(str.begin(), str.end(), [](const char &ch) { in IsNumber()
|
| /arkcompiler/runtime_core/assembler/ |
| D | context.cpp | 56 for (const auto &ch : p) { in ValidateRegisterName() local
|
| /arkcompiler/runtime_core/static_core/assembler/ |
| D | context.cpp | 56 for (const auto &ch : p) { in ValidateFoundedRegisterName() local
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ani/tests/module_ops/ |
| D | module_find_combination_test.cpp | 41 char ch = (random() % (end - 'A') + 'A'); in TEST_F() local
|
| /arkcompiler/ets_frontend/ets2panda/linter/cookbook_convertor/src/ |
| D | cookbook_convertor.ts | 201 for (const ch of s) { constant
|
| /arkcompiler/ets_runtime/ecmascript/intl/ |
| D | locale_helper.h | 114 static bool IsAsciiAlpha(char ch) in IsAsciiAlpha()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/ |
| D | namemangler.cpp | 32 static inline bool UpdatePrimType(bool primType, int splitNo, uint32_t ch) in UpdatePrimType()
|