Searched defs:getChildCount (Results 1 - 25 of 63) sorted by relevance

123

/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIAEnumDebugStreams.cpp21 uint32_t DIAEnumDebugStreams::getChildCount() const { function in class:DIAEnumDebugStreams
H A DDIAEnumLineNumbers.cpp21 uint32_t DIAEnumLineNumbers::getChildCount() const { function in class:DIAEnumLineNumbers
H A DDIAEnumSourceFiles.cpp21 uint32_t DIAEnumSourceFiles::getChildCount() const { function in class:DIAEnumSourceFiles
H A DDIAEnumSymbols.cpp22 uint32_t DIAEnumSymbols::getChildCount() const { function in class:DIAEnumSymbols
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.as60 var n:int = getChildCount(t);
194 public function getChildCount(t:Object):int { function
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3basetree.h105 ANTLR3_UINT32 (*getChildCount) (struct ANTLR3_BASE_TREE_struct * tree); member in struct:ANTLR3_BASE_TREE_struct
H A Dantlr3basetreeadaptor.h115 ANTLR3_UINT32 (*getChildCount) (struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, void *); member in struct:ANTLR3_BASE_TREE_ADAPTOR_struct
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonTreeAdaptor.java140 public int getChildCount(Object t) { method in class:CommonTreeAdaptor
142 return ((Tree)t).getChildCount();
H A DTree.java49 int getChildCount(); method in interface:Tree
H A DBaseTree.java76 public int getChildCount() { method in class:BaseTree
257 int n = getChildCount();
270 int n = getChildCount();
290 int n = this.getChildCount();
H A DBaseTreeAdaptor.java89 int n = getChildCount(t);
146 int nc = newRootTree.getChildCount();
165 if ( r.getChildCount()==0 ) {
168 else if ( r.getChildCount()==1 ) {
233 public int getChildCount(Object t) { method in class:BaseTreeAdaptor
234 return ((Tree)t).getChildCount();
H A DTreeAdaptor.java239 public int getChildCount(Object t); method in interface:TreeAdaptor
/external/emma/core/java12/com/vladium/emma/report/
H A DIItem.java27 int getChildCount (); method in interface:IItem
H A DItem.java29 public final int getChildCount () method in class:Item
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DNode.java71 /** convenience method for addChild (getChildCount (), child) */
74 addChild(getChildCount(), type, child);
103 public int getChildCount() { method in class:Node
159 int len = getChildCount();
201 int len = getChildCount();
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3basetree.c37 static ANTLR3_UINT32 getChildCount (pANTLR3_BASE_TREE tree);
62 tree->getChildCount = getChildCount;
131 getChildCount (pANTLR3_BASE_TREE tree) function
475 count = tree->getChildCount(tree); // How many children do we have
H A Dantlr3basetreeadaptor.c70 static ANTLR3_UINT32 getChildCount (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t);
144 adaptor->getChildCount = (ANTLR3_UINT32 (*)(pANTLR3_BASE_TREE_ADAPTOR, void *))
145 getChildCount;
177 nCount = adaptor->getChildCount(adaptor, t);
256 nCount = adaptor->getChildCount(adaptor, t);
485 n = adaptor->getChildCount (adaptor, t);
510 n = adaptor->getChildCount(adaptor, tree);
645 if (newRootTree->getChildCount(newRootTree) > 1)
715 if (root->getChildCount(root) == 0)
719 else if (root->getChildCount(roo
890 getChildCount (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE tree) function
[all...]
H A Dantlr3commontreeadaptor.c55 static ANTLR3_UINT32 getChildCount (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t);
134 cta->baseAdaptor.getChildCount = (ANTLR3_UINT32 (*) (pANTLR3_BASE_TREE_ADAPTOR, void *))
135 getChildCount;
471 getChildCount (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t) function
473 return t->getChildCount(t);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugTreeAdaptor.java88 int n = adaptor.getChildCount(t);
209 public int getChildCount(Object t) { method in class:DebugTreeAdaptor
210 return adaptor.getChildCount(t);
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DData.java143 int getChildCount(); method in interface:Data
H A DDefaultDataContext.java320 public int getChildCount() { method in class:DefaultDataContext.LocalVariable
H A DDelegatedData.java142 public int getChildCount() { method in class:DelegatedData
143 return getDelegate().getChildCount();
H A DNestedMapData.java283 public int getChildCount() { method in class:NestedMapData
339 if (sym.getChildCount() == 0) {
480 if (getChildCount() > 0) {
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowViewGroup.java90 int count = getChildCount();
100 public int getChildCount() { method in class:ShadowViewGroup
201 for (int i = 0; i < getChildCount(); i++) {
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowAccessibilityWindowInfo.java163 public int getChildCount() { method in class:ShadowAccessibilityWindowInfo

Completed in 337 milliseconds

123