/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
ITreeAdaptor.cs | 170 * If oldRoot is a nil root, just copy or move the children to newRoot. 171 * If not a nil root, make oldRoot a child of newRoot. 184 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 193 * Be advised that it's ok for newRoot to point at oldRoot's 199 object BecomeRoot( object newRoot, object oldRoot ); 234 * Create a node for newRoot make it the root of oldRoot. 235 * If oldRoot is a nil root, just copy or move the children to newRoot. 236 * If not a nil root, make oldRoot a child of newRoot. 250 object BecomeRoot( IToken newRoot, object oldRoot );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
TreeAdaptor.java | 96 /** If oldRoot is a nil root, just copy or move the children to newRoot. 97 * If not a nil root, make oldRoot a child of newRoot. 108 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 117 * Be advised that it's ok for newRoot to point at oldRoot's 122 public Object becomeRoot(Object newRoot, Object oldRoot); 150 /** Create a node for newRoot make it the root of oldRoot. 151 * If oldRoot is a nil root, just copy or move the children to newRoot. 152 * If not a nil root, make oldRoot a child of newRoot. 161 public Object becomeRoot(Token newRoot, Object oldRoot);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
TraceDebugEventListener.cs | 102 public override void BecomeRoot(object newRoot, object oldRoot) { 104 adaptor.GetUniqueID(oldRoot));
|
DebugEventRepeater.cs | 149 public virtual void BecomeRoot(object newRoot, object oldRoot) { 150 _listener.BecomeRoot(newRoot, oldRoot);
|
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) { 338 int oldRootID = adaptor.GetUniqueID(oldRoot);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
TraceDebugEventListener.cs | 115 public override void BecomeRoot( object newRoot, object oldRoot ) 118 adaptor.GetUniqueID( oldRoot ) );
|
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 );
|
DebugEventSocketProxy.cs | 381 public override void BecomeRoot( object newRoot, object oldRoot ) 384 int oldRootID = adaptor.GetUniqueID( oldRoot );
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugEventRepeater.java | 83 public void becomeRoot(Object newRoot, Object oldRoot) { listener.becomeRoot(newRoot, oldRoot); }
|
TraceDebugEventListener.java | 81 public void becomeRoot(Object newRoot, Object oldRoot) { 83 adaptor.getUniqueID(oldRoot));
|
BlankDebugEventListener.java | 72 public void becomeRoot(Object newRoot, Object oldRoot) {}
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRTreeException.h | 32 id<ANTLRTree> oldRoot;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRTreeException.h | 32 id<ANTLRTree> oldRoot;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRTreeException.h | 32 id<ANTLRTree> oldRoot;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRTreeException.h | 32 id<ANTLRBaseTree> oldRoot;
|
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
testtree.py | 672 oldRoot = CommonTree(None) 673 oldRoot.addChild(CommonTree(CommonToken(101))) 674 oldRoot.addChild(CommonTree(CommonToken(102))) 675 oldRoot.addChild(CommonTree(CommonToken(103))) 677 self.adaptor.becomeRoot(newRoot, oldRoot) 685 oldRoot = CommonTree(CommonToken(101)) 686 oldRoot.addChild(CommonTree(CommonToken(102))) 687 oldRoot.addChild(CommonTree(CommonToken(103))) 689 self.adaptor.becomeRoot(newRoot, oldRoot) 698 oldRoot = CommonTree(None [all...] |
/external/opencv3/modules/objdetect/src/ |
cascadedetect_convert.cpp | 119 FileNode oldroot = oldfs.getFirstTopLevelNode(); 121 FileNode sznode = oldroot[ICV_HAAR_SIZE_NAME]; 131 FileNode stages_seq = oldroot[ICV_HAAR_STAGES_NAME];
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/ |
Antlr.Runtime.Tree.Tests.pas | 253 OldRoot, NewRoot: ICommonTree; 258 OldRoot := TCommonTree.Create(IToken(nil)); 259 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(101))); 260 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(102))); 261 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(103))); 263 Adaptor.BecomeRoot(NewRoot, OldRoot); 269 OldRoot, NewRoot: ICommonTree; 274 OldRoot := TCommonTree.Create(TCommonToken.Create(101)); 275 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(102))); 276 OldRoot.AddChild(TCommonTree.Create(TCommonToken.Create(103))) [all...] |
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3basetreeadaptor.h | 87 void * (*becomeRoot) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * newRoot, void * oldRoot); 91 void * (*becomeRootToken) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void * newRoot, void * oldRoot);
|
/external/antlr/antlr-3.4/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. 106 * If oldRoot was null, it's ok, just return newRoot (even if isNil). 115 * Be advised that it's ok for newRoot to point at oldRoot's 120 function becomeRoot(newRoot:Object, oldRoot:Object):Object;
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
debug.py | 294 def becomeRoot(self, newRoot, oldRoot): 297 self.adaptor.becomeRoot(n, oldRoot) 299 n = self.adaptor.becomeRoot(newRoot, oldRoot) 301 self.dbg.becomeRoot(newRoot, oldRoot) 687 def becomeRoot(self, newRoot, oldRoot): 804 def becomeRoot(self, newRoot, oldRoot): 807 self.adaptor.getUniqueID(oldRoot))) 1092 def becomeRoot(self, newRoot, oldRoot): 1095 self.adaptor.getUniqueID(oldRoot))) [all...] |