Searched refs:GetChild (Results 1 - 25 of 43) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DTreeExtensions.cs41 return tree.Parent.GetChild( tree.ChildIndex + 1 );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammarHelper.cs68 : this( new CommonTreeNodeStream( function.GetChild( 2 ) ), functionDefinitions )
71 localMemory[function.GetChild( 1 ).Text] = paramValue;
83 if ( f.GetChild( 0 ).Text.Equals( name ) )
86 CommonTree formalPar = (CommonTree)f.GetChild( 1 );
H A DProfileTreeGrammarHelper.cs68 : this( new CommonTreeNodeStream( function.GetChild( 2 ) ), functionDefinitions )
71 localMemory[function.GetChild( 1 ).Text] = paramValue;
83 if ( f.GetChild( 0 ).Text.Equals( name ) )
86 CommonTree formalPar = (CommonTree)f.GetChild( 1 );
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DITree.cs52 ITree GetChild(int i); method in interface:Antlr.Runtime.Tree.ITree
H A DBaseTreeAdaptor.cs101 object child = GetChild(t, i);
164 newRootTree = (ITree)newRootTree.GetChild(0);
185 r = (ITree)r.GetChild(0);
239 public virtual object GetChild(object t, int i) { method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
240 return ((ITree)t).GetChild(i);
H A DRewriteRuleSubtreeStream.cs81 tree = adaptor.GetChild(tree, 0);
H A DTreeVisitor.cs68 object child = adaptor.GetChild(t, i);
H A DCommonTreeAdaptor.cs174 public override object GetChild(object t, int i) { method in class:Antlr.Runtime.Tree.CommonTreeAdaptor
178 return ((ITree)t).GetChild(i);
H A DTreeIterator.cs109 tree = adaptor.GetChild(tree, 0);
132 tree = adaptor.GetChild(parent, nextSiblingIndex);
H A DBaseTree.cs141 public virtual ITree GetChild(int i) { method in class:Antlr.Runtime.Tree.BaseTree
189 ITree c = t.GetChild(i);
295 newChildren.Add(newTree.GetChild(i));
354 ITree child = GetChild(c);
373 BaseTree child = (BaseTree)this.GetChild(c);
H A DDotTreeGenerator.cs143 object child = adaptor.GetChild( tree, i );
169 object child = adaptor.GetChild( tree, i );
H A DITreeAdaptor.cs283 object GetChild(object t, int i); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
H A DTreeWizard.cs235 object child = adaptor.GetChild(t, i);
325 object child = adaptor.GetChild(t, i);
441 object child1 = adaptor.GetChild(t1, i);
442 TreePattern child2 = (TreePattern)tpattern.GetChild(i);
520 object child1 = adaptor.GetChild(t1, i);
521 object child2 = adaptor.GetChild(t2, i);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DITree.cs54 ITree GetChild( int i ); method in interface:Antlr.Runtime.Tree.ITree
H A DRewriteRuleSubtreeStream.cs88 tree = adaptor.GetChild(tree, 0);
H A DTreeVisitor.cs70 object child = adaptor.GetChild( t, i );
H A DTreeIterator.cs128 tree = adaptor.GetChild( tree, 0 );
157 tree = adaptor.GetChild( parent, nextSiblingIndex );
H A DBaseTree.cs169 public virtual ITree GetChild( int i ) method in class:Antlr.Runtime.Tree.BaseTree
227 ITree c = t.GetChild( i );
350 newChildren.Add( newTree.GetChild( i ) );
425 ITree child = GetChild( c );
449 BaseTree child = (BaseTree)this.GetChild( c );
H A DBaseTreeAdaptor.cs133 object child = GetChild( t, i );
201 newRootTree = (ITree)newRootTree.GetChild( 0 );
228 r = (ITree)r.GetChild( 0 );
308 public virtual object GetChild( object t, int i ) method in class:Antlr.Runtime.Tree.BaseTreeAdaptor
314 return tree.GetChild(i);
H A DDotTreeGenerator.cs143 object child = adaptor.GetChild( tree, i );
169 object child = adaptor.GetChild( tree, i );
H A DITreeAdaptor.cs303 object GetChild( object t, int i ); method in interface:Antlr.Runtime.Tree.ITreeAdaptor
H A DTreeWizard.cs267 object child = adaptor.GetChild( t, i );
375 object child = adaptor.GetChild( t, i );
507 object child1 = adaptor.GetChild( t1, i );
508 TreePattern child2 = (TreePattern)tpattern.GetChild( i );
596 object child1 = adaptor.GetChild( t1, i );
597 object child2 = adaptor.GetChild( t2, i );
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
H A DDOTTreeGenerator.cs136 object child = adaptor.GetChild(tree, i);
159 object child = adaptor.GetChild(tree, i);
/external/v8/test/cctest/
H A Dtest-cpu-profiler.cc442 v8::Handle<v8::String> name = node->GetChild(i)->GetFunctionName();
447 CHECK_NE(name, node->GetChild(j)->GetFunctionName());
459 const v8::CpuProfileNode* child = node->GetChild(i);
466 static const v8::CpuProfileNode* GetChild(v8::Isolate* isolate, function
473 "Failed to GetChild: %s", name);
485 node = GetChild(isolate, node, name);
569 GetChild(env->GetIsolate(), root, "start");
573 GetChild(env->GetIsolate(), startNode, "foo");
647 GetChild(env->GetIsolate(), root, "start");
650 GetChild(en
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
H A DITreeAdaptor`1.cs271 T GetChild(T t, int i); method in interface:Antlr.Runtime.Tree.ITreeAdaptor

Completed in 328 milliseconds

12