Lines Matching refs:AnnotationElement
33 class AnnotationElement; variable
37 AnnotationData(std::string_view record_name, std::vector<AnnotationElement> elements) in AnnotationData()
54 const std::vector<AnnotationElement> &GetElements() const in GetElements()
59 void AddElement(AnnotationElement &&element) in AddElement()
61 elements_.push_back(std::forward<AnnotationElement>(element)); in AddElement()
64 void SetOrAddElementByIndex(size_t ele_idx, AnnotationElement &&element);
68 std::vector<AnnotationElement> elements_;
535 class AnnotationElement {
537 …AnnotationElement(std::string_view name, std::unique_ptr<Value> value) : name_(name), value_(std::… in AnnotationElement() function
539 AnnotationElement(const AnnotationElement &ann_elem);
540 AnnotationElement &operator=(const AnnotationElement &ann_elem);
541 DEFAULT_MOVE_SEMANTIC(AnnotationElement);
542 ~AnnotationElement() = default;