• Home
  • Raw
  • Download

Lines Matching refs:nbStep

102     int nbStep;			/* number of steps in the automata */  member
170 int nbStep; member
245 for (i = 0;i < comp->nbStep;i++) { in xmlFreePattern()
351 if (comp->nbStep >= comp->maxStep) { in xmlPatternAdd()
363 comp->steps[comp->nbStep].op = op; in xmlPatternAdd()
364 comp->steps[comp->nbStep].value = value; in xmlPatternAdd()
365 comp->steps[comp->nbStep].value2 = value2; in xmlPatternAdd()
366 comp->nbStep++; in xmlPatternAdd()
380 int j = comp->nbStep - 1;
414 if ((comp->nbStep > 0) && (comp->steps[0].op == XML_OP_ANCESTOR)) { in xmlReversePattern()
415 for (i = 0, j = 1;j < comp->nbStep;i++,j++) { in xmlReversePattern()
420 comp->nbStep--; in xmlReversePattern()
422 if (comp->nbStep >= comp->maxStep) { in xmlReversePattern()
435 j = comp->nbStep - 1; in xmlReversePattern()
451 comp->steps[comp->nbStep].value = NULL; in xmlReversePattern()
452 comp->steps[comp->nbStep].value2 = NULL; in xmlReversePattern()
453 comp->steps[comp->nbStep++].op = XML_OP_END; in xmlReversePattern()
506 for (;i < comp->nbStep;i++) { in xmlPatMatch()
1435 printf("Stream: %d steps\n", stream->nbStep); in xmlDebugStreamComp()
1436 for (i = 0;i < stream->nbStep;i++) { in xmlDebugStreamComp()
1511 cur->nbStep = 0; in xmlNewStreamComp()
1549 if (comp->nbStep >= comp->maxStep) { in xmlStreamCompAddStep()
1560 cur = &comp->steps[comp->nbStep++]; in xmlStreamCompAddStep()
1565 return(comp->nbStep - 1); in xmlStreamCompAddStep()
1587 if ((comp->nbStep == 1) && in xmlStreamCompile()
1600 stream = xmlNewStreamComp((comp->nbStep / 2) + 1); in xmlStreamCompile()
1612 for (;i < comp->nbStep;i++) { in xmlStreamCompile()
1649 if ((comp->nbStep == i + 1) && in xmlStreamCompile()
1655 if (comp->nbStep == i + 1) { in xmlStreamCompile()
1730 if (stream->nbStep > 0) { in xmlStreamCompile()
1735 if (stream->nbStep <= s) in xmlStreamCompile()
1880 if (comp->nbStep == 0) { in xmlStreamPushInternal()
1884 if ((comp->nbStep == 1) && in xmlStreamPushInternal()
1908 if (comp->nbStep == 0) { in xmlStreamPushInternal()
2555 for (i = 0;i < comp->stream->nbStep;i++) in xmlPatternMaxDepth()
2558 if (comp->stream->nbStep > ret) in xmlPatternMaxDepth()
2559 ret = comp->stream->nbStep; in xmlPatternMaxDepth()
2583 if (comp->stream->nbStep < ret) in xmlPatternMinDepth()
2584 ret = comp->stream->nbStep; in xmlPatternMinDepth()