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

/vbox/include/iprt/cpp/
H A Dxml.h555 int getChildElements(ElementNodesList &children, const char *pcszMatch = NULL) const;
557 const ElementNode *findChildElementNS(const char *pcszNamespace, const char *pcszMatch) const;
558 const ElementNode *findChildElement(const char *pcszMatch) const
560 return findChildElementNS(NULL, pcszMatch);
694 const AttributeNode *findAttribute(const char *pcszMatch, const char *pcszNamespace = NULL) const;
710 bool getAttributeValue(const char *pcszMatch, const char *&pcsz, const char *pcszNamespace = NULL) const argument
711 { return getAttributeValue(pcszMatch, &pcsz, pcszNamespace); }
712 bool getAttributeValue(const char *pcszMatch, RTCString &str, const char *pcszNamespace = NULL) const argument
713 { return getAttributeValue(pcszMatch, &str, pcszNamespace); }
714 bool getAttributeValuePath(const char *pcszMatch, RTCStrin argument
716 getAttributeValue(const char *pcszMatch, int32_t &i, const char *pcszNamespace = NULL) const argument
718 getAttributeValue(const char *pcszMatch, uint32_t &i, const char *pcszNamespace = NULL) const argument
720 getAttributeValue(const char *pcszMatch, int64_t &i, const char *pcszNamespace = NULL) const argument
722 getAttributeValue(const char *pcszMatch, uint64_t &u, const char *pcszNamespace = NULL) const argument
724 getAttributeValue(const char *pcszMatch, bool &f, const char *pcszNamespace = NULL) const argument
[all...]
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp767 * match the given string; if pcszMatch is NULL, all direct child
770 * @param pcszMatch in: match string, or NULL to return all children.
774 const char *pcszMatch /*= NULL*/)
783 if ( !pcszMatch // ... the caller wants all nodes or ...
784 || !strcmp(pcszMatch, p->getName()) // ... the element name matches.
795 * Returns the first child element whose name matches pcszMatch.
798 * @param pcszMatch Element name to match.
801 const ElementNode *ElementNode::findChildElementNS(const char *pcszNamespace, const char *pcszMatch) const
809 if (pelm->nameEqualsNS(pcszNamespace, pcszMatch))
916 const ElementNode *ElementNode::findPrevSibilingElement(const char *pcszMatch, cons argument
935 findNextSibilingElement(const char *pcszMatch, const char *pcszNamespace ) const argument
961 findAttribute(const char *pcszMatch, const char *pcszNamespace ) const argument
981 getAttributeValue(const char *pcszMatch, const char **ppcsz, const char *pcszNamespace ) const argument
1004 getAttributeValue(const char *pcszMatch, RTCString *pStr, const char *pcszNamespace ) const argument
1026 getAttributeValuePath(const char *pcszMatch, RTCString *pStr, const char *pcszNamespace ) const argument
1046 getAttributeValue(const char *pcszMatch, int32_t *piValue, const char *pcszNamespace ) const argument
1067 getAttributeValue(const char *pcszMatch, uint32_t *puValue, const char *pcszNamespace ) const argument
1088 getAttributeValue(const char *pcszMatch, int64_t *piValue, const char *pcszNamespace ) const argument
1109 getAttributeValue(const char *pcszMatch, uint64_t *puValue, const char *pcszNamespace ) const argument
1131 getAttributeValue(const char *pcszMatch, bool *pfValue, const char *pcszNamespace ) const argument
[all...]

Completed in 56 milliseconds