Home
last modified time | relevance | path

Searched refs:strAttributeValue (Results 1 – 1 of 1) sorted by relevance

/external/parameter-framework/xmlserializer/
DXmlElement.cpp110 string strAttributeValue(getAttributeString(strAttributeName)); in getAttributeBoolean() local
112 return strAttributeValue == "true" || strAttributeValue == "1"; in getAttributeBoolean()
117 string strAttributeValue(getAttributeString(strAttributeName)); in getAttributeInteger() local
119 return strtoul(strAttributeValue.c_str(), NULL, 0); in getAttributeInteger()
124 string strAttributeValue(getAttributeString(strAttributeName)); in getAttributeSignedInteger() local
126 return strtol(strAttributeValue.c_str(), NULL, 0); in getAttributeSignedInteger()
131 string strAttributeValue(getAttributeString(strAttributeName)); in getAttributeDouble() local
133 return strtod(strAttributeValue.c_str(), NULL); in getAttributeDouble()