/external/doclava/src/com/google/doclava/ |
D | InfoBuilder.java | 383 parseFile((ParseTree) tree.getChild(i)); in parseFile() 394 ParseTree child = (ParseTree) tree.getChild(i); in buildPackage() 416 packageName.append(tree.getChild(j).toString()); in buildQualifiedName() 430 String part = tree.getChild(i).toString(); in buildImport() 633 ParseTree member = (ParseTree) child.getChild(0).getChild(0); in buildClassBody() 656 Object tmp = member.getChild(0); in buildClassBody() 665 Object tmp = member.getChild(0); in buildClassBody() 720 name = child.getChild(0).toString(); in buildFields() 725 ParseTree tmp = (ParseTree) child.getChild(j++); in buildFields() 733 tmp = (ParseTree) child.getChild(j++); in buildFields() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
D | ChainedData.java | 92 public Data getChild(String path) { in getChild() method in ChainedData 96 Data child = d.getChild(path); in getChild() 131 Data child = getChild(path); in createChild() 142 Data child = getChild(path); in getValue() 152 Data child = getChild(path); in getIntValue() 167 Data child = getChild(path); in getValue() 177 Data child = getChild(path); in getIntValue() 187 Data child = getChild(path); in getBooleanValue()
|
D | AbstractData.java | 52 Data child = getChild(path); in getValue() 68 Data child = getChild(path); in getIntValue() 94 return TypeConverter.asNumber(getChild(path)); in getIntValue() 102 return TypeConverter.asBoolean(getChild(path)); in getBooleanValue()
|
/external/clang/lib/Rewrite/ |
D | RewriteRope.cpp | 415 const RopePieceBTreeNode *getChild(unsigned i) const { in getChild() function in __anona82c88c50411::RopePieceBTreeInterior 419 RopePieceBTreeNode *getChild(unsigned i) { in getChild() function in __anona82c88c50411::RopePieceBTreeInterior 429 Size += getChild(i)->size(); in FullRecomputeSizeLocally() 477 for (; Offset >= ChildOffset+getChild(i)->size(); ++i) in split() 478 ChildOffset += getChild(i)->size(); in split() 485 if (RopePieceBTreeNode *RHS = getChild(i)->split(Offset-ChildOffset)) in split() 506 ChildOffs = size()-getChild(i)->size(); in insert() 508 for (; Offset > ChildOffs+getChild(i)->size(); ++i) in insert() 509 ChildOffs += getChild(i)->size(); in insert() 515 if (RopePieceBTreeNode *RHS = getChild(i)->insert(Offset-ChildOffs, R)) in insert() [all …]
|
D | DeltaTree.cpp | 141 const DeltaTreeNode *getChild(unsigned i) const { in getChild() function in __anonb8815fa70311::DeltaTreeInteriorNode 145 DeltaTreeNode *getChild(unsigned i) { in getChild() function in __anonb8815fa70311::DeltaTreeInteriorNode 171 NewFullDelta += IN->getChild(i)->getFullDelta(); in RecomputeFullDeltaLocally() 362 const DeltaTreeNode *IChild = IN->getChild(i); in VerifyTree() 373 assert(IN->getChild(i+1)->getValue(0).FileLoc > IVal.FileLoc); in VerifyTree() 377 FullDelta += IN->getChild(IN->getNumValuesUsed())->getFullDelta(); in VerifyTree() 432 Result += IN->getChild(i)->getFullDelta(); in getDeltaAt() 439 return Result+IN->getChild(NumValsGreater)->getFullDelta(); in getDeltaAt() 443 Node = IN->getChild(NumValsGreater); in getDeltaAt()
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
D | GrammarAST.java | 290 Tree child = getChild(0); in getLine() 305 Tree child = getChild(0); in getCharPositionInLine() 332 return (GrammarAST)getChild(getChildCount() - 1); in getLastChild() 336 return (GrammarAST)getParent().getChild(getChildIndex() + 1); in getNextSibling() 344 return (GrammarAST)parent.getChild(parent.getChildCount() - 1); in getLastSibling() 368 Tree child = root.getChild(i); in descendants() 377 Tree child = root.getChild(i); in descendants() 412 GrammarAST child = (GrammarAST)getChild(i); in _findAllType() 491 GrammarAST child = (GrammarAST)t.getChild(i); in getChildrenForDupTree() 521 GrammarAST child = (GrammarAST)t.getChild(i); in dupTree() [all …]
|
D | Strip.java | 86 if ( a.getChildCount()==2 ) action = (CommonTree)a.getChild(1); in rewrite() 87 else if ( a.getChildCount()==3 ) action = (CommonTree)a.getChild(2); in rewrite() 99 a = (CommonTree)a.getChild(0); in rewrite() 108 CommonTree ret = (CommonTree)a.getChild(0); in rewrite() 155 CommonTree child = (CommonTree)a.getChild(0); in rewrite() 165 CommonTree child = (CommonTree)a.getChild(0); in rewrite() 177 CommonTree child = (CommonTree)a.getChild(0); in rewrite() 180 CommonTree rew = (CommonTree)a.getChild(1); in rewrite() 212 CommonTree rule = (CommonTree)root.getChild(0); in ACTION()
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.js | 49 child = this.getChild(t, i); 109 newRootTree = newRootTree.getChild(0); 130 r = r.getChild(0); 180 getChild: function(t, i) { 181 return t.getChild(i);
|
/external/llvm/utils/TableGen/ |
D | CodeGenDAGPatterns.cpp | 687 FindDepVarsOf(N->getChild(i), DepMap); in FindDepVarsOf() 815 TreePatternNode *Child = P->getChild(i); in getPatternSize() 942 return N->getChild(OpNo); in getOperandNum() 1164 delete getChild(i); in ~TreePatternNode() 1242 getChild(0)->print(OS); in print() 1245 getChild(i)->print(OS); in print() 1292 if (!getChild(i)->isIsomorphicTo(N->getChild(i), DepVars)) in isIsomorphicTo() 1307 CChildren.push_back(getChild(i)->clone()); in clone() 1323 getChild(i)->RemoveAllTypes(); in RemoveAllTypes() 1334 TreePatternNode *Child = getChild(i); in SubstituteFormalArguments() [all …]
|
D | DAGISelMatcherGen.cpp | 297 PatternName += N->getChild(i)->getName(); in EmitOperatorMatchCode() 322 N->getChild(1)->isLeaf() && N->getChild(1)->getPredicateFns().empty() && in EmitOperatorMatchCode() 324 if (IntInit *II = dyn_cast<IntInit>(N->getChild(1)->getLeafValue())) { in EmitOperatorMatchCode() 340 EmitMatchCode(N->getChild(0), NodeNoTypes->getChild(0)); in EmitOperatorMatchCode() 441 EmitMatchCode(N->getChild(i), NodeNoTypes->getChild(i)); in EmitOperatorMatchCode() 537 NamedComplexPatternOperands[N->getChild(i)->getName()] = CurOp + 1; in EmitMatcherCode() 538 CurOp += N->getChild(i)->getNumMIResults(CGP); in EmitMatcherCode() 677 InstPatNode = InstPatNode->getChild(InstPatNode->getNumChildren()-1); in GetInstPatternNode() 706 Count += numNodesThatMayLoadOrStore(N->getChild(i), CGP); in numNodesThatMayLoadOrStore() 799 const TreePatternNode *Child = N->getChild(ChildNo); in EmitResultInstructionAsOperand() [all …]
|
/external/parameter-framework/parameter/ |
D | SelectionCriteria.cpp | 79 return static_cast<CSelectionCriterionLibrary*>(getChild(ESelectionCriterionLibrary)); in getSelectionCriterionLibrary() 84 return static_cast<CSelectionCriteriaDefinition*>(getChild(ESelectionCriteriaDefinition)); in getSelectionCriteriaDefinition() 89 return static_cast<const CSelectionCriteriaDefinition*>(getChild(ESelectionCriteriaDefinition)); in getSelectionCriteriaDefinition()
|
D | EnumParameterType.cpp | 72 const CEnumValuePair* pValuePair = static_cast<const CEnumValuePair*>(getChild(uiChild)); in showProperties() 271 return static_cast<const CEnumValuePair*>(getChild(0))->getNumerical(); in getDefaultValue() 290 const CEnumValuePair* pValuePair = static_cast<const CEnumValuePair*>(getChild(uiChild)); in getLiteral() 310 const CEnumValuePair* pValuePair = static_cast<const CEnumValuePair*>(getChild(uiChild)); in getNumerical() 332 const CEnumValuePair* pValuePair = static_cast<const CEnumValuePair*>(getChild(uiChild)); in isValid()
|
D | ConfigurableDomain.cpp | 198 …ration* pDomainConfiguration = static_cast<const CDomainConfiguration*>(getChild(uiChildConfigurat… in composeSettings() 482 …dConfigurableElement = static_cast<CConfigurableElement*>(pConfigurableElement->getChild(uiChild)); in split() 492 …CDomainConfiguration* pDomainConfiguration = static_cast<CDomainConfiguration*>(getChild(uiChild)); in split() 841 …CDomainConfiguration* pDomainConfiguration = static_cast<CDomainConfiguration*>(getChild(uiChild)); in validate() 858 …CDomainConfiguration* pDomainConfiguration = static_cast<CDomainConfiguration*>(getChild(uiChild)); in validateAreas() 898 …CDomainConfiguration* pDomainConfiguration = static_cast<CDomainConfiguration*>(getChild(uiChild)); in autoValidateAreas() 916 …PotententialValidDomainConfiguration = static_cast<const CDomainConfiguration*>(getChild(uiChild)); in autoValidateConfiguration() 937 …nConfiguration* pDomainConfiguration = static_cast<const CDomainConfiguration*>(getChild(uiChild)); in findValidDomainConfiguration() 955 …nConfiguration* pDomainConfiguration = static_cast<const CDomainConfiguration*>(getChild(uiChild)); in findApplicableDomainConfiguration() 1031 …CDomainConfiguration* pDomainConfiguration = static_cast<CDomainConfiguration*>(getChild(uiChild)); in mergeConfigurations() [all …]
|
D | ConfigurableElement.cpp | 66 …leElement* pChildConfigurableElement = static_cast<const CConfigurableElement*>(getChild(uiIndex)); in serializeXmlSettings() 112 …leElement* pChildConfigurableElement = static_cast<const CConfigurableElement*>(getChild(uiIndex)); in serializeXmlSettings() 183 …gurableElement* pConfigurableElement = static_cast<const CConfigurableElement*>(getChild(uiIndex)); in setDefaultValues() 209 …CConfigurableElement* pConfigurableElement = static_cast<CConfigurableElement*>(getChild(uiIndex)); in setOffset() 231 …gurableElement* pConfigurableElement = static_cast<const CConfigurableElement*>(getChild(uiIndex)); in getFootPrint() 279 …gurableElement* pConfigurableElement = static_cast<const CConfigurableElement*>(getChild(uiIndex)); in fillSyncerSetFromDescendant()
|
D | BinarySerializableElement.cpp | 49 … CBinarySerializableElement* pChild = static_cast<CBinarySerializableElement*>(getChild(uiChild)); in binarySerialize() 65 …arySerializableElement* pChild = static_cast<const CBinarySerializableElement*>(getChild(uiChild)); in getDataSize()
|
D | ConfigurableDomains.cpp | 64 …CConfigurableDomain* pChildConfigurableDomain = static_cast<CConfigurableDomain*>(getChild(uiChild… in validate() 83 …rableDomain* pChildConfigurableDomain = static_cast<const CConfigurableDomain*>(getChild(uiChild)); in apply() 94 …rableDomain* pChildConfigurableDomain = static_cast<const CConfigurableDomain*>(getChild(uiChild)); in apply() 372 …rableDomain* pChildConfigurableDomain = static_cast<const CConfigurableDomain*>(getChild(uiChild)); in listDomains() 395 …rableDomain* pChildConfigurableDomain = static_cast<const CConfigurableDomain*>(getChild(uiChild)); in gatherAllOwnedConfigurableElements() 506 …rableDomain* pChildConfigurableDomain = static_cast<const CConfigurableDomain*>(getChild(uiChild)); in listLastAppliedConfigurations()
|
D | SelectionCriteriaDefinition.cpp | 72 …lectionCriterion* pSelectionCriterion = static_cast<const CSelectionCriterion*>(getChild(uiChild)); in listSelectionCriteria() 88 pSelectionCriterion = static_cast<CSelectionCriterion*>(getChild(uiChild)); in resetModifiedStatus()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | BaseTreeAdaptor.java | 91 Object child = getChild(t, i); in dupTree() 147 if ( nc==1 ) newRootTree = (Tree)newRootTree.getChild(0); in becomeRoot() 169 r = (Tree)r.getChild(0); in rulePostProcessing() 221 public Object getChild(Object t, int i) { in getChild() method in BaseTreeAdaptor 222 return ((Tree)t).getChild(i); in getChild()
|
D | TreeWizard.java | 194 Object child = adaptor.getChild(t, i); in _index() 263 Object child = adaptor.getChild(t, i); in _visit() 356 Object child1 = adaptor.getChild(t1, i); in _parse() 357 TreePattern child2 = (TreePattern)tpattern.getChild(i); in _parse() 424 Object child1 = adaptor.getChild(t1, i); in _equals() 425 Object child2 = adaptor.getChild(t2, i); in _equals()
|
D | TreeVisitor.java | 59 Object child = adaptor.getChild(t, i); in visit() 61 Object childAfterVisit = adaptor.getChild(t, i); in visit()
|
/external/jetty/src/java/org/eclipse/jetty/jmx/ |
D | MBeanContainer.java | 151 ObjectName child = _beans.get(relationship.getChild()); in add() 154 addBean(relationship.getChild()); in add() 155 child = _beans.get(relationship.getChild()); in add() 179 ObjectName child = _beans.get(relationship.getChild()); in remove() 189 if (relationship.equals(r) || r.getChild()==null) in remove() 216 …relation.getContainer().update(relation.getParent(), relation.getChild(), null, relation.getRelati… in removeBean()
|
/external/antlr/antlr-3.4/runtime/C/src/ |
D | antlr3basetreeadaptor.c | 69 static pANTLR3_BASE_TREE getChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE t, ANTLR… 142 adaptor->getChild = (void * (*)(pANTLR3_BASE_TREE_ADAPTOR, void *, ANTLR3_UINT32)) in antlr3BaseTreeAdaptorInit() 143 getChild; in antlr3BaseTreeAdaptorInit() 195 child = adaptor->getChild(adaptor, t, i); in defineDotNodes() 278 child = adaptor->getChild(adaptor, t, i); in defineDotEdges() 489 child = adaptor->getChild (adaptor, t, i); in dupTreeTT() 513 child = adaptor->getChild(adaptor, tree, i); in simulateTreeConstruction() 657 newRootTree = newRootTree->getChild(newRootTree, 0); in becomeRoot() 721 root = root->getChild(root, 0); in rulePostProcessing() 883 getChild (pANTLR3_BASE_TREE_ADAPTOR adaptor, pANTLR3_BASE_TREE tree, ANTLR3_UINT32 i) in getChild() function
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | XMPNodeUtils.java | 513 nextNode = parentNode.getChild(index); in followXPathStep() 611 XMPNode currItem = arrayNode.getChild(index); in lookupFieldSelector() 621 XMPNode currField = currItem.getChild(f); in lookupFieldSelector() 676 XMPNode currItem = arrayNode.getChild(index); in lookupQualSelector() 713 XMPNode child = arrayNode.getChild(i); in normalizeLangArray() 730 arrayNode.getChild(2).setValue(child.getValue()); in normalizeLangArray() 887 return new Object[] { new Integer(XMPNodeUtils.CLT_FIRST_ITEM), arrayNode.getChild(1) }; in chooseLocalizedText() 911 XMPNode child = arrayNode.getChild(index); in lookupLanguageItem()
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/ |
D | VehicleControl.java | 123 Spatial wheelSpat = node.getChild(wheel.getWheelSpatial().getName()); in cloneForSpatial() 206 Geometry locGeom = (Geometry) debugNode.getChild("WheelLocationDebugShape" + i); in render() 207 Geometry dirGeom = (Geometry) debugNode.getChild("WheelDirectionDebugShape" + i); in render() 208 Geometry axleGeom = (Geometry) debugNode.getChild("WheelAxleDebugShape" + i); in render() 209 Geometry wheelGeom = (Geometry) debugNode.getChild("WheelRadiusDebugShape" + i); in render()
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/tree/ |
D | ANTLRCommonTreeTest.m | 188 …tEquals((NSInteger)[[parent getChild:0] getChildIndex], (NSInteger)0, @"Child index should be 0 wa… 189 STAssertEquals([[parent getChild:0] getParent], parent, @"Parent not set for child"); 213 STAssertEquals([newParent getChild:0], [parent getChild:0], @"Children did not match"); 264 STAssertEquals([newParent getChild:0], tree, @"Child was not the correct object."); 286 ANTLRCommonTree *child = [parent getChild:0]; 307 STAssertTrue([parent getChild:0] == tree, @"Trees don't match"); 310 ANTLRCommonTree *child = [parent getChild:0]; 494 STAssertEquals([parent2 getChild:0], child1, @"Child for parent 2 should have been from parent 1"); 509 STAssertTrue([parent getChild:0] == replacement, @"Children do not match"); 530 STAssertEquals([parent2 getChild:0], child1, @"Child for parent 2 should have been from parent 1"); [all …]
|