Lines Matching defs:const
295 bool Value::CZString::operator<(const CZString& other) const { in operator <() argument
312 bool Value::CZString::operator==(const CZString& other) const { in operator ==() argument
482 int Value::compare(const Value& other) const { in compare() argument
490 bool Value::operator<(const Value& other) const { in operator <() argument
540 bool Value::operator<=(const Value& other) const { return !(other < *this); } in operator <=() argument
542 bool Value::operator>=(const Value& other) const { return !(*this < other); } in operator >=() argument
544 bool Value::operator>(const Value& other) const { return other < *this; } in operator >() argument
546 bool Value::operator==(const Value& other) const { in operator ==() argument
588 bool Value::operator!=(const Value& other) const { return !(*this == other); } in operator !=() argument
616 bool Value::getString(char const** begin, char const** end) const { in getString()
825 bool Value::isConvertibleTo(ValueType other) const { in isConvertibleTo()
947 const Value& Value::operator[](ArrayIndex index) const { in operator []()
960 const Value& Value::operator[](int index) const { in operator []()
1074 Value Value::get(ArrayIndex index, const Value& defaultValue) const { in get() argument
1079 bool Value::isValidIndex(ArrayIndex index) const { return index < size(); } in isValidIndex()
1081 Value const* Value::find(char const* begin, char const* end) const { in find()
1100 const Value& Value::operator[](const char* key) const { in operator []() argument
1106 Value const& Value::operator[](const String& key) const { in operator []() argument
1155 Value const& defaultValue) const { in get()
1159 Value Value::get(char const* key, Value const& defaultValue) const { in get()
1162 Value Value::get(String const& key, Value const& defaultValue) const { in get()
1221 bool Value::isMember(char const* begin, char const* end) const { in isMember()
1225 bool Value::isMember(char const* key) const { in isMember()
1228 bool Value::isMember(String const& key) const { in isMember()
1389 bool Value::Comments::has(CommentPlacement slot) const { in has()
1393 String Value::Comments::get(CommentPlacement slot) const { in get()
1421 bool Value::hasComment(CommentPlacement placement) const { in hasComment()
1425 String Value::getComment(CommentPlacement placement) const { in getComment()
1574 const Value& Path::resolve(const Value& root) const { in resolve() argument
1599 Value Path::resolve(const Value& root, const Value& defaultValue) const { in resolve() argument
1617 Value& Path::make(Value& root) const { in make()