Searched defs:piValue (Results 1 - 2 of 2) sorted by relevance
/vbox/include/iprt/cpp/ |
H A D | xml.h | 734 bool getAttributeValue(const char *pcszMatch, int64_t *piValue, const char *pcszNamespace = NULL) const; 741 bool getElementValue(int32_t *piValue) const; 743 bool getElementValue(int64_t *piValue) const; 750 bool getChildElementValueP(const char *pcszPath, int32_t *piValue, const char *pcszNamespace = NULL) const argument 753 return pElem && pElem->getElementValue(piValue); 760 bool getChildElementValueP(const char *pcszPath, int64_t *piValue, const char *pcszNamespace = NULL) const argument 763 return pElem && pElem->getElementValue(piValue); 783 bool getChildElementValueDefP(const char *pcszPath, int32_t iDefault, int32_t *piValue, const char *pcszNamespace = NULL) const argument 787 return pElem->getElementValue(piValue); 788 *piValue 799 getChildElementValueDefP(const char *pcszPath, int64_t iDefault, int64_t *piValue, const char *pcszNamespace = NULL) const argument [all...] |
/vbox/src/VBox/Runtime/r3/ |
H A D | xml.cpp | 1042 * @param piValue Where to return the value. 1046 bool ElementNode::getAttributeValue(const char *pcszMatch, int32_t *piValue, const char *pcszNamespace /*= NULL*/) const argument 1051 int rc = RTStrToInt32Ex(pcsz, NULL, 0, piValue); 1084 * @param piValue Where to return the value. 1088 bool ElementNode::getAttributeValue(const char *pcszMatch, int64_t *piValue, const char *pcszNamespace /*= NULL*/) const argument 1093 int rc = RTStrToInt64Ex(pcsz, NULL, 0, piValue); 1158 bool ElementNode::getElementValue(int32_t *piValue) const 1163 int rc = RTStrToInt32Ex(pszValue, NULL, 0, piValue); 1182 bool ElementNode::getElementValue(int64_t *piValue) const 1187 int rc = RTStrToInt64Ex(pszValue, NULL, 0, piValue); [all...] |
Completed in 607 milliseconds