Home | History | Annotate | Download | only in cctest

Lines Matching refs:nchars

8178       int nchars;
8180 string->WriteUtf8(buffer, j, &nchars, String::NO_OPTIONS);
8182 string->WriteUtf8(buffer2, j, &nchars, String::NO_NULL_TERMINATION);
8188 CHECK(nchars * 3 >= utf8_written - 1);
8189 CHECK(nchars <= utf8_written);
8204 if (nchars >= 2) {
8205 uint16_t trail = StringGet(string, nchars - 1);
8206 uint16_t lead = StringGet(string, nchars - 2);
15236 int nchars = -1;
15237 CHECK_EQ(129, cons->WriteUtf8(utf_buffer, -1, &nchars));
15238 CHECK_EQ(128, nchars);