HomeSort by relevance Sort by last modified time
    Searched refs:JsonObjectRef (Results 1 - 2 of 2) sorted by null

  /development/vndk/tools/header-checker/src/repr/json/
ir_reader.h 32 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)
    [all...]
ir_reader.cpp 53 JsonObjectRef::JsonObjectRef(const Json::Value &json_value, bool &ok)
61 JsonObjectRef::Get(const std::string &key, const Json::Value &default_value,
74 bool JsonObjectRef::GetBool(const std::string &key) const {
78 int64_t JsonObjectRef::GetInt(const std::string &key) const {
82 uint64_t JsonObjectRef::GetUint(const std::string &key) const {
86 std::string JsonObjectRef::GetString(const std::string &key) const {
90 JsonObjectRef JsonObjectRef::GetObject(const std::string &key) const {
91 return JsonObjectRef(Get(key, json_empty_object, &Json::Value::isObject)
    [all...]

Completed in 100 milliseconds