Lines Matching refs:Value

850 Json::Value ToJsonValue(const T& value);
853 inline Json::Value ToJsonValue(const T& value) { in ToJsonValue()
854 return Json::Value(static_cast<double>(value)); in ToJsonValue()
857 inline Json::Value ToJsonValue(const uint64_t& value) { in ToJsonValue()
860 return Json::Value(string); in ToJsonValue()
865 inline Json::Value ToJsonValue(const T& value) { in ToJsonValue()
866 return Json::Value(static_cast<double>(value)); in ToJsonValue()
870 inline Json::Value ArrayToJsonValue(uint32_t count, const T* values) { in ArrayToJsonValue()
871 Json::Value array(Json::arrayValue); in ArrayToJsonValue()
877 inline Json::Value ToJsonValue(const T (&value)[N]) { in ToJsonValue()
882 inline Json::Value ToJsonValue(const char (&value)[N]) { in ToJsonValue()
884 return Json::Value(value); in ToJsonValue()
888 inline Json::Value ToJsonValue(const std::vector<T>& value) { in ToJsonValue()
894 inline Json::Value ToJsonValue(const std::pair<F, S>& value) { in ToJsonValue()
895 Json::Value array(Json::arrayValue); in ToJsonValue()
902 inline Json::Value ToJsonValue(const std::map<F, S>& value) { in ToJsonValue()
903 Json::Value array(Json::arrayValue); in ToJsonValue()
926 Json::Value get_object() const { return object_; } in get_object()
929 Json::Value object_;
938 Json::Value ToJsonValue(const T& value) { in ToJsonValue()
945 bool AsValue(Json::Value* json_value, T* t);
947 inline bool AsValue(Json::Value* json_value, int32_t* value) { in AsValue()
958 inline bool AsValue(Json::Value* json_value, uint64_t* value) { in AsValue()
965 inline bool AsValue(Json::Value* json_value, uint32_t* value) { in AsValue()
975 inline bool AsValue(Json::Value* json_value, uint8_t* value) { in AsValue()
984 inline bool AsValue(Json::Value* json_value, float* value) { in AsValue()
991 inline bool AsArray(Json::Value* json_value, uint32_t count, T* values) { in AsArray()
1001 inline bool AsValue(Json::Value* json_value, T (*value)[N]) { in AsValue()
1006 inline bool AsValue(Json::Value* json_value, char (*value)[N]) { in AsValue()
1017 inline bool AsValue(Json::Value* json_value, T* t) { in AsValue()
1027 inline bool AsValue(Json::Value* json_value, std::vector<T>* value) { in AsValue()
1035 inline bool AsValue(Json::Value* json_value, std::pair<F, S>* value) { in AsValue()
1043 inline bool AsValue(Json::Value* json_value, std::map<F, S>* value) { in AsValue()
1056 bool ReadValue(Json::Value* object, const char* key, T* value, in ReadValue()
1058 Json::Value json_value = (*object)[key]; in ReadValue()
1077 JsonReaderVisitor(Json::Value* object, std::string* errors) in JsonReaderVisitor()
1088 Json::Value json_value = (*object_)[key]; in VisitArray()
1102 Json::Value* object_;
1107 bool AsValue(Json::Value* json_value, T* t) { in AsValue()
1124 Json::Value object(Json::objectValue); in VkTypeFromJson()