Lines Matching refs:nbStep

932     int nbStep;			/* Number of steps in this expression */  member
990 cur->nbStep = 0; in xmlXPathNewCompExpr()
1021 for (i = 0; i < comp->nbStep; i++) { in xmlXPathFreeCompExpr()
1033 for (i = 0; i < comp->nbStep; i++) { in xmlXPathFreeCompExpr()
1082 if (comp->nbStep >= comp->maxStep) { in xmlXPathCompExprAdd()
1099 comp->last = comp->nbStep; in xmlXPathCompExprAdd()
1100 comp->steps[comp->nbStep].ch1 = ch1; in xmlXPathCompExprAdd()
1101 comp->steps[comp->nbStep].ch2 = ch2; in xmlXPathCompExprAdd()
1102 comp->steps[comp->nbStep].op = op; in xmlXPathCompExprAdd()
1103 comp->steps[comp->nbStep].value = value; in xmlXPathCompExprAdd()
1104 comp->steps[comp->nbStep].value2 = value2; in xmlXPathCompExprAdd()
1105 comp->steps[comp->nbStep].value3 = value3; in xmlXPathCompExprAdd()
1110 comp->steps[comp->nbStep].value4 = (xmlChar *) in xmlXPathCompExprAdd()
1114 comp->steps[comp->nbStep].value4 = NULL; in xmlXPathCompExprAdd()
1116 comp->steps[comp->nbStep].value5 = (xmlChar *) in xmlXPathCompExprAdd()
1120 comp->steps[comp->nbStep].value5 = NULL; in xmlXPathCompExprAdd()
1122 comp->steps[comp->nbStep].value4 = value4; in xmlXPathCompExprAdd()
1123 comp->steps[comp->nbStep].value5 = value5; in xmlXPathCompExprAdd()
1125 comp->steps[comp->nbStep].cache = NULL; in xmlXPathCompExprAdd()
1126 return(comp->nbStep++); in xmlXPathCompExprAdd()
1672 comp->nbStep); in xmlXPathDebugDumpCompExpr()
14673 if ((comp->nbStep > 1) && (comp->last >= 0)) { in xmlXPathCtxtCompile()
14839 if ((ctxt->comp->nbStep > 1) && (ctxt->comp->last >= 0)) in xmlXPathEvalExpr()