Lines Matching refs:spaceNr
1874 if (ctxt->spaceNr >= ctxt->spaceMax) { in spacePush()
1887 ctxt->spaceTab[ctxt->spaceNr] = val; in spacePush()
1888 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr]; in spacePush()
1889 return(ctxt->spaceNr++); in spacePush()
1894 if (ctxt->spaceNr <= 0) return(0); in spacePop()
1895 ctxt->spaceNr--; in spacePop()
1896 if (ctxt->spaceNr > 0) in spacePop()
1897 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr - 1]; in spacePop()
1900 ret = ctxt->spaceTab[ctxt->spaceNr]; in spacePop()
1901 ctxt->spaceTab[ctxt->spaceNr] = -1; in spacePop()
9587 if (ctxt->spaceNr == 0) in xmlParseElement()
10977 if (ctxt->spaceNr == 0) in xmlParseTryOrFinish()
14274 ctxt->spaceNr = 0; in xmlCtxtReset()