Lines Matching refs:Read
427 static ExceptionsAttribute* Read(const u1 *&p, Constant *attribute_name) { in Read() function
464 static InnerClassesAttribute* Read(const u1 *&p, Constant *attribute_name) { in Read() function
549 static EnclosingMethodAttribute* Read(const u1 *&p, in Read() function
574 static ElementValue* Read(const u1 *&p);
584 static BaseTypeElementValue *Read(const u1 *&p) { in Read() function
598 static EnumTypeElementValue *Read(const u1 *&p) { in Read() function
619 static ClassTypeElementValue *Read(const u1 *&p) { in Read() function
647 static ArrayTypeElementValue *Read(const u1 *&p) { in Read() function
651 value->values_.push_back(ElementValue::Read(p)); in Read()
681 static Annotation *Read(const u1 *&p) { in Read() function
688 pair->element_value_ = ElementValue::Read(p); in Read()
749 static TypeAnnotation *Read(const u1 *&p) { in Read() function
753 value->type_path_ = TypePath::Read(p); in Read()
754 value->annotation_ = Annotation::Read(p); in Read()
767 static TypeParameterTargetInfo *Read(const u1 *&p) { in Read() function
779 static ClassExtendsInfo *Read(const u1 *&p) { in Read() function
792 static TypeParameterBoundInfo *Read(const u1 *&p) { in Read() function
804 static EmptyInfo *Read(const u1 *&) { in Read() function
813 static MethodFormalParameterInfo *Read(const u1 *&p) { in Read() function
825 static ThrowsTypeInfo *Read(const u1 *&p) { in Read() function
837 return TypeParameterTargetInfo::Read(p); in ReadTargetInfo()
839 return ClassExtendsInfo::Read(p); in ReadTargetInfo()
842 return TypeParameterBoundInfo::Read(p); in ReadTargetInfo()
848 return MethodFormalParameterInfo::Read(p); in ReadTargetInfo()
850 return ThrowsTypeInfo::Read(p); in ReadTargetInfo()
866 static TypePath *Read(const u1 *&p) { in Read() function
900 static AnnotationTypeElementValue *Read(const u1 *&p) { in Read() function
902 value->annotation_ = Annotation::Read(p); in Read()
909 ElementValue* ElementValue::Read(const u1 *&p) { in Read() function in devtools_ijar::ElementValue
914 result = BaseTypeElementValue::Read(p); in Read()
916 result = EnumTypeElementValue::Read(p); in Read()
918 result = ClassTypeElementValue::Read(p); in Read()
920 result = ArrayTypeElementValue::Read(p); in Read()
922 result = AnnotationTypeElementValue::Read(p); in Read()
940 static AnnotationDefaultAttribute* Read(const u1 *&p, in Read() function
944 attr->default_value_ = ElementValue::Read(p); in Read()
965 static ConstantValueAttribute* Read(const u1 *&p, Constant *attribute_name) { in Read() function
985 static SignatureAttribute* Read(const u1 *&p, Constant *attribute_name) { in Read() function
1010 static DeprecatedAttribute* Read(const u1 *&, Constant *attribute_name) { in Read() function
1032 static AnnotationsAttribute* Read(const u1 *&p, Constant *attribute_name) { in Read() function
1037 Annotation *annotation = Annotation::Read(p); in Read()
1068 static ParameterAnnotationsAttribute* Read(const u1 *&p, in Read() function
1077 Annotation *annotation = Annotation::Read(p); in Read()
1114 static TypeAnnotationsAttribute* Read(const u1 *&p, Constant *attribute_name, in Read() function
1120 TypeAnnotation *annotation = TypeAnnotation::Read(p); in Read()
1146 static GeneralAttribute* Read(const u1 *&p, Constant *attribute_name, in Read() function
1197 static Member* Read(const u1 *&p) { in Read() function
1317 attributes.push_back(ExceptionsAttribute::Read(p, attribute_name)); in ReadAttrs()
1319 attributes.push_back(SignatureAttribute::Read(p, attribute_name)); in ReadAttrs()
1321 attributes.push_back(DeprecatedAttribute::Read(p, attribute_name)); in ReadAttrs()
1323 attributes.push_back(EnclosingMethodAttribute::Read(p, attribute_name)); in ReadAttrs()
1326 attributes.push_back(InnerClassesAttribute::Read(p, attribute_name)); in ReadAttrs()
1328 attributes.push_back(AnnotationDefaultAttribute::Read(p, attribute_name)); in ReadAttrs()
1330 attributes.push_back(ConstantValueAttribute::Read(p, attribute_name)); in ReadAttrs()
1333 attributes.push_back(AnnotationsAttribute::Read(p, attribute_name)); in ReadAttrs()
1337 ParameterAnnotationsAttribute::Read(p, attribute_name)); in ReadAttrs()
1343 attributes.push_back(GeneralAttribute::Read(p, attribute_name, in ReadAttrs()
1349 attributes.push_back(TypeAnnotationsAttribute::Read(p, attribute_name, in ReadAttrs()
1560 Member *field = Member::Read(p); in ReadClass()
1569 Member *method = Member::Read(p); in ReadClass()