Home | History | Annotate | Download | only in libxml2

Lines Matching refs:tabSize

6342     int tabSize;
7689 if (ctxt->tabSize == 0)
7690 ctxt->tabSize = 40;
7692 tab = (const xmlChar **) xmlMalloc(ctxt->tabSize *
7701 len = xmlExpGetStartInt(ctxt, sub, tab, ctxt->tabSize, 0);
7704 temp = (const xmlChar **) xmlRealloc((xmlChar **) tab, ctxt->tabSize * 2 *
7711 ctxt->tabSize *= 2;
7712 len = xmlExpGetStartInt(ctxt, sub, tab, ctxt->tabSize, 0);