Lines Matching refs:one_byte

177 constexpr base::uc32 MaxCodeUnit(const bool one_byte) {
182 return one_byte ? String::kMaxOneByteCharCodeU : String::kMaxUtf16CodeUnitU;
185 constexpr uint32_t CharMask(const bool one_byte) {
188 return MaxCodeUnit(one_byte);
241 RegExpFlags flags, bool one_byte)
248 one_byte_(one_byte),
834 bool one_byte = compiler->one_byte();
836 int length = GetCaseIndependentLetters(isolate, c, one_byte, chars, 4);
846 if (one_byte && c > String::kMaxOneByteCharCodeU) {
860 bool one_byte, base::uc16 c1, base::uc16 c2,
862 const uint32_t char_mask = CharMask(one_byte);
894 bool one_byte = compiler->one_byte();
896 int length = GetCaseIndependentLetters(isolate, c, one_byte, chars, 4);
906 if (ShortCutEmitCharacterPair(macro_assembler, one_byte, chars[0],
1219 RegExpCharacterClass* cc, bool one_byte, Label* on_failure,
1227 if (one_byte) CharacterRange::ClampToOneByte(ranges);
1240 const base::uc32 max_char = MaxCodeUnit(one_byte);
1515 if (!details->Rationalize(compiler->one_byte())) return false;
1543 const uint32_t char_mask = CharMask(compiler->one_byte());
1551 if (details->characters() == 2 && compiler->one_byte()) {
1553 } else if (details->characters() == 1 && !compiler->one_byte()) {
1594 const uint32_t char_mask = CharMask(compiler->one_byte());
1606 isolate, c, compiler->one_byte(), chars, 4);
1741 void QuickCheckDetails::Advance(int by, bool one_byte) {
2145 if (!compiler->one_byte()) {
2338 bool one_byte = compiler->one_byte();
2364 DCHECK(one_byte);
2397 EmitCharClass(assembler, cc, one_byte, backtrack, cp_offset,
2474 if (compiler->one_byte()) {
2518 quick_check_performed_.Advance(by, compiler->one_byte());
2563 const base::uc32 max_char = MaxCodeUnit(compiler->one_byte());
2641 bool one_byte = compiler->one_byte();
2642 if (one_byte) {
2784 max_char_(MaxCodeUnit(compiler->one_byte())) {
2851 (compiler_->one_byte() ? remembered_from <= 4 : remembered_from <= 2));
3493 if (IsUnicode(flags_) && !compiler->one_byte()) {