Lines Matching refs:Style
448 Style* Style::clone(StringPool* newPool) const {
449 Style* style = new Style();
450 style->parent = parent;
451 style->parentInferred = parentInferred;
452 style->mComment = mComment;
453 style->mSource = mSource;
455 style->entries.push_back(Entry{
460 return style;
463 void Style::print(std::ostream* out) const {
464 *out << "(style) ";
476 static ::std::ostream& operator<<(::std::ostream& out, const Style::Entry& value) {