Lines Matching defs:depth
168 short depth; /* used for the cycle detection */
238 int docNr; /* Depth of the parsing stack */
239 int docMax; /* Max depth of the parsing stack */
244 int incNr; /* Depth of the include parsing stack */
245 int incMax; /* Max depth of the parsing stack */
360 int depth; /* validation depth */
369 int errNr; /* Depth of the error stack */
370 int errMax; /* Max depth of the error stack */
386 int elemMax; /* the max depth of elements */
926 ret->depth = -1;
2949 if (def->depth == -20) {
2954 def->depth = -20;
3036 if ((xmlRelaxNGIsCompileable(def) == 1) && (def->depth != -25)) {
3040 def->depth = -25;
3078 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
3082 def->depth = -25;
3263 if ((def->dflags & IS_COMPILABLE) && (def->depth != -25)) {
5944 * @depth: the counter
5952 xmlRelaxNGDefinePtr cur, int depth)
5959 if (cur->depth == -1) {
5960 cur->depth = depth;
5961 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
5962 cur->depth = -2;
5963 } else if (depth == cur->depth) {
5970 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth + 1);
5972 ret = xmlRelaxNGCheckCycles(ctxt, cur->content, depth);
6029 if (cur->depth != -3) {
6030 cur->depth = -3;
6280 if (cur->depth > -4) {
6281 cur->depth = -4;
6284 cur->depth = ret - 15;
6285 } else if (cur->depth == -4) {
6288 ret = (xmlRelaxNGContentType) (cur->depth + 15);
9828 for (i = 0; i < ctxt->depth; i++)
9839 ctxt->depth++;
10552 ctxt->depth--;
10554 for (i = 0; i < ctxt->depth; i++)