Lines Matching full:auto
20 auto *protoItemmetadata = protoMeta.mutable_father(); in Serialize()
28 auto &protoItemMetadata = protoMeta.father(); in Deserialize()
31 auto &protoAnnoMetadata = protoItemMetadata.father(); in Deserialize()
34 const auto &protoMetadata = protoAnnoMetadata.father(); in Deserialize()
41 auto *protoItemmetadata = protoMeta.mutable_father(); in Serialize()
49 auto &protoItemMetadata = protoMeta.father(); in Deserialize()
52 auto &protoAnnoMetadata = protoItemMetadata.father(); in Deserialize()
55 const auto &protoMetadata = protoAnnoMetadata.father(); in Deserialize()
61 auto *protoItemmetadata = protoMeta.mutable_father(); in Serialize()
63 auto *protoType = protoMeta.mutable_fieldtype(); in Serialize()
65 const auto val = meta.GetValue(); in Serialize()
67 auto *protoValue = protoMeta.mutable_value(); in Serialize()
76 auto &protoItemMetadata = protoMeta.father(); in Deserialize()
78 auto &protoAnnoMetadata = protoItemMetadata.father(); in Deserialize()
80 const auto &protoMetadata = protoAnnoMetadata.father(); in Deserialize()
83 auto &fieldType = Type::Deserialize(protoMeta.fieldtype(), allocator); in Deserialize()
87 auto scalar = scalarValue.Deserialize(protoMeta.value(), allocator); in Deserialize()
94 auto *protoAnnometadata = protoMeta.mutable_father(); in Serialize()
102 const auto &protoAnnoMetadata = protoMeta.father(); in Deserialize()
108 auto *protoAnnometadata = protoMeta.mutable_father(); in Serialize()
121 auto *protoMetadata = protoMeta.mutable_father(); in Serialize()
123 for (const auto &anno : meta.GetAnnotations()) { in Serialize()
124 auto *proto_anno = protoMeta.add_annotations(); in Serialize()
135 for (const auto &protoAnnotation : protoMeta.annotations()) { in Deserialize()
136 … auto *annotation = allocator->New<panda::pandasm::AnnotationData>(protoAnnotation.recordname()); in Deserialize()
145 for (const auto &attr : meta.GetBoolAttributes()) { in Serialize()
148 for (const auto &[name, attrs] : meta.GetAttributes()) { in Serialize()
149 auto *protoKeyVal = protoMeta.add_attributes(); in Serialize()
151 for (const auto &attr : attrs) { in Serialize()
159 for (const auto &attr : protoMeta.set_attributes()) { in Deserialize()
162 for (const auto &protoKeyVal: protoMeta.attributes()) { in Deserialize()
163 auto &key = protoKeyVal.key(); in Deserialize()
164 for (const auto &attr : protoKeyVal.value()) { in Deserialize()