HomeSort by relevance Sort by last modified time
    Searched refs:newRoot (Results 26 - 50 of 66) sorted by null

12 3

  /external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugEventRepeater.cs 181 public virtual void BecomeRoot( object newRoot, object oldRoot )
183 _listener.BecomeRoot( newRoot, oldRoot );
BlankDebugEventListener.cs 152 public virtual void BecomeRoot( object newRoot, object oldRoot )
DebugEventHub.cs 337 public virtual void BecomeRoot( object newRoot, object oldRoot )
342 listener.BecomeRoot( newRoot, oldRoot );
  /external/antlr/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventRepeater.java 83 @Override public void becomeRoot(Object newRoot, Object oldRoot) { listener.becomeRoot(newRoot, oldRoot); }
BlankDebugEventListener.java 72 @Override public void becomeRoot(Object newRoot, Object oldRoot) {}
DebugEventHub.java 301 public void becomeRoot(Object newRoot, Object oldRoot) {
304 listener.becomeRoot(newRoot, oldRoot);
DebugEventSocketProxy.java 331 public void becomeRoot(Object newRoot, Object oldRoot) {
332 int newRootID = adaptor.getUniqueID(newRoot);
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
BlankDebugEventListener.cs 120 public virtual void BecomeRoot(object newRoot, object oldRoot) {
DebugEventHub.cs 276 public virtual void BecomeRoot(object newRoot, object oldRoot) {
279 listener.BecomeRoot(newRoot, oldRoot);
DebugEventSocketProxy.cs 336 public override void BecomeRoot(object newRoot, object oldRoot) {
337 int newRootID = adaptor.GetUniqueID(newRoot);
  /external/antlr/runtime/Cpp/include/
antlr3debugeventlistener.hpp 361 * than the TreeAdaptor.becomeRoot() newRoot parameter.
374 virtual void becomeRoot( TreeType* newRoot, TreeType* oldRoot);
  /external/guava/guava/src/com/google/common/collect/
TreeMultiset.java 254 AvlNode<E> newRoot = new AvlNode<E>(element, occurrences);
255 successor(header, newRoot, header);
256 rootReference.checkAndSet(root, newRoot);
260 AvlNode<E> newRoot = root.add(comparator(), element, occurrences, result);
261 rootReference.checkAndSet(root, newRoot);
273 AvlNode<E> newRoot;
280 newRoot = root.remove(comparator(), e, occurrences, result);
286 rootReference.checkAndSet(root, newRoot);
306 AvlNode<E> newRoot = root.setCount(comparator(), element, count, result);
307 rootReference.checkAndSet(root, newRoot);
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 250 AvlNode<E> newRoot = new AvlNode<E>(element, occurrences);
251 successor(header, newRoot, header);
252 rootReference.checkAndSet(root, newRoot);
256 AvlNode<E> newRoot = root.add(comparator(), element, occurrences, result);
257 rootReference.checkAndSet(root, newRoot);
269 AvlNode<E> newRoot;
276 newRoot = root.remove(comparator(), e, occurrences, result);
282 rootReference.checkAndSet(root, newRoot);
302 AvlNode<E> newRoot = root.setCount(comparator(), element, count, result);
303 rootReference.checkAndSet(root, newRoot);
    [all...]
  /external/antlr/runtime/Python/antlr3/
debug.py 294 def becomeRoot(self, newRoot, oldRoot):
295 if isinstance(newRoot, Token):
296 n = self.createWithPayload(newRoot)
299 n = self.adaptor.becomeRoot(newRoot, oldRoot)
301 self.dbg.becomeRoot(newRoot, oldRoot)
687 def becomeRoot(self, newRoot, oldRoot):
691 than the TreeAdaptor.becomeRoot() newRoot parameter.
804 def becomeRoot(self, newRoot, oldRoot):
806 self.adaptor.getUniqueID(newRoot),
1092 def becomeRoot(self, newRoot, oldRoot)
    [all...]
tree.py 361 def becomeRoot(self, newRoot, oldRoot):
363 If oldRoot is a nil root, just copy or move the children to newRoot.
364 If not a nil root, make oldRoot a child of newRoot.
369 If newRoot is a nil-rooted single child tree, use the single
375 If oldRoot was null, it's ok, just return newRoot (even if isNil).
380 Return newRoot. Throw an exception if newRoot is not a
382 node. If newRoot is ^(nil x) return x as newRoot.
384 Be advised that it's ok for newRoot to point at oldRoot'
    [all...]
  /external/antlr/runtime/Python3/antlr3/
debug.py 301 def becomeRoot(self, newRoot, oldRoot):
302 if isinstance(newRoot, Token):
303 n = self.createWithPayload(newRoot)
306 n = self.adaptor.becomeRoot(newRoot, oldRoot)
308 self.dbg.becomeRoot(newRoot, oldRoot)
687 def becomeRoot(self, newRoot, oldRoot):
691 than the TreeAdaptor.becomeRoot() newRoot parameter.
804 def becomeRoot(self, newRoot, oldRoot):
806 self.adaptor.getUniqueID(newRoot),
    [all...]
tree.py 361 def becomeRoot(self, newRoot, oldRoot):
363 If oldRoot is a nil root, just copy or move the children to newRoot.
364 If not a nil root, make oldRoot a child of newRoot.
369 If newRoot is a nil-rooted single child tree, use the single
375 If oldRoot was null, it's ok, just return newRoot (even if isNil).
380 Return newRoot. Throw an exception if newRoot is not a
382 node. If newRoot is ^(nil x) return x as newRoot.
384 Be advised that it's ok for newRoot to point at oldRoot'
    [all...]
  /external/antlr/runtime/C/include/
antlr3debugeventlistener.h 355 * than the TreeAdaptor.becomeRoot() newRoot parameter.
368 void (*becomeRoot) (pANTLR3_DEBUG_EVENT_LISTENER delboy, pANTLR3_BASE_TREE newRoot, pANTLR3_BASE_TREE oldRoot);
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
TreeAdaptor.as 94 /** If oldRoot is a nil root, just copy or move the children to newRoot.
95 * If not a nil root, make oldRoot a child of newRoot.
100 * If newRoot is a nil-rooted single child tree, use the single
106 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
111 * Return newRoot. Throw an exception if newRoot is not a
113 * node. If newRoot is ^(nil x) return x as newRoot.
115 * Be advised that it's ok for newRoot to point at oldRoot's
120 function becomeRoot(newRoot:Object, oldRoot:Object):Object
    [all...]
  /external/antlr/runtime/ObjC/Framework/
TreeAdaptor.h 72 /** If oldRoot is a nil root, just copy or move the children to newRoot.
73 * If not a nil root, make oldRoot a child of newRoot.
78 * If newRoot is a nil-rooted single child tree, use the single
84 * If oldRoot was null, it's ok, just return newRoot (even if isNil).
89 * Return newRoot. Throw an exception if newRoot is not a
91 * node. If newRoot is ^(nil x) return x as newRoot.
93 * Be advised that it's ok for newRoot to point at oldRoot's
98 - (id) becomeRoot:(id)newRoot old:(id)oldRoot
    [all...]
  /external/jdiff/src/jdiff/
JDiff.java 41 protected boolean startGeneration(RootDoc newRoot) {
47 RootDocToXML.writeXML(newRoot);
  /external/antlr/runtime/Python/unittests/
testtree.py 670 newRoot = CommonTree(CommonToken(5))
677 self.adaptor.becomeRoot(newRoot, oldRoot)
678 newRoot.sanityCheckParentAndChildIndexes()
683 newRoot = CommonTree(CommonToken(5))
689 self.adaptor.becomeRoot(newRoot, oldRoot)
690 newRoot.sanityCheckParentAndChildIndexes()
695 newRoot = CommonTree(None)
696 newRoot.addChild(CommonTree(CommonToken(5)))
703 self.adaptor.becomeRoot(newRoot, oldRoot)
704 newRoot.sanityCheckParentAndChildIndexes(
    [all...]
  /external/antlr/runtime/Python3/unittests/
testtree.py 667 newRoot = CommonTree(CommonToken(5))
674 self.adaptor.becomeRoot(newRoot, oldRoot)
675 newRoot.sanityCheckParentAndChildIndexes()
680 newRoot = CommonTree(CommonToken(5))
686 self.adaptor.becomeRoot(newRoot, oldRoot)
687 newRoot.sanityCheckParentAndChildIndexes()
692 newRoot = CommonTree(None)
693 newRoot.addChild(CommonTree(CommonToken(5)))
700 self.adaptor.becomeRoot(newRoot, oldRoot)
701 newRoot.sanityCheckParentAndChildIndexes(
    [all...]
  /external/markdown/markdown/
__init__.py 395 newRoot = treeprocessor.run(root)
396 if newRoot:
397 root = newRoot
  /external/deqp-deps/glslang/glslang/MachineIndependent/
linkValidate.cpp     [all...]

Completed in 896 milliseconds

12 3