Home
last modified time | relevance | path

Searched refs:removeMember (Results 1 – 8 of 8) sorted by relevance

/external/protobuf/conformance/third_party/jsoncpp/
Djson.h871 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);
Djsoncpp.cpp3495 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/
Dvalue.h394 Value removeMember(const char* key);
396 Value removeMember(const std::string& key);
/external/llvm/lib/Target/Hexagon/
DRDFDeadCode.cpp222 BA.Addr->removeMember(IA, DFG); in erase()
DRDFGraph.h557 void removeMember(NodeAddr<NodeBase*> NA, const DataFlowGraph &G);
783 IA.Addr->removeMember(RA, *this); in removeFromOwner()
DRDFGraph.cpp465 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/
Djson_value.cpp987 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/
Dmain.cpp1429 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()