Searched refs:removeMember (Results 1 – 8 of 8) sorted by relevance
/external/protobuf/conformance/third_party/jsoncpp/ |
D | json.h | 871 Value removeMember(const char* key); 875 Value removeMember(const std::string& key); 878 bool removeMember(const char* key, Value* removed); 885 bool removeMember(std::string const& key, Value* removed); 887 bool removeMember(const char* begin, const char* end, Value* removed);
|
D | jsoncpp.cpp | 3495 bool Value::removeMember(const char* key, const char* cend, Value* removed) in removeMember() function in Json::Value 3508 bool Value::removeMember(const char* key, Value* removed) in removeMember() function in Json::Value 3510 return removeMember(key, key + strlen(key), removed); in removeMember() 3512 bool Value::removeMember(std::string const& key, Value* removed) in removeMember() function in Json::Value 3514 return removeMember(key.data(), key.data() + key.length(), removed); in removeMember() 3516 Value Value::removeMember(const char* key) in removeMember() function in Json::Value 3524 removeMember(key, key + strlen(key), &removed); in removeMember() 3527 Value Value::removeMember(const std::string& key) in removeMember() function in Json::Value 3529 return removeMember(key.c_str()); in removeMember()
|
/external/jsoncpp/include/json/ |
D | value.h | 394 Value removeMember(const char* key); 396 Value removeMember(const std::string& key);
|
/external/llvm/lib/Target/Hexagon/ |
D | RDFDeadCode.cpp | 222 BA.Addr->removeMember(IA, DFG); in erase()
|
D | RDFGraph.h | 557 void removeMember(NodeAddr<NodeBase*> NA, const DataFlowGraph &G); 783 IA.Addr->removeMember(RA, *this); in removeFromOwner()
|
D | RDFGraph.cpp | 465 void CodeNode::removeMember(NodeAddr<NodeBase*> NA, const DataFlowGraph &G) { in removeMember() function in CodeNode 1484 BA.Addr->removeMember(PA, *this); in removeUnusedPhis()
|
/external/jsoncpp/src/lib_json/ |
D | json_value.cpp | 987 Value Value::removeMember(const char* key) { in removeMember() function in Json::Value 1012 Value Value::removeMember(const std::string& key) { in removeMember() function in Json::Value 1013 return removeMember(key.c_str()); in removeMember()
|
/external/jsoncpp/src/test_lib_json/ |
D | main.cpp | 1429 JSONTEST_ASSERT_THROWS(intVal.removeMember("test")); in JSONTEST_FIXTURE() 1430 JSONTEST_ASSERT_THROWS(strVal.removeMember("test")); in JSONTEST_FIXTURE() 1431 JSONTEST_ASSERT_THROWS(arrVal.removeMember("test")); in JSONTEST_FIXTURE()
|