| 491 | } |
| 492 | |
| 493 | static void AddDelimiter(string* append_to, const string& delim) { |
| 494 | if (!append_to->empty()) strings::StrAppend(append_to, delim); |
| 495 | } |
| 496 | |
| 497 | const ApiDef::Attr* FindAttr(StringPiece name, const ApiDef& api_def) { |
| 498 | for (int i = 0; i < api_def.attr_size(); ++i) { |