Home | History | Annotate | Download | only in libxml2

Lines Matching defs:depth

167     short depth;                /* used for the cycle detection */
237 int docNr; /* Depth of the parsing stack */
238 int docMax; /* Max depth of the parsing stack */
243 int incNr; /* Depth of the include parsing stack */
244 int incMax; /* Max depth of the parsing stack */
359 int depth; /* validation depth */
368 int errNr; /* Depth of the error stack */
369 int errMax; /* Max depth of the error stack */
385 int elemMax; /* the max depth of elements */
925 ret->depth = -1;
2948 if (def->depth == -20) {
2953 def->depth = -20;
3035 if ((xmlRelaxNGIsCompileable(def) == 1) && (def->depth != -25)) {
3039 def->depth = -25;
3077 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
3081 def->depth = -25;
3262 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
5943 * @depth: the counter
5951 xmlRelaxNGDefinePtr cur, int depth)
5958 if (cur->depth == -1) {
5959 cur->depth = depth;
5960 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
5961 cur->depth = -2;
5962 } else if (depth == cur->depth) {
5969 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth + 1);
5971 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
6028 if (cur->depth != -3) {
6029 cur->depth = -3;
6279 if (cur->depth > -4) {
6280 cur->depth = -4;
6283 cur->depth = ret - 15;
6284 } else if (cur->depth == -4) {
6287 ret = (xmlRelaxNGContentType) (cur->depth + 15);
9827 for (i = 0; i < ctxt->depth; i++)
9838 ctxt->depth++;
10551 ctxt->depth--;
10553 for (i = 0; i < ctxt->depth; i++)