Home | History | Annotate | Download | only in proto

Lines Matching refs:Item

50    * Constructor to use when expecting to serialize an Item.
53 pb::Item* outPbItem)
90 void VisitItem(Item* item) override { LOG(FATAL) << "unimplemented item"; }
118 pb::Item* pb_item = pb_entry->mutable_item();
156 pb::Item* pb_element = pb_entry->mutable_item();
166 pb::Item* pb_item() {
179 void SerializeItemCommonToPb(const Item& item, T* pb_item) {
180 SerializeSourceToPb(item.GetSource(), source_pool_,
182 if (!item.GetComment().empty()) {
183 pb_item->set_comment(item.GetComment());
204 pb::Item* out_pb_item_;