Home
last modified time | relevance | path

Searched refs:MULTIPLIER (Results 1 - 7 of 7) sorted by relevance

/arkcompiler/ets_frontend/ets2panda/lexer/regexp/
H A Dregexp.cpp538 constexpr auto MULTIPLIER = 10; in ParseDecimalEscape() local
541 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next()); in ParseDecimalEscape()
600 constexpr auto MULTIPLIER = 16; in ParseHexEscape() local
601 uint32_t cpValue = HexValue(digit) * MULTIPLIER; in ParseHexEscape()
623 constexpr auto MULTIPLIER = 16; in ParseUnicodeDigits() local
624 value = value * MULTIPLIER + HexValue(digit); in ParseUnicodeDigits()
641 constexpr auto MULTIPLIER = 16; in ParseUnicodeEscape() local
642 value = value * MULTIPLIER + HexValue(Next()); in ParseUnicodeEscape()
785 constexpr auto MULTIPLIER = 10; in ParseBracedQuantifier() local
788 uint32_t newValue = leftValue * MULTIPLIER in ParseBracedQuantifier()
[all...]
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
H A Dregexp.cpp534 constexpr auto MULTIPLIER = 10; in ParseDecimalEscape() local
537 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next()); in ParseDecimalEscape()
598 constexpr auto MULTIPLIER = 16; in ParseHexEscape() local
599 uint32_t cpValue = HexValue(digit) * MULTIPLIER; in ParseHexEscape()
621 constexpr auto MULTIPLIER = 16; in ParseUnicodeDigits() local
622 value = value * MULTIPLIER + HexValue(digit); in ParseUnicodeDigits()
639 constexpr auto MULTIPLIER = 16; in ParseUnicodeEscape() local
640 value = value * MULTIPLIER + HexValue(Next()); in ParseUnicodeEscape()
764 constexpr auto MULTIPLIER = 10; in ParseBracedQuantifier() local
767 uint32_t newValue = leftValue * MULTIPLIER in ParseBracedQuantifier()
[all...]
/arkcompiler/ets_frontend/es2panda/lexer/
H A Dlexer.h327 constexpr auto MULTIPLIER = 16; in ScanHexEscape() local
328 code = code * MULTIPLIER + HexValue(cp); in ScanHexEscape()
/arkcompiler/ets_frontend/ets2panda/lexer/
H A Dlexer.h461 constexpr auto MULTIPLIER = 16; in ScanHexEscape() local
462 code = code * MULTIPLIER + HexValue(cp); in ScanHexEscape()
H A Dlexer.cpp72 constexpr auto MULTIPLIER = 16; in ScanUnicodeCodePointEscape() local
73 code = code * MULTIPLIER + HexValue(cp); in ScanUnicodeCodePointEscape()
/arkcompiler/ets_frontend/ets2panda/util/
H A Dhelpers.cpp123 constexpr auto MULTIPLIER = 10; in GetIndex() local
124 value *= MULTIPLIER; in GetIndex()
/arkcompiler/ets_frontend/es2panda/util/
H A Dhelpers.cpp138 constexpr auto MULTIPLIER = 10; in GetIndex() local
139 value *= MULTIPLIER; in GetIndex()

Completed in 8 milliseconds