Searched refs:childName (Results 1 – 10 of 10) sorted by relevance
/external/emma/core/java12/com/vladium/util/ |
D | IPathEnumerator.java | 168 final String childName = children [c]; in enumeratePathDir() local 170 … final File child = dir != null ? new File (dir, childName) : new File (childName); in enumeratePathDir() 171 final File fullChild = new File (fullDir, childName); in enumeratePathDir()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | DotTreeGenerator.cs | 171 string childName = "n" + GetNodeNumber( child ); in DefineEdges() 172 …yield return string.Format( EdgeFormat, parentName, childName, FixString( parentText ), FixString(… in DefineEdges()
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/ |
D | DOTTreeGenerator.cs | 161 string childName = "n" + GetNodeNumber(child); in DefineEdges() 162 …yield return string.Format(EdgeFormat, parentName, childName, FixString(parentText), FixString(chi… in DefineEdges()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
D | DotTreeGenerator.cs | 171 string childName = "n" + GetNodeNumber( child ); in DefineEdges() 172 …yield return string.Format( EdgeFormat, parentName, childName, FixString( parentText ), FixString(… in DefineEdges()
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | dottreegen.py | 144 childName = "n%d" % self.getNodeNumber(child) 147 edgeST.setAttribute("child", childName)
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | ParseRDF.java | 991 String childName; in addChildNode() local 1006 childName = prefix + xmlNode.getLocalName(); in addChildNode() 1030 if (registry.findAlias(childName) != null) in addChildNode() 1040 boolean isArrayItem = "rdf:li".equals(childName); in addChildNode() 1041 boolean isValueNode = "rdf:value".equals(childName); in addChildNode() 1045 childName, value, childOptions); in addChildNode()
|
D | XMPNode.java | 897 private void assertChildNotExisting(String childName) throws XMPException 899 if (!XMPConst.ARRAY_ITEM_NAME.equals(childName) && 900 findChildByName(childName) != null) 902 throw new XMPException("Duplicate property or field node '" + childName + "'",
|
D | XMPNodeUtils.java | 147 static XMPNode findChildNode(XMPNode parent, String childName, boolean createNodes) in findChildNode() argument 168 XMPNode childNode = parent.findChildByName(childName); in findChildNode() 173 childNode = new XMPNode(childName, options); in findChildNode()
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | DOTTreeGenerator.java | 173 String childName = "n"+getNodeNumber(child); in toDOTDefineEdges() local 176 edgeST.setAttribute("child", childName); in toDOTDefineEdges()
|
/external/parameter-framework/upstream/tools/coverage/ |
D | coverage.py | 105 def getChildFromName(self, childName): argument 109 if child.getName() == childName : 112 self.debug('Child "%s" not found' % childName, logging.ERROR) 119 raise ChildNotFoundError(self, childName) 266 childName = path.pop(0) 267 child = self.getChildFromName(childName)
|