Home
last modified time | relevance | path

Searched refs:resolveReference (Results 1 – 6 of 6) sorted by relevance

/external/jsoncpp/include/json/
Dvalue.h445 Value& resolveReference(const char* key, bool isStatic);
703 Value& resolveReference(const char* key, bool isStatic);
787 Value& resolveReference(ArrayIndex index);
/external/jsoncpp/src/lib_json/
Djson_value.cpp856 return value_.array_->resolveReference(index); in operator []()
893 return resolveReference(key, false); in operator []()
907 Value& Value::resolveReference(const char* key, bool isStatic) { in resolveReference() function in Json::Value
925 return value_.map_->resolveReference(key, isStatic); in resolveReference()
963 return resolveReference(key, true); in operator []()
Djson_internalarray.inl281 resolveReference(newSize);
316 Value& ValueInternalArray::resolveReference(ArrayIndex index) { function in Json::ValueInternalArray
Djson_internalmap.inl141 resolveReference(memberName, isStatic) = aValue;
227 Value& ValueInternalMap::resolveReference(const char* key, bool isStatic) { function in Json::ValueInternalMap
/external/protobuf/conformance/third_party/jsoncpp/
Djson.h950 Value& resolveReference(const char* key);
951 Value& resolveReference(const char* key, const char* end);
Djsoncpp.cpp3385 Value& Value::resolveReference(const char* key) { in resolveReference() function in Json::Value
3404 Value& Value::resolveReference(char const* key, char const* cend) in resolveReference() function in Json::Value
3455 return resolveReference(key, key + strlen(key)); in operator []()
3459 return resolveReference(key.data(), key.data() + key.length()); in operator []()
3463 return resolveReference(key.c_str()); in operator []()
3468 return resolveReference(key.c_str(), key.end_c_str()); in operator []()