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

1 2

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
TreeExtensions.cs 41 return tree.Parent.GetChild( tree.ChildIndex + 1 );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammarHelper.cs 68 : 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 );
ProfileTreeGrammarHelper.cs 68 : 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/
ITree.cs 52 ITree GetChild(int i);
TreeVisitor.cs 68 object child = adaptor.GetChild(t, i);
BaseTreeAdaptor.cs 101 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) {
240 return ((ITree)t).GetChild(i);
CommonTreeAdaptor.cs 174 public override object GetChild(object t, int i) {
178 return ((ITree)t).GetChild(i);
TreeIterator.cs 109 tree = adaptor.GetChild(tree, 0);
132 tree = adaptor.GetChild(parent, nextSiblingIndex);
RewriteRuleSubtreeStream.cs 81 tree = adaptor.GetChild(tree, 0);
BaseTree.cs 141 public virtual ITree GetChild(int i) {
189 ITree c = t.GetChild(i);
295 newChildren.Add(newTree.GetChild(i));
354 ITree child = GetChild(c);
373 BaseTree child = (BaseTree)this.GetChild(c);
TreeWizard.cs 235 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);
DotTreeGenerator.cs 143 object child = adaptor.GetChild( tree, i );
169 object child = adaptor.GetChild( tree, i );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITree.cs 54 ITree GetChild( int i );
TreeVisitor.cs 70 object child = adaptor.GetChild( t, i );
TreeIterator.cs 128 tree = adaptor.GetChild( tree, 0 );
157 tree = adaptor.GetChild( parent, nextSiblingIndex );
RewriteRuleSubtreeStream.cs 88 tree = adaptor.GetChild(tree, 0);
BaseTree.cs 169 public virtual ITree GetChild( int i )
227 ITree c = t.GetChild( i );
350 newChildren.Add( newTree.GetChild( i ) );
425 ITree child = GetChild( c );
449 BaseTree child = (BaseTree)this.GetChild( c );
BaseTreeAdaptor.cs 133 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 )
314 return tree.GetChild(i);
TreeWizard.cs 267 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 );
DotTreeGenerator.cs 143 object child = adaptor.GetChild( tree, i );
169 object child = adaptor.GetChild( tree, i );
  /external/v8/test/cctest/
test-cpu-profiler.cc 442 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,
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(env->GetIsolate(), startNode, "foo")
    [all...]
  /system/extras/ext4_utils/
unencrypted_properties.h 37 UnencryptedProperties GetChild(const char* name) const;
  /system/vold/
Ext4Crypt.cpp 183 UnencryptedProperties key_props = GetProps(path).GetChild(properties::key);
229 auto key_props = GetProps(path).GetChild(properties::key);
270 auto key_props = GetPropsOrAltProps(path).GetChild(properties::key);
300 auto key_props = props.GetChild(properties::key);
416 return GetPropsOrAltProps(path).GetChild(properties::key)
455 auto v = GetPropsOrAltProps(path).GetChild(properties::props)
473 return GetPropsOrAltProps(path).GetChild(properties::props)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 136 object child = adaptor.GetChild(tree, i);
159 object child = adaptor.GetChild(tree, i);
  /external/v8/include/
v8-profiler.h 66 const CpuProfileNode* GetChild(int index) const;
265 const HeapGraphEdge* GetChild(int index) const;

Completed in 380 milliseconds

1 2