HomeSort by relevance Sort by last modified time
    Searched refs:_stack (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/third_party/bintrees/bintrees/
walker.py 13 __slots__ = ['_node', '_stack', '_tree']
18 self._stack = []
21 self._stack = []
52 self._stack.append(self._node)
55 self._node = self._stack.pop()
58 return len(self._stack) == 0
150 stack = self._stack
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
indentation.py 115 self._stack = []
121 if self._stack:
122 old_stack = self._stack
123 self._stack = []
141 stack = self._stack
348 for token_info in self._stack:
477 if self._stack and self._stack[-1].token == token_info.token:
484 while index <= len(self._stack):
485 stack_info = self._stack[-index
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
indentation.py 115 self._stack = []
121 if self._stack:
122 old_stack = self._stack
123 self._stack = []
141 stack = self._stack
357 for token_info in self._stack:
466 if self._stack and self._stack[-1].token == token_info.token:
474 while index <= len(self._stack):
475 stack_info = self._stack[-index
    [all...]
  /external/chromium_org/tools/cr/cr/base/
context.py 98 _stack = [] variable
141 _stack.append(self)
146 _stack.pop()
147 if _stack:
148 cr.context = _stack[-1]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 1247 protected int[] _stack = new int[_maxAncestors]; field in class:DTMDefaultBaseIterators.PrecedingIterator
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 380 <ruleDescriptor.useScopes:{<it>_stack.push(new Object());}; separator="\n">
381 <ruleDescriptor.ruleScope:{<it.name>_stack.push(new Object());}; separator="\n">
385 <ruleDescriptor.useScopes:{<it>_stack.pop();}; separator="\n">
386 <ruleDescriptor.ruleScope:{<it.name>_stack.pop();}; separator="\n">
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t044trace.py 90 parser._stack,
  /external/fonttools/Lib/fontTools/pens/
transformPen.py 26 self._stack = []
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
ObjC.stg 909 <ruleDescriptor.useScopes:{it | [<it>_stack push:[<it>_Scope new<it>_Scope]];}>
910 <ruleDescriptor.ruleScope:{it | [<it.name>_stack push:[<it.name>_Scope new<it.name>_Scope]];}>
915 <ruleDescriptor.useScopes:{it | [<it>_stack pop];}; separator="\n">
916 <ruleDescriptor.ruleScope:{it | [<it.name>_stack pop];}; separator="\n">
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg 433 <ruleDescriptor.useScopes:{it |<it>_stack.push(new <it>_scope());}; separator="\n">
434 <ruleDescriptor.ruleScope:{it |<it.name>_stack.push(new <it.name>_scope());}; separator="\n">
438 <ruleDescriptor.useScopes:{it |<it>_stack.pop();}; separator="\n">
439 <ruleDescriptor.ruleScope:{it |<it.name>_stack.pop();}; separator="\n">
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
Perl5.stg 407 <ruleDescriptor.useScopes:{<it>_stack.push(new <it>_scope());}; separator="\n">
408 <ruleDescriptor.ruleScope:{<it.name>_stack.push(new <it.name>_scope());}; separator="\n">
412 <ruleDescriptor.useScopes:{<it>_stack.pop();}; separator="\n">
413 <ruleDescriptor.ruleScope:{<it.name>_stack.pop();}; separator="\n">
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg 411 <ruleDescriptor.useScopes:{it | <it>_stack.push(new <it>_scope())}; separator="\n">
412 <ruleDescriptor.ruleScope:{it | <it.name>_stack.push(new <it.name>_scope())}; separator="\n">
416 <ruleDescriptor.useScopes:{it | <it>_stack.pop()}; separator="\n">
417 <ruleDescriptor.ruleScope:{it | <it.name>_stack.pop()}; separator="\n">
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg 492 <ruleDescriptor.useScopes:{it | self.<it>_stack.append(<it>_scope())}; separator="\n">
493 <ruleDescriptor.ruleScope:{it | self.<it.name>_stack.append(<it.name>_scope())}; separator="\n">
497 <ruleDescriptor.useScopes:{it | self.<it>_stack.pop()}; separator="\n">
498 <ruleDescriptor.ruleScope:{it | self.<it.name>_stack.pop()}; separator="\n">
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 384 <if(scope.attributes)>@<scope.name>_stack = []<\n><endif>
550 <ruleDescriptor.useScopes:{it | @<it>_stack.push( @@<it>.new )<\n>}><ruleDescriptor.ruleScope:{it | @<it.name>_stack.push( @@<it.name>.new )<\n>}>
554 <ruleDescriptor.useScopes:{it | @<it>_stack.pop<\n>}><ruleDescriptor.ruleScope:{it | @<it.name>_stack.pop<\n>}>
1035 @<scope>_stack[ -<negIndex> ].<attr.name>
1038 @<scope>_stack[ <index> ].<attr.name>
1040 @<scope>_stack.last.<attr.name>
1048 @<scope>_stack[ -<negIndex> ].<attr.name> = <expr>
1051 @<scope>_stack[ <index> ].<attr.name> = <expr
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
CPP.stg 459 <ruleDescriptor.useScopes:{<it>_stack.push(new <it>_scope());}; separator="\n">
460 <ruleDescriptor.ruleScope:{<it.name>_stack.push(new <it.name>_scope());}; separator="\n">
502 <ruleDescriptor.useScopes:{<it>_stack.pop();}; separator="\n">
503 <ruleDescriptor.ruleScope:{<it.name>_stack.pop();}; separator="\n">
1157 protected Stack <scope.name>_stack = new Stack();<\n>
1166 protected Stack <scope.name>_stack = new Stack();<\n>
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 603 <ruleDescriptor.useScopes:{it|<it>_stack.Push(new <it>_scope());<it>_scopeInit(<it>_stack.Peek());}; separator="\n">
604 <ruleDescriptor.ruleScope:{it|<it.name>_stack.Push(new <it.name>_scope());<it.name>_scopeInit(<it.name>_stack.Peek());}; separator="\n">
608 <ruleDescriptor.useScopes:{it|<it>_scopeAfter(<it>_stack.Peek());<it>_stack.Pop();}; separator="\n">
609 <ruleDescriptor.ruleScope:{it|<it.name>_scopeAfter(<it.name>_stack.Peek());<it.name>_stack.Pop();}; separator="\n">
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 581 <ruleDescriptor.useScopes:{it|<it>_stack.Push(new <it>_scope(this));<it>_scopeInit(<it>_stack.Peek());}; separator="\n">
582 <ruleDescriptor.ruleScope:{it|<it.name>_stack.Push(new <it.name>_scope(this));<it.name>_scopeInit(<it.name>_stack.Peek());}; separator="\n">
586 <ruleDescriptor.useScopes:{it|<it>_scopeAfter(<it>_stack.Peek());<it>_stack.Pop();}; separator="\n">
587 <ruleDescriptor.ruleScope:{it|<it.name>_scopeAfter(<it.name>_stack.Peek());<it.name>_stack.Pop();}; separator="\n">
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 806 protected int[] _stack = new int[_maxAncestors]; field in class:SAX2DTM2.PrecedingIterator
837 final int[] stackCopy = new int[_stack.length];
838 System.arraycopy(_stack, 0, stackCopy, 0, _stack.length);
840 clone._stack = stackCopy;
875 _stack[index = 0] = node;
880 if (++index == _stack.length)
883 System.arraycopy(_stack, 0, stack, 0, index);
884 _stack = stack;
886 _stack[index] = parent
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TracingModel.js 712 this._stack = [];
735 if (!this._stack.length)
737 var top = this._stack.pop();
748 this._stack.push(event);
  /external/chromium_org/third_party/jinja2/
runtime.py 259 self._stack = stack
265 if self._depth + 1 >= len(self._stack):
269 return BlockReference(self.name, self._context, self._stack,
274 rv = concat(self._stack[self._depth](self._context))
  /external/chromium_org/third_party/motemplate/
motemplate.py 209 class _Stack(object):
220 descended.append(_Stack.Entry(name, id_))
221 return _Stack(entries=descended)
239 def __init__(self, name, contexts, _stack=_Stack()):
244 self._stack = _stack
247 message = id_.CreateResolutionErrorMessage(self._name, stack=self._stack)
254 self._name, self.contexts, _stack=self._stack)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.m 115 static _stack;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.m 177 static _stack;
    [all...]
  /external/chromium_org/third_party/sinonjs/src/
sinon.js 698 if (wrappedMethod && wrappedMethod._stack) {
699 error.stack += '\n--------------\n' + wrappedMethod._stack;
711 method._stack = (new Error('Stack Trace for original')).stack;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg     [all...]

Completed in 520 milliseconds

1 2