Home | History | Annotate | Download | only in libxml2

Lines Matching full:nbchar

4214     int nbchar = 0;
4238 nbchar = in - ctxt->input->cur;
4239 if (nbchar > 0) {
4246 if (areBlanks(ctxt, tmp, nbchar, 1)) {
4249 tmp, nbchar);
4253 tmp, nbchar);
4260 tmp, nbchar);
4290 nbchar = in - ctxt->input->cur;
4291 if (nbchar > 0) {
4299 if (areBlanks(ctxt, tmp, nbchar, 0)) {
4302 tmp, nbchar);
4306 tmp, nbchar);
4315 ctxt->input->cur, nbchar);
4344 nbchar = 0;
4363 int nbchar = 0;
4380 COPY_BUF(l,buf,nbchar,cur);
4381 if (nbchar >= XML_PARSER_BIG_BUFFER_SIZE) {
4382 buf[nbchar] = 0;
4388 if (areBlanks(ctxt, buf, nbchar, 0)) {
4391 buf, nbchar);
4394 ctxt->sax->characters(ctxt->userData, buf, nbchar);
4401 nbchar = 0;
4414 if (nbchar != 0) {
4415 buf[nbchar] = 0;
4420 if (areBlanks(ctxt, buf, nbchar, 0)) {
4422 ctxt->sax->ignorableWhitespace(ctxt->userData, buf, nbchar);
4425 ctxt->sax->characters(ctxt->userData, buf, nbchar);
4663 int nbchar = 0, ccol;
4706 nbchar = in - ctxt->input->cur;
4710 if (nbchar > 0) {
4715 size = nbchar + 1;
4717 size = XML_PARSER_BUFFER_SIZE + nbchar;
4725 } else if (len + nbchar + 1 >= size) {
4727 size += len + nbchar + XML_PARSER_BUFFER_SIZE;
4738 memcpy(&buf[len], ctxt->input->cur, nbchar);
4739 len += nbchar;