Searched refs:object (Results 1 - 4 of 4) sorted by relevance
| /ide/tools/previewer/test/fuzztest/ |
| H A D | ChangeJsonUtil.h | 28 static void ModifyObject(cJSON *object, uint64_t& idx); 29 static void ModifyObject4ChangeType(cJSON *object, uint64_t& idx); 30 static void WriteFile(std::string filePath, cJSON *object);
|
| H A D | ChangeJsonUtil.cpp | 31 void ChangeJsonUtil::ModifyObject(cJSON *object, uint64_t& idx) in ModifyObject() argument 33 if (!object) { in ModifyObject() 37 cJSON_ArrayForEach(item, object) { in ModifyObject() 80 void ChangeJsonUtil::ModifyObject4ChangeType(cJSON *object, uint64_t& idx) in ModifyObject4ChangeType() argument 82 if (!object) { in ModifyObject4ChangeType() 86 cJSON_ArrayForEach(item, object) { in ModifyObject4ChangeType() 125 void ChangeJsonUtil::WriteFile(std::string filePath, cJSON *object) in WriteFile() argument 127 // Check if cJSON object is valid in WriteFile() 128 if (object == nullptr) { in WriteFile() 129 std::cerr << "Error: cJSON object i in WriteFile() [all...] |
| /ide/tools/previewer/util/ |
| H A D | JsonReader.h | 32 explicit Value(cJSON* object); 33 Value(cJSON* object, bool isRoot); 112 // empty object
|
| H A D | JsonReader.cpp | 26 Value::Value(cJSON* object) : jsonPtr(object), rootNode(true) {} in Value() argument 28 Value::Value(cJSON* object, bool isRoot) : jsonPtr(object), rootNode(isRoot) {} in Value() argument
|
Completed in 2 milliseconds