Lines Matching refs:spaceNr
1948 if (ctxt->spaceNr >= ctxt->spaceMax) { in spacePush()
1961 ctxt->spaceTab[ctxt->spaceNr] = val; in spacePush()
1962 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr]; in spacePush()
1963 return(ctxt->spaceNr++); in spacePush()
1968 if (ctxt->spaceNr <= 0) return(0); in spacePop()
1969 ctxt->spaceNr--; in spacePop()
1970 if (ctxt->spaceNr > 0) in spacePop()
1971 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr - 1]; in spacePop()
1974 ret = ctxt->spaceTab[ctxt->spaceNr]; in spacePop()
1975 ctxt->spaceTab[ctxt->spaceNr] = -1; in spacePop()
10174 if (ctxt->spaceNr == 0) in xmlParseElement()
11597 if (ctxt->spaceNr == 0) in xmlParseTryOrFinish()
15080 ctxt->spaceNr = 0; in xmlCtxtReset()