Home | History | Annotate | Download | only in ijar

Lines Matching defs:ElementValue

570 struct ElementValue {
571 virtual ~ElementValue() {}
574 static ElementValue* Read(const u1 *&p);
579 struct BaseTypeElementValue : ElementValue {
592 struct EnumTypeElementValue : ElementValue {
608 struct ClassTypeElementValue : ElementValue {
627 struct ArrayTypeElementValue : ElementValue {
651 value->values_.push_back(ElementValue::Read(p));
655 std::vector<ElementValue*> values_;
688 pair->element_value_ = ElementValue::Read(p);
696 ElementValue *element_value_;
891 struct AnnotationTypeElementValue : ElementValue {
909 ElementValue* ElementValue::Read(const u1 *&p) {
911 ElementValue *result;
944 attr->default_value_ = ElementValue::Read(p);
957 ElementValue *default_value_;