Lines Matching refs:defaultValue

1532 int XMLElement::IntAttribute(const char* name, int defaultValue) const  in IntAttribute()
1534 int i = defaultValue; in IntAttribute()
1539 unsigned XMLElement::UnsignedAttribute(const char* name, unsigned defaultValue) const in UnsignedAttribute()
1541 unsigned i = defaultValue; in UnsignedAttribute()
1546 int64_t XMLElement::Int64Attribute(const char* name, int64_t defaultValue) const in Int64Attribute()
1548 int64_t i = defaultValue; in Int64Attribute()
1553 bool XMLElement::BoolAttribute(const char* name, bool defaultValue) const in BoolAttribute()
1555 bool b = defaultValue; in BoolAttribute()
1560 double XMLElement::DoubleAttribute(const char* name, double defaultValue) const in DoubleAttribute()
1562 double d = defaultValue; in DoubleAttribute()
1567 float XMLElement::FloatAttribute(const char* name, float defaultValue) const in FloatAttribute()
1569 float f = defaultValue; in FloatAttribute()
1719 int XMLElement::IntText(int defaultValue) const in IntText()
1721 int i = defaultValue; in IntText()
1726 unsigned XMLElement::UnsignedText(unsigned defaultValue) const in UnsignedText()
1728 unsigned i = defaultValue; in UnsignedText()
1733 int64_t XMLElement::Int64Text(int64_t defaultValue) const in Int64Text()
1735 int64_t i = defaultValue; in Int64Text()
1740 bool XMLElement::BoolText(bool defaultValue) const in BoolText()
1742 bool b = defaultValue; in BoolText()
1747 double XMLElement::DoubleText(double defaultValue) const in DoubleText()
1749 double d = defaultValue; in DoubleText()
1754 float XMLElement::FloatText(float defaultValue) const in FloatText()
1756 float f = defaultValue; in FloatText()