Lines Matching refs:Reference
249 std::optional<Reference> ParseStyleParentReference(StringPiece str, std::string* out_error) { in ParseStyleParentReference()
293 Reference result(ref); in ParseStyleParentReference()
298 std::optional<Reference> ParseXmlAttributeName(StringPiece str) { in ParseXmlAttributeName()
304 Reference ref; in ParseXmlAttributeName()
324 return std::optional<Reference>(std::move(ref)); in ParseXmlAttributeName()
327 std::unique_ptr<Reference> TryParseReference(StringPiece str, bool* out_create) { in TryParseReference()
331 std::unique_ptr<Reference> value = util::make_unique<Reference>(ref); in TryParseReference()
340 return util::make_unique<Reference>(ref, Reference::Type::kAttribute); in TryParseReference()
355 std::unique_ptr<Reference> MakeNull() { in MakeNull()
358 return util::make_unique<Reference>(); in MakeNull()
815 Reference::Type ref_type = Reference::Type::kResource; in ParseBinaryResValue()
818 ref_type = Reference::Type::kAttribute; in ParseBinaryResValue()
823 return util::make_unique<Reference>(); in ParseBinaryResValue()
827 auto reference = util::make_unique<Reference>(data, ref_type); in ParseBinaryResValue()