Lines Matching defs:second
323 uint16_t second = EcmaStringAccessor(thisFlat).Get<false>(pos + 1);
324 if (second < base::utf_helper::DECODE_TRAIL_LOW || second > base::utf_helper::DECODE_TRAIL_HIGH) {
327 uint32_t res = base::utf_helper::UTF16Decode(first, second);
533 JSHandle<JSTaggedValue> options = GetCallArg(argv, 2); // 2: the second argument
762 // iv. Let second be the code unit at index position + 1 within string.
763 uint16_t second = EcmaStringAccessor(string).Get(position + 1);
764 // v. If second is not a trailing surrogate, then
766 if (!IsUTF16LowSurrogate(second)) {
770 // vi. Set cp to UTF16SurrogatePairToCodePoint(first, second).
772 cp = UTF16SurrogatePairToCodePoint(first, second);
835 // iv. Let second be the code unit at index position + 1 within string.
836 uint16_t second = EcmaStringAccessor(string).Get(position + 1);
837 // v. If second is not a trailing surrogate, then
839 if (!IsUTF16LowSurrogate(second)) {
843 // vi. Set cp to UTF16SurrogatePairToCodePoint(first, second).
845 cp = UTF16SurrogatePairToCodePoint(first, second);
1447 canBeCompress = result.second && canBeCompress; // 保留canBeCompress的值,只在需要时更新为false
1453 canBeCompress = result.second && canBeCompress; // 保留canBeCompress的值,只在需要时更新为false