Home
last modified time | relevance | path

Searched refs:DeleteChild (Results 1 – 14 of 14) sorted by relevance

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DBaseTreeAdaptor.cs247 public virtual object DeleteChild(object t, int i) { in DeleteChild() method in Antlr.Runtime.Tree.BaseTreeAdaptor
248 return ((ITree)t).DeleteChild(i); in DeleteChild()
DITree.cs97 object DeleteChild(int i); in DeleteChild() method
DITreeAdaptor.cs289 object DeleteChild(object t, int i); in DeleteChild() method
DBaseTree.cs241 public virtual object DeleteChild(int i) { in DeleteChild() method in Antlr.Runtime.Tree.BaseTree
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DITree.cs102 object DeleteChild( int i ); in DeleteChild() method
DBaseTreeAdaptor.cs327 public virtual object DeleteChild( object t, int i ) in DeleteChild() method in Antlr.Runtime.Tree.BaseTreeAdaptor
329 return ( (ITree)t ).DeleteChild( i ); in DeleteChild()
DITreeAdaptor.cs309 object DeleteChild( object t, int i ); in DeleteChild() method
DBaseTree.cs289 public virtual object DeleteChild( int i ) in DeleteChild() method in Antlr.Runtime.Tree.BaseTree
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugTreeAdaptor.cs209 public virtual object DeleteChild(object t, int i) { in DeleteChild() method in Antlr.Runtime.Debug.DebugTreeAdaptor
210 return DeleteChild(t, i); in DeleteChild()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugTreeAdaptor.cs270 public virtual object DeleteChild( object t, int i ) in DeleteChild() method in Antlr.Runtime.Debug.DebugTreeAdaptor
272 return DeleteChild( t, i ); in DeleteChild()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
DITreeAdaptor`1.cs277 T DeleteChild(T t, int i); in DeleteChild() method
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Tree.pas294 function DeleteChild(const T: IANTLRInterface; const I: Integer): IANTLRInterface;
473 function DeleteChild(const I: Integer): IANTLRInterface;
1156 function DeleteChild(const I: Integer): IANTLRInterface;
1297 function DeleteChild(const T: IANTLRInterface; const I: Integer): IANTLRInterface; virtual; in DeleteChild() function
2199 function TBaseTree.DeleteChild(const I: Integer): IANTLRInterface; in DeleteChild() function
2756 function TBaseTreeAdaptor.DeleteChild(const T: IANTLRInterface; in DeleteChild() function
2759 Result := (T as ITree).DeleteChild(I);
/external/tinyxml2/
Dtinyxml2.h538 void DeleteChild( XMLNode* node );
1163 void DeleteNode( XMLNode* node ) { node->parent->DeleteChild( node ); } in DeleteNode()
Dtinyxml2.cpp600 void XMLNode::DeleteChild( XMLNode* node ) in DeleteChild() function in XMLNode