Home | History | Annotate | Download | only in protobuf_c

Lines Matching refs:FindOneofByName

2388   OneofDef* FindOneofByName(const char* name, size_t len);
2389 const OneofDef* FindOneofByName(const char* name, size_t len) const;
2391 OneofDef* FindOneofByName(const char* name) {
2392 return FindOneofByName(name, strlen(name));
2394 const OneofDef* FindOneofByName(const char* name) const {
2395 return FindOneofByName(name, strlen(name));
2399 OneofDef* FindOneofByName(const T& str) {
2400 return FindOneofByName(str.c_str(), str.size());
2403 const OneofDef* FindOneofByName(const T& str) const {
2404 return FindOneofByName(str.c_str(), str.size());
3339 inline OneofDef* MessageDef::FindOneofByName(const char* name, size_t len) {
3342 inline const OneofDef* MessageDef::FindOneofByName(const char* name,