Home | History | Annotate | Download | only in cctest

Lines Matching refs:lead

5836         uint16_t lead = StringGet(string, nchars - 2);
5837 if (((lead & 0xfc00) == 0xd800) &&
5847 uint32_t c = 0x10000 + ((lead & 0x3ff) << 10) + (trail & 0x3ff);
5867 "var lead = 0xd800;"
5876 " p[1] = String.fromCharCode(lead++);"