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

1 2 3 4 5

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeIterator.cs 93 if (adaptor.GetChildCount(tree) == 0) {
108 if (adaptor.GetChildCount(tree) > 0) {
117 adaptor.GetChildIndex(tree) + 1 >= adaptor.GetChildCount(parent)) {
TreeVisitor.cs 66 for (int i = 0; i < adaptor.GetChildCount(t); i++)
RewriteRuleSubtreeStream.cs 80 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1)
DotTreeGenerator.cs 129 int n = adaptor.GetChildCount( tree );
155 int n = adaptor.GetChildCount( tree );
ITreeAdaptor.cs 292 int GetChildCount(object t);
TreeWizard.cs 233 int n = adaptor.GetChildCount(t);
323 int n = adaptor.GetChildCount(t);
435 int n1 = adaptor.GetChildCount(t1);
514 int n1 = adaptor.GetChildCount(t1);
515 int n2 = adaptor.GetChildCount(t2);
CommonTreeAdaptor.cs 181 public override int GetChildCount(object t) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeIterator.cs 102 if ( adaptor.GetChildCount( tree ) == 0 )
126 if ( adaptor.GetChildCount( tree ) > 0 )
138 adaptor.GetChildIndex( tree ) + 1 >= adaptor.GetChildCount( parent ) )
TreeVisitor.cs 68 for ( int i = 0; i < adaptor.GetChildCount(t); i++ )
RewriteRuleSubtreeStream.cs 87 while (adaptor.IsNil(tree) && adaptor.GetChildCount(tree) == 1)
DotTreeGenerator.cs 129 int n = adaptor.GetChildCount( tree );
155 int n = adaptor.GetChildCount( tree );
TreeWizard.cs 264 int n = adaptor.GetChildCount( t );
372 int n = adaptor.GetChildCount( t );
499 int n1 = adaptor.GetChildCount( t1 );
588 int n1 = adaptor.GetChildCount( t1 );
589 int n2 = adaptor.GetChildCount( t2 );
ITreeAdaptor.cs 312 int GetChildCount( object t );
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/
b2EdgeShape.h 38 /// @see b2Shape::GetChildCount
39 int32 GetChildCount() const;
b2Shape.h 65 virtual int32 GetChildCount() const = 0;
b2ChainShape.h 64 /// @see b2Shape::GetChildCount
65 int32 GetChildCount() const;
b2CircleShape.h 33 /// @see b2Shape::GetChildCount
34 int32 GetChildCount() const;
b2PolygonShape.h 36 /// @see b2Shape::GetChildCount
37 int32 GetChildCount() const;
b2CircleShape.cpp 31 int32 b2CircleShape::GetChildCount() const
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/
com.badlogic.gdx.physics.box2d.Shape.cpp 62 return shape->GetChildCount();
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 124 int n = adaptor.GetChildCount(tree);
147 int n = adaptor.GetChildCount(tree);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 280 int GetChildCount(T t);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 92 int n = adaptor.GetChildCount(t);
213 public virtual int GetChildCount(object t) {
214 return adaptor.GetChildCount(t);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 101 int n = adaptor.GetChildCount( t );
275 public virtual int GetChildCount( object t )
277 return adaptor.GetChildCount( t );
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Dynamics/
b2Fixture.cpp 57 int32 childCount = m_shape->GetChildCount();
75 int32 childCount = m_shape->GetChildCount();
127 m_proxyCount = m_shape->GetChildCount();

Completed in 1269 milliseconds

1 2 3 4 5