Lines Matching +full:0 +full:x1f
32 0x00000000, 0x00000010, 0x87FFFFFE, 0x07FFFFFE
34 static RangeSet g_rangeD(0x30, 0x39); // NOLINTNEXTLINE(fuchsia-statically-constructed-objects)
37 std::pair<uint32_t, uint32_t>(0x0009, 0x000D), // NOLINTNEXTLINE(readability-magic-numbers)
38 std::pair<uint32_t, uint32_t>(0x0020, 0x0020), // NOLINTNEXTLINE(readability-magic-numbers)
39 std::pair<uint32_t, uint32_t>(0x00A0, 0x00A0), // NOLINTNEXTLINE(readability-magic-numbers)
40 std::pair<uint32_t, uint32_t>(0x1680, 0x1680), // NOLINTNEXTLINE(readability-magic-numbers)
41 std::pair<uint32_t, uint32_t>(0x2000, 0x200A), // NOLINTNEXTLINE(readability-magic-numbers)
42 /* 2028;LINE SEPARATOR;Zl;0;WS;;;;;N;;;;; */
43 /* 2029;PARAGRAPH SEPARATOR;Zp;0;B;;;;;N;;;;; */
44 std::pair<uint32_t, uint32_t>(0x2028, 0x2029), // NOLINTNEXTLINE(readability-magic-numbers)
45 std::pair<uint32_t, uint32_t>(0x202F, 0x202F), // NOLINTNEXTLINE(readability-magic-numbers)
46 std::pair<uint32_t, uint32_t>(0x205F, 0x205F), // NOLINTNEXTLINE(readability-magic-numbers)
47 std::pair<uint32_t, uint32_t>(0x3000, 0x3000), // NOLINTNEXTLINE(readability-magic-numbers)
48 /* FEFF;ZERO WIDTH NO-BREAK SPACE;Cf;0;BN;;;;;N;BYTE ORDER MARK;;;; */
49 std::pair<uint32_t, uint32_t>(0xFEFF, 0xFEFF), // NOLINTNEXTLINE(readability-magic-numbers)
54 std::pair<uint32_t, uint32_t>(0x0030, 0x0039), // NOLINTNEXTLINE(readability-magic-numbers)
55 std::pair<uint32_t, uint32_t>(0x0041, 0x005A), // NOLINTNEXTLINE(readability-magic-numbers)
56 std::pair<uint32_t, uint32_t>(0x005F, 0x005F), // NOLINTNEXTLINE(readability-magic-numbers)
57 std::pair<uint32_t, uint32_t>(0x0061, 0x007A), // NOLINTNEXTLINE(readability-magic-numbers)
62 std::pair<uint32_t, uint32_t>(0x0024, 0x0024), // NOLINTNEXTLINE(readability-magic-numbers)
63 std::pair<uint32_t, uint32_t>(0x0041, 0x005A), // NOLINTNEXTLINE(readability-magic-numbers)
64 std::pair<uint32_t, uint32_t>(0x0061, 0x007A), // NOLINTNEXTLINE(readability-magic-numbers)
69 std::pair<uint32_t, uint32_t>(0x0024, 0x0024), // NOLINTNEXTLINE(readability-magic-numbers)
70 std::pair<uint32_t, uint32_t>(0x0030, 0x0039), // NOLINTNEXTLINE(readability-magic-numbers)
71 std::pair<uint32_t, uint32_t>(0x0041, 0x005A), // NOLINTNEXTLINE(readability-magic-numbers)
72 std::pair<uint32_t, uint32_t>(0x0061, 0x007A), // NOLINTNEXTLINE(readability-magic-numbers)
78 buffer_.EmitU32(0); in Parse()
79 buffer_.EmitU32(0); in Parse()
80 buffer_.EmitU32(0); in Parse()
81 buffer_.EmitU32(0); in Parse()
99 matchEndOp.EmitOpCode(&buffer_, 0); in Parse()
101 buffer_.PutU32(0, buffer_.size_); in Parse()
125 uint32_t pos = gotoOp.EmitOpCode(&buffer_, 0) - gotoOp.GetSize(); in ParseDisjunction()
138 uint32_t value = c0_ - '0'; in ParseOctalLiteral()
140 if (c0_ >= '0' && c0_ <= '7') { in ParseOctalLiteral()
141 value = value * OCTAL_VALUE + c0_ - '0'; in ParseOctalLiteral()
143 if (value < OCTAL_VALUE_RANGE && c0_ >= '0' && c0_ <= '7') { in ParseOctalLiteral()
144 value = value * OCTAL_VALUE + c0_ - '0'; in ParseOctalLiteral()
153 uint32_t x = 0; in ParseUnlimitedLengthHexNumber()
155 if (d < 0) { in ParseUnlimitedLengthHexNumber()
158 while (d >= 0) { in ParseUnlimitedLengthHexNumber()
183 …if (ParseUnlimitedLengthHexNumber(0x10FFFF, value)) { // NOLINTNEXTLINE(readability-magic-numbers) in ParseUnicodeEscape()
200 uint32_t trail = 0; in ParseUnicodeEscape()
215 uint32_t val = 0; in ParseHexEscape()
216 for (int i = 0; i < length; ++i) { in ParseHexEscape()
219 if (d < 0) { in ParseHexEscape()
240 int captureIndex = 0; in ParseAlternative()
247 lineStartOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
255 lineEndOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
268 wordBoundaryOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
276 notWordBoundaryOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
286 prevOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
298 for (int32_t idx = 0; idx < size; idx++) { in ParseAlternative()
315 prevOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
333 prevOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
337 allOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
340 dotsOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
343 prevOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
358 prevOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
382 prevOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
418 prevOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
423 int i = 0; in ParseAlternative()
442 prevOp.EmitOpCode(&buffer_, 0); in ParseAlternative()
476 size_t len = 0; in FindGroupName()
484 if (len == nameLen && memcmp(name.c_str(), p, nameLen) == 0) { in FindGroupName()
508 matchOp.EmitOpCode(&buffer_, 0); in ParseAssertionCapture()
522 matchOp.EmitOpCode(&buffer_, 0); in ParseAssertionCapture()
538 matchOp.EmitOpCode(&buffer_, 0); in ParseAssertionCapture()
550 matchOp.EmitOpCode(&buffer_, 0); in ParseAssertionCapture()
562 if (FindGroupName(name) > 0) { in ParseAssertionCapture()
592 groupNames_.EmitChar(0); in ParseAssertionCapture()
629 uint32_t result = 0; in ParseDecimalDigits()
632 if (c0_ < '0' || c0_ > '9') { in ParseDecimalDigits()
636 if (UNLIKELY(result > (INT32_MAX - c0_ + '0') / DECIMAL_DIGITS_ADVANCE)) { in ParseDecimalDigits()
639 result = result * DECIMAL_DIGITS_ADVANCE + c0_ - '0'; in ParseDecimalDigits()
706 min = 0; in ParseQuantifier()
721 min = 0; in ParseQuantifier()
755 if (captureStart != 0) { in ParseQuantifier()
778 if (min == 0) { in ParseQuantifier()
796 uint32_t c = 0; in ParseGroupSpecifier()
797 char buffer[CACHE_SIZE] = {0}; in ParseGroupSpecifier()
846 hasNamedCaptures_ = 0; in ParseCaptureCount()
860 if (strcmp(name.c_str(), groupName) == 0) { in ParseCaptureCount()
936 // [0-9] in ParseAtomEscape()
939 prevOp.EmitOpCode(&buffer_, 0); in ParseAtomEscape()
946 // [^0-9] in ParseAtomEscape()
951 prevOp.EmitOpCode(&buffer_, 0); in ParseAtomEscape()
961 prevOp.EmitOpCode(&buffer_, 0); in ParseAtomEscape()
972 prevOp.EmitOpCode(&buffer_, 0); in ParseAtomEscape()
982 prevOp.EmitOpCode(&buffer_, 0); in ParseAtomEscape()
994 prevOp.EmitOpCode(&buffer_, 0); in ParseAtomEscape()
1022 if (postion < 0) { in ParseAtomEscape()
1024 if (postion < 0 && (!IsUtf16() || HasNamedCaptures())) { in ParseAtomEscape()
1042 prevOp.EmitOpCode(&buffer_, 0); in ParseAtomEscape()
1056 if (totalCaptureCount_ < 0) { in RecountCaptures()
1064 if (hasNamedCaptures_ < 0) { in HasNamedCaptures()
1075 // 0 [lookahead ∉ DecimalDigit] in ParseCharacterEscape()
1079 uint32_t result = 0; in ParseCharacterEscape()
1119 … result = static_cast<uint32_t>(c0_) & 0x1f; // NOLINTNEXTLINE(readability-magic-numbers) in ParseCharacterEscape()
1132 case '0': { in ParseCharacterEscape()
1134 PrintF("CharacterEscape 0 [lookahead ∉ DecimalDigit]\n"); in ParseCharacterEscape()
1135 … if (IsUtf16() && !(*pc_ >= '0' && *pc_ <= '9')) { // NOLINTNEXTLINE(readability-magic-numbers) in ParseCharacterEscape()
1137 result = 0; in ParseCharacterEscape()
1152 return 0; in ParseCharacterEscape()
1179 return 0; in ParseCharacterEscape()
1210 return 0; in ParseCharacterEscape()
1292 case 0: { in ParseClassAtom()
1300 size_t u16_size = 0; in ParseClassAtom()
1420 } else if (c0_ >= '0' && c0_ <= '9') { in ParseUnicodePropertyValueCharacters()