Lines Matching refs:Style
53 void visit(Style* style) override {
54 std::cout << "(style)";
55 if (style->parent) {
56 const Reference& parentRef = style->parent.value();
70 for (const auto& entry : style->entries) {
194 // We've already visited this style.
202 if (Style* style = valueCast<Style>(value->value.get())) {
203 if (style->parent && style->parent.value().name) {
204 parents.insert(style->parent.value().name.value());
205 stylesToVisit.push(style->parent.value().name.value());