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

1 2 3

  /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 );
BaseTreeAdaptor.cs 130 int n = GetChildCount( t );
332 public virtual int GetChildCount( object t )
  /external/chromium_org/ui/base/models/
tree_model.h 65 virtual int GetChildCount(TreeModelNode* parent) = 0;
tree_node_model_unittest.cc 101 EXPECT_EQ(1, model.GetChildCount(root));
108 EXPECT_EQ(0, model.GetChildCount(root));
tree_node_model.h 258 virtual int GetChildCount(TreeModelNode* parent) OVERRIDE {
  /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/chromium_org/chrome_frame/test/
chrome_frame_ui_test_utils.h 116 bool GetChildCount(int* child_count);
  /external/chromium_org/ui/views/controls/tree/
tree_view.cc 277 for (int i = model_->GetChildCount(node) - 1; i >= 0; --i) {
310 if (model_->GetChildCount(root_.model_node()))
442 to_select = model_->GetChildCount(parent) > 0 ?
631 model_->GetChildCount(node->model_node())) {
662 for (int i = 0, child_count = model_->GetChildCount(node->model_node());
751 if (model_->GetChildCount(node->model_node()))
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas 297 function GetChildCount(const T: IANTLRInterface): Integer;
441 function GetChildCount: Integer;
492 property ChildCount: Integer read GetChildCount;
    [all...]

Completed in 949 milliseconds

1 2 3