Searched refs:strAttributeValue (Results 1 – 1 of 1) sorted by relevance
110 string strAttributeValue(getAttributeString(strAttributeName)); in getAttributeBoolean() local112 return strAttributeValue == "true" || strAttributeValue == "1"; in getAttributeBoolean()117 string strAttributeValue(getAttributeString(strAttributeName)); in getAttributeInteger() local119 return strtoul(strAttributeValue.c_str(), NULL, 0); in getAttributeInteger()124 string strAttributeValue(getAttributeString(strAttributeName)); in getAttributeSignedInteger() local126 return strtol(strAttributeValue.c_str(), NULL, 0); in getAttributeSignedInteger()131 string strAttributeValue(getAttributeString(strAttributeName)); in getAttributeDouble() local133 return strtod(strAttributeValue.c_str(), NULL); in getAttributeDouble()