Lines Matching refs:depth
144 var guid = this.guid++, depth;
151 depth = result.depths.list[i];
153 if(depth < 2) { continue; }
154 else { this.addDepth(depth - 1); }
162 var depth, child, inverse, inverseGuid;
235 this.addDepth(id.depth);
237 this.opcode('getContext', id.depth);
268 if(param.depth) {
269 this.addDepth(param.depth);
272 this.opcode('getContext', param.depth || 0);
293 addDepth: function(depth) {
294 if(depth === 0) { return; }
296 if(!this.depths[depth]) {
297 this.depths[depth] = true;
298 this.depths.list.push(depth);
474 params.push("depth" + this.environment.depths.list[i]);
512 getContext: function(depth) {
513 if(this.lastContext !== depth) {
514 this.lastContext = depth;
529 toPush = topStack + " = " + this.nameLookup('depth' + this.lastContext, name, 'context');
532 toPush = topStack + " = foundHelper || " + this.nameLookup('depth' + this.lastContext, name, 'context');
538 this.pushStack('depth' + this.lastContext);
549 this.pushStack('depth' + this.lastContext);
687 depths = child.depths.list, depth;
692 depth = depths[i];
694 if(depth === 1) { programParams.push("depth0"); }
695 else { programParams.push("depth" + (depth - 1)); }