Home
last modified time | relevance | path

Searched refs:reference_type (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tools/aapt2/
DResourceValues.cpp97 Reference::Reference() : reference_type(Type::kResource) {} in Reference()
100 : name(n.ToResourceName()), reference_type(t) {} in Reference()
103 : id(i), reference_type(type) {} in Reference()
106 : name(n.ToResourceName()), id(i), reference_type(Type::kResource) {} in Reference()
113 return reference_type == other->reference_type && in Equals()
122 if (reference_type == Reference::Type::kResource) { in Flatten()
144 if (reference_type == Type::kResource) { in Print()
171 switch (ref.reference_type) { in PrettyPrintReferenceImpl()
DResourceValues.h158 Reference::Type reference_type; member
DResourceParser_test.cpp311 EXPECT_THAT(null_ref->reference_type, Eq(Reference::Type::kResource)); in TEST_F()
/frameworks/base/tools/aapt2/format/proto/
DProtoSerialize.cpp425 pb_ref->set_type(SerializeReferenceTypeToPb(ref.reference_type)); in SerializeReferenceToPb()
DProtoDeserialize.cpp640 out_ref->reference_type = DeserializeReferenceTypeFromPb(pb_ref.type()); in DeserializeReferenceFromPb()