Searched refs:XMLNode (Results 1 – 5 of 5) sorted by relevance
31 public class XMLNode { class33 private final List<XMLNode> mChildren;34 private final XMLNode mParent;38 public XMLNode(XMLNode parent, String tag) { in XMLNode() method in XMLNode60 public void addChild(XMLNode child) { in addChild()78 public XMLNode getParent() { in getParent()86 public List<XMLNode> getChildren() { in getChildren()95 if (!(thatObject instanceof XMLNode)) { in equals()98 XMLNode that = (XMLNode) thatObject; in equals()
56 private XMLNode mRoot = null;57 private XMLNode mCurrent = null;59 public XMLNode parse(String text) throws IOException, SAXException { in parse()80 XMLNode parent = mCurrent; in startElement()82 mCurrent = new XMLNode(parent, qName); in startElement()
390 XMLNode root = null; in parseMoText()410 for (XMLNode child : root.getChildren()) { in parseMoText()461 private static PasspointConfiguration parsePpsNode(XMLNode node) in parsePpsNode()466 for (XMLNode child : node.getChildren()) { in parsePpsNode()525 private static String parseUrn(XMLNode node) throws ParsingException { in parseUrn()529 XMLNode typeNode = node.getChildren().get(0); in parseUrn()537 XMLNode ddfNameNode = typeNode.getChildren().get(0); in parseUrn()582 private static PPSNode buildPpsNode(XMLNode node) throws ParsingException { in buildPpsNode()589 for (XMLNode child : node.getChildren()) { in buildPpsNode()
21 import android.net.wifi.hotspot2.omadm.XMLNode;39 private static XMLNode createNode(XMLNode parent, String tag, String text) { in createNode()40 XMLNode node = new XMLNode(parent, tag); in createNode()77 XMLNode expectedRoot = createNode(null, "root", ""); in parseValidXMLTree()81 XMLNode actualRoot = mParser.parse(xmlTree); in parseValidXMLTree()
459 …tspot2/omadm/PpsMoParser;->buildPpsNode(Landroid/net/wifi/hotspot2/omadm/XMLNode;)Landroid/net/wif…552 …tspot2/omadm/PpsMoParser;->parsePpsNode(Landroid/net/wifi/hotspot2/omadm/XMLNode;)Landroid/net/wif…565 Landroid/net/wifi/hotspot2/omadm/PpsMoParser;->parseUrn(Landroid/net/wifi/hotspot2/omadm/XMLNode;)L…578 Landroid/net/wifi/hotspot2/omadm/XMLNode;-><init>(Landroid/net/wifi/hotspot2/omadm/XMLNode;Ljava/la…579 Landroid/net/wifi/hotspot2/omadm/XMLNode;->addChild(Landroid/net/wifi/hotspot2/omadm/XMLNode;)V580 Landroid/net/wifi/hotspot2/omadm/XMLNode;->addText(Ljava/lang/String;)V581 Landroid/net/wifi/hotspot2/omadm/XMLNode;->close()V582 Landroid/net/wifi/hotspot2/omadm/XMLNode;->getChildren()Ljava/util/List;583 Landroid/net/wifi/hotspot2/omadm/XMLNode;->getParent()Landroid/net/wifi/hotspot2/omadm/XMLNode;584 Landroid/net/wifi/hotspot2/omadm/XMLNode;->getTag()Ljava/lang/String;[all …]