Home
last modified time | relevance | path

Searched refs:childName (Results 1 – 10 of 10) sorted by relevance

/external/emma/core/java12/com/vladium/util/
DIPathEnumerator.java168 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/
DDotTreeGenerator.cs171 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/
DDOTTreeGenerator.cs161 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/
DDotTreeGenerator.cs171 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/
Ddottreegen.py144 childName = "n%d" % self.getNodeNumber(child)
147 edgeST.setAttribute("child", childName)
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DParseRDF.java991 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()
DXMPNode.java897 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 + "'",
DXMPNodeUtils.java147 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/
DDOTTreeGenerator.java173 String childName = "n"+getNodeNumber(child); in toDOTDefineEdges() local
176 edgeST.setAttribute("child", childName); in toDOTDefineEdges()
/external/parameter-framework/upstream/tools/coverage/
Dcoverage.py105 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)