Lines Matching refs:depth
594 var dig = [], depth = 0;
599 if(part === "..") { depth++; }
606 this.depth = depth;
607 this.isSimple = (dig.length === 1) && (depth === 0);
775 var guid = this.guid++, depth;
782 depth = result.depths.list[i];
784 if(depth < 2) { continue; }
785 else { this.addDepth(depth - 1); }
793 var depth, child, inverse, inverseGuid;
866 this.addDepth(id.depth);
868 this.opcode('getContext', id.depth);
899 if(param.depth) {
900 this.addDepth(param.depth);
903 this.opcode('getContext', param.depth || 0);
924 addDepth: function(depth) {
925 if(depth === 0) { return; }
927 if(!this.depths[depth]) {
928 this.depths[depth] = true;
929 this.depths.list.push(depth);
1105 params.push("depth" + this.environment.depths.list[i]);
1143 getContext: function(depth) {
1144 if(this.lastContext !== depth) {
1145 this.lastContext = depth;
1160 toPush = topStack + " = " + this.nameLookup('depth' + this.lastContext, name, 'context');
1163 toPush = topStack + " = foundHelper || " + this.nameLookup('depth' + this.lastContext, name, 'context');
1169 this.pushStack('depth' + this.lastContext);
1180 this.pushStack('depth' + this.lastContext);
1318 depths = child.depths.list, depth;
1323 depth = depths[i];
1325 if(depth === 1) { programParams.push("depth0"); }
1326 else { programParams.push("depth" + (depth - 1)); }