Lines Matching refs:Reference
254 Maybe<Reference> ParseStyleParentReference(const StringPiece& str, in ParseStyleParentReference()
299 Reference result(ref); in ParseStyleParentReference()
304 Maybe<Reference> ParseXmlAttributeName(const StringPiece& str) { in ParseXmlAttributeName()
310 Reference ref; in ParseXmlAttributeName()
329 return Maybe<Reference>(std::move(ref)); in ParseXmlAttributeName()
332 std::unique_ptr<Reference> TryParseReference(const StringPiece& str, in TryParseReference()
337 std::unique_ptr<Reference> value = util::make_unique<Reference>(ref); in TryParseReference()
346 return util::make_unique<Reference>(ref, Reference::Type::kAttribute); in TryParseReference()
361 std::unique_ptr<Reference> MakeNull() { in MakeNull()
364 return util::make_unique<Reference>(); in MakeNull()
785 Reference::Type ref_type = Reference::Type::kResource; in ParseBinaryResValue()
788 ref_type = Reference::Type::kAttribute; in ParseBinaryResValue()
793 return util::make_unique<Reference>(); in ParseBinaryResValue()
797 return util::make_unique<Reference>(data, ref_type); in ParseBinaryResValue()