Lines Matching defs:c1

388                 uint32_t c1 = GetChar(&refCptr, captureEnd);
392 c1 = static_cast<uint32_t>(RegExpParser::Canonicalize(c1, IsUtf16()));
395 if (c1 != c2) {
415 uint32_t c1 = GetPrevChar(&refCptr, captureStart);
419 c1 = static_cast<uint32_t>(RegExpParser::Canonicalize(c1, IsUtf16()));
422 if (c1 != c2) {
468 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
469 c = c1;
473 c1 = *(reinterpret_cast<const uint16_t *>(cptr));
474 if (U16_IS_TRAIL(c1)) {
475 c = static_cast<uint32_t>(U16_GET_SUPPLEMENTARY(c, c1)); // NOLINTNEXTLINE(hicpp-signed-bitwise)
492 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
493 c = c1;
496 c1 = *(uint16_t *)cptr; // NOLINTNEXTLINE(cppcoreguidelines-pro-type-cstyle-cast)
497 if (U16_IS_TRAIL(c1)) {
498 c = static_cast<uint32_t>(U16_GET_SUPPLEMENTARY(c, c1)); // NOLINTNEXTLINE(hicpp-signed-bitwise)
512 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
514 if (U16_IS_LEAD(c1) && IsUtf16() && cptr < end) {
516 c1 = *(reinterpret_cast<const uint16_t *>(cptr));
517 if (U16_IS_TRAIL(c1)) {
534 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
535 c = c1;
538 c1 = (reinterpret_cast<const uint16_t *>(cptr))[-1];
539 if (U16_IS_LEAD(c1)) {
540 c = static_cast<uint32_t>(U16_GET_SUPPLEMENTARY(c1, c)); // NOLINTNEXTLINE(hicpp-signed-bitwise)
558 uint16_t c1 = *(reinterpret_cast<const uint16_t *>(cptr));
559 c = c1;
562 c1 = (reinterpret_cast<const uint16_t *>(cptr))[-1];
563 if (U16_IS_LEAD(c1)) {
564 c = static_cast<uint32_t>(U16_GET_SUPPLEMENTARY(c1, c)); // NOLINTNEXTLINE(hicpp-signed-bitwise)
581 uint16_t c1 = *(const uint16_t *)cptr; // NOLINTNEXTLINE(cppcoreguidelines-pro-type-cstyle-cast)
582 if (U16_IS_TRAIL(c1) && IsUtf16() && cptr > start) {
584 c1 = (reinterpret_cast<const uint16_t *>(cptr))[-1];
585 if (U16_IS_LEAD(c1)) {