Lines Matching full:first
60 // 9. Let first be the code unit value at index position in s. in Next()
61 uint16_t first = string.GetObject<EcmaString>()->At<false>(position); in Next() local
64 …// 10. If first < 0xD800 or first > 0xDBFF or position+1 = len, let resultString be the string con… in Next()
65 // single code unit first. in Next()
67 if (position + 1 == len || first < base::utf_helper::DECODE_LEAD_LOW || in Next()
68 first > base::utf_helper::DECODE_LEAD_HIGH) { in Next()
69 std::vector<uint16_t> resultString {first, 0x0}; in Next()
75 // first. in Next()
76 …// c. Else, let resultString be the string consisting of the code unit first followed by the code … in Next()
79 std::vector<uint16_t> resultString {first, 0x0}; in Next()
82 std::vector<uint16_t> resultString {first, second, 0x0}; in Next()