Lines Matching defs:string
24 #include <string.h>
818 char string[19] = {0}; // "0x" + 16 digits + terminal \0
819 snprintf(string, sizeof(string), "0x%016" PRIx64, value);
820 return Json::Value(string);
1017 std::string* errors) {
1021 *errors = std::string(key) + " missing.";
1026 *errors = std::string("Wrong type for ") + std::string(key) + ".";
1037 JsonReaderVisitor(Json::Value* object, std::string* errors)
1051 *errors_ = std::string(key) + " missing.";
1056 *errors_ = std::string("Wrong type for ") + std::string(key) + ".";
1063 std::string* errors_;
1074 template <typename T> std::string VkTypeToJson(const T& t) {
1080 template <typename T> bool VkTypeFromJson(const std::string& json,
1082 std::string* errors) {
1096 std::string VkJsonInstanceToJson(const VkJsonInstance& instance) {
1100 bool VkJsonInstanceFromJson(const std::string& json,
1102 std::string* errors) {
1106 std::string VkJsonDeviceToJson(const VkJsonDevice& device) {
1110 bool VkJsonDeviceFromJson(const std::string& json,
1112 std::string* errors) {
1116 std::string VkJsonImageFormatPropertiesToJson(
1121 bool VkJsonImageFormatPropertiesFromJson(const std::string& json,
1123 std::string* errors) {