Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/
DResourceValues.cpp99 Reference::Reference() : reference_type(Type::kResource) {} in Reference()
102 : name(n.ToResourceName()), reference_type(t) {} in Reference()
105 : id(i), reference_type(type) {} in Reference()
108 : name(n.ToResourceName()), id(i), reference_type(Type::kResource) {} in Reference()
115 return reference_type == other->reference_type && private_reference == other->private_reference && in Equals()
127 if (reference_type == Reference::Type::kResource) { in Flatten()
145 if (reference_type == Type::kResource) { in Print()
172 switch (ref.reference_type) { in PrettyPrintReferenceImpl()
DResourceValues.h188 Reference::Type reference_type; member
DResourceParser_test.cpp311 EXPECT_THAT(null_ref->reference_type, Eq(Reference::Type::kResource)); in TEST_F()
/frameworks/libs/binary_translation/tools/nogrod/
Dmain.cc849 const ReferenceType reference_type, in ParseReference() argument
858 switch (reference_type) { in ParseReference()
/frameworks/base/tools/aapt2/format/proto/
DProtoSerialize.cpp467 pb_ref->set_type(SerializeReferenceTypeToPb(ref.reference_type)); in SerializeReferenceToPb()
DProtoDeserialize.cpp691 out_ref->reference_type = DeserializeReferenceTypeFromPb(pb_ref.type()); in DeserializeReferenceFromPb()