Home
last modified time | relevance | path

Searched refs:JsonObjectRef (Results 1 – 2 of 2) sorted by relevance

/development/vndk/tools/header-checker/src/repr/json/
Dir_reader.h32 class JsonObjectRef {
35 JsonObjectRef(const Json::Value &json_value, bool &ok);
53 JsonObjectRef GetObject(const std::string &key) const;
56 JsonArrayRef<JsonObjectRef> GetObjects(const std::string &key) const;
110 JsonObjectRef JsonArrayRef<JsonObjectRef>::Iterator::operator*() const;
122 void ReadFunctions(const JsonObjectRef &tu);
124 void ReadGlobalVariables(const JsonObjectRef &tu);
126 void ReadEnumTypes(const JsonObjectRef &tu);
128 void ReadRecordTypes(const JsonObjectRef &tu);
130 void ReadFunctionTypes(const JsonObjectRef &tu);
[all …]
Dir_reader.cpp53 JsonObjectRef::JsonObjectRef(const Json::Value &json_value, bool &ok) in JsonObjectRef() function in header_checker::repr::JsonObjectRef
61 JsonObjectRef::Get(const std::string &key, const Json::Value &default_value, in Get()
74 bool JsonObjectRef::GetBool(const std::string &key) const { in GetBool()
78 int64_t JsonObjectRef::GetInt(const std::string &key) const { in GetInt()
82 uint64_t JsonObjectRef::GetUint(const std::string &key) const { in GetUint()
86 std::string JsonObjectRef::GetString(const std::string &key) const { in GetString()
90 JsonObjectRef JsonObjectRef::GetObject(const std::string &key) const { in GetObject()
91 return JsonObjectRef(Get(key, json_empty_object, &Json::Value::isObject), in GetObject()
95 JsonArrayRef<JsonObjectRef>
96 JsonObjectRef::GetObjects(const std::string &key) const { in GetObjects()
[all …]