Searched defs:AttributeNode (Results 1 - 2 of 2) sorted by relevance

/vbox/include/iprt/cpp/
H A Dxml.h381 class AttributeNode;
388 * Cannot be used directly, but ElementNode, ContentNode and AttributeNode
430 /** Is this an AttributeNode instance.
509 friend class AttributeNode;
524 class RT_DECL_CLASS AttributeNode : public Node class in namespace:xml
530 AttributeNode(const ElementNode *pElmRoot,
534 AttributeNode(const AttributeNode &x); // no copying
694 const AttributeNode *findAttribute(const char *pcszMatch, const char *pcszNamespace = NULL) const;
704 const AttributeNode *pAtt
[all...]
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp743 AttributeNode *pNew = new AttributeNode(pElmRoot, pCur, &pCur->m_attributes, pLibAttr);
829 const AttributeNode *pAttr = pElm->findAttribute("id");
961 const AttributeNode *ElementNode::findAttribute(const char *pcszMatch, const char *pcszNamespace /*= NULL*/) const
963 AttributeNode *p;
964 RTListForEachCpp(&m_attributes, p, AttributeNode, m_listEntry)
983 const AttributeNode *pAttr = findAttribute(pcszMatch, pcszNamespace);
1006 const AttributeNode *pAttr = findAttribute(pcszMatch, pcszNamespace);
1293 AttributeNode *ElementNode::setAttribute(const char *pcszName, const char *pcszValue)
1298 AttributeNode *pAtt
1461 AttributeNode::AttributeNode(const ElementNode *pElmRoot, function in class:xml::AttributeNode
[all...]

Completed in 278 milliseconds