Home | History | Annotate | Download | only in aapt2

Lines Matching refs:Reference

188 Maybe<Reference> parseStyleParentReference(const StringPiece16& str, std::string* outError) {
198 // Skip over these identifiers. A style's parent is a normal reference.
227 err << "invalid parent reference '" << str << "'";
232 Reference result(ref);
237 std::unique_ptr<Reference> tryParseReference(const StringPiece16& str, bool* outCreate) {
241 std::unique_ptr<Reference> value = util::make_unique<Reference>(ref);
250 return util::make_unique<Reference>(ref, Reference::Type::kAttribute);
485 std::unique_ptr<Reference> reference = tryParseReference(value, &create);
486 if (reference) {
488 onCreateReference(reference->name.value());
490 return std::move(reference);