Lines Matching refs:spaceNr
1941 if (ctxt->spaceNr >= ctxt->spaceMax) { in spacePush()
1954 ctxt->spaceTab[ctxt->spaceNr] = val; in spacePush()
1955 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr]; in spacePush()
1956 return(ctxt->spaceNr++); in spacePush()
1961 if (ctxt->spaceNr <= 0) return(0); in spacePop()
1962 ctxt->spaceNr--; in spacePop()
1963 if (ctxt->spaceNr > 0) in spacePop()
1964 ctxt->space = &ctxt->spaceTab[ctxt->spaceNr - 1]; in spacePop()
1967 ret = ctxt->spaceTab[ctxt->spaceNr]; in spacePop()
1968 ctxt->spaceTab[ctxt->spaceNr] = -1; in spacePop()
10118 if (ctxt->spaceNr == 0) in xmlParseElement()
11540 if (ctxt->spaceNr == 0) in xmlParseTryOrFinish()
15023 ctxt->spaceNr = 0; in xmlCtxtReset()