Lines Matching refs:Style
800 std::ostream& operator<<(std::ostream& out, const Style::Entry& entry) { in operator <<()
832 static bool KeyNameComparator(const Style::Entry* a, const Style::Entry* b) { in KeyNameComparator()
836 bool Style::Equals(const Value* value) const { in Equals()
837 const Style* other = ValueCast<Style>(value); in Equals()
863 void Style::Print(std::ostream* out) const { in Print()
875 Style::Entry CloneEntry(const Style::Entry& entry, StringPool* pool) { in CloneEntry()
876 Style::Entry cloned_entry{entry.key}; in CloneEntry()
884 void Style::MergeWith(Style* other, StringPool* pool) { in MergeWith()
1137 std::unique_ptr<Style> CloningValueTransformer::TransformDerived(const Style* value) { in TransformDerived()
1138 auto new_value = std::make_unique<Style>(); in TransformDerived()
1142 new_value->entries.push_back(Style::Entry{entry.key, entry.value->Transform(*this)}); in TransformDerived()