Searched refs:nullSingleton (Results 1 – 3 of 3) sorted by relevance
/third_party/jsoncpp/src/lib_json/ |
D | json_value.cpp | 70 Value const& Value::nullSingleton() { in nullSingleton() function in Json::Value 79 Value const& Value::null = Value::nullSingleton(); 82 Value const& Value::nullRef = Value::nullSingleton(); 936 ObjectValues::value_type defaultValue(key, nullSingleton()); in operator []() 953 return nullSingleton(); in operator []() 957 return nullSingleton(); in operator []() 1050 ObjectValues::value_type defaultValue(actualKey, nullSingleton()); in resolveReference() 1069 ObjectValues::value_type defaultValue(actualKey, nullSingleton()); in resolveReference() 1077 return value == &nullSingleton() ? defaultValue : *value; in get() 1104 return nullSingleton(); in operator []() [all …]
|
/third_party/jsoncpp/src/test_lib_json/ |
D | main.cpp | 385 root["array"] = Json::Value::nullSingleton(); in JSONTEST_FIXTURE_LOCAL() 474 JSONTEST_ASSERT_EQUAL(Json::Value::nullSingleton(), null_); in JSONTEST_FIXTURE_LOCAL() 1518 checkIsEqual(Json::Value::nullSingleton(), Json::Value())); in JSONTEST_FIXTURE_LOCAL() 1520 checkIsEqual(Json::Value::nullSingleton(), Json::Value::nullSingleton())); in JSONTEST_FIXTURE_LOCAL() 1934 "there", root.get(binary, Json::Value::nullSingleton()).asString()); in JSONTEST_FIXTURE_LOCAL() 1947 "", root.get(binary, Json::Value::nullSingleton()).asString()); in JSONTEST_FIXTURE_LOCAL()
|
/third_party/jsoncpp/include/json/ |
D | value.h | 220 static Value const& nullSingleton();
|