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

/vbox/include/iprt/cpp/
H A Dxml.h745 bool getElementValue(bool *pfValue) const;
770 bool getChildElementValueP(const char *pcszPath, bool *pfValue, const char *pcszNamespace = NULL) const argument
773 return pElem && pElem->getElementValue(pfValue);
815 bool getChildElementValueDefP(const char *pcszPath, bool fDefault, bool *pfValue, const char *pcszNamespace = NULL) const argument
819 return pElem->getElementValue(pfValue);
820 *pfValue = fDefault;
/vbox/src/VBox/Runtime/r3/
H A Dxml.cpp1127 * @param pfValue Where to return the value.
1131 bool ElementNode::getAttributeValue(const char *pcszMatch, bool *pfValue, const char *pcszNamespace /*= NULL*/) const argument
1141 *pfValue = true;
1149 *pfValue = false;
1206 bool ElementNode::getElementValue(bool *pfValue) const
1216 *pfValue = true;
1224 *pfValue = true;

Completed in 50 milliseconds