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

1 2 3 4 5

  /external/chromium_org/ui/accessibility/platform/
ax_platform_node_delegate.h 27 virtual int GetChildCount() = 0;
29 // Get the child of a node from [0...GetChildCount() - 1]
ax_platform_node_base.cc 38 int AXPlatformNodeBase::GetChildCount() {
39 return delegate_ ? delegate_->GetChildCount() : 0;
ax_platform_node_base.h 25 int GetChildCount();
  /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) {
BaseTreeAdaptor.cs 99 int n = GetChildCount(t);
251 public virtual 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/chromium_org/ui/base/models/
tree_model.h 65 virtual int GetChildCount(TreeModelNode* parent) = 0;
  /external/chromium_org/ui/views/accessibility/
native_view_accessibility.h 36 virtual int GetChildCount() OVERRIDE;
native_view_accessibility.cc 60 int NativeViewAccessibility::GetChildCount() {
native_view_accessibility_unittest.cc 69 EXPECT_EQ(1, button_accessibility_->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 );

Completed in 279 milliseconds

1 2 3 4 5