computedStyle    1174 Source/core/css/CSSComputedStyleDeclaration.cpp     RefPtr<RenderStyle> style = m_node->computedStyle(m_pseudoElementSpecifier);
computedStyle    1190 Source/core/css/CSSComputedStyleDeclaration.cpp     RefPtr<RenderStyle> style = m_node->computedStyle(m_pseudoElementSpecifier);
computedStyle    1534 Source/core/css/CSSComputedStyleDeclaration.cpp     return styledNode->computedStyle(styledNode->isPseudoElement() ? NOPSEUDO : m_pseudoElementSpecifier);
computedStyle    1886 Source/core/css/CSSComputedStyleDeclaration.cpp                 if (parent && parent->computedStyle())
computedStyle    1887 Source/core/css/CSSComputedStyleDeclaration.cpp                     alignSelf = parent->computedStyle()->alignItems();
computedStyle    2882 Source/core/css/CSSComputedStyleDeclaration.cpp     RenderStyle* style = node->computedStyle(m_pseudoElementSpecifier);
computedStyle    2901 Source/core/css/CSSComputedStyleDeclaration.cpp         RenderStyle* style = m_node->computedStyle(m_pseudoElementSpecifier);
computedStyle     104 Source/core/css/SVGCSSComputedStyleDeclaration.cpp     RenderStyle* style = node->computedStyle();
computedStyle    1675 Source/core/dom/Document.cpp     if (styleEngine()->usesRemUnits() && (documentElement()->needsAttach() || documentElement()->computedStyle()->fontSize() != documentElementStyle->fontSize())) {
computedStyle    1947 Source/core/dom/Document.cpp     return ensureStyleResolver().styleForElement(element, element->parentNode() ? element->parentNode()->computedStyle() : 0);
computedStyle    2471 Source/core/dom/Element.cpp         return element->computedStyle();
computedStyle    2490 Source/core/dom/Element.cpp     if (!rareData.computedStyle())
computedStyle    2492 Source/core/dom/Element.cpp     return pseudoElementSpecifier ? rareData.computedStyle()->getCachedPseudoStyle(pseudoElementSpecifier) : rareData.computedStyle();
computedStyle     341 Source/core/dom/Element.h     RenderStyle* computedStyle(PseudoId = NOPSEUDO);
computedStyle     624 Source/core/dom/Element.h     virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) OVERRIDE { return computedStyle(pseudoElementSpecifier); }
computedStyle      83 Source/core/dom/ElementRareData.h     RenderStyle* computedStyle() const { return m_computedStyle.get(); }
computedStyle      84 Source/core/dom/ElementRareData.h     void setComputedStyle(PassRefPtr<RenderStyle> computedStyle) { m_computedStyle = computedStyle; }
computedStyle    1084 Source/core/dom/Node.cpp     return parentOrShadowHostNode() ? parentOrShadowHostNode()->computedStyle(pseudoElementSpecifier) : 0;
computedStyle     545 Source/core/dom/Node.h     RenderStyle* computedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) { return virtualComputedStyle(pseudoElementSpecifier); }
computedStyle     148 Source/core/dom/Position.h     PassRefPtr<CSSComputedStyleDeclaration> computedStyle() const;
computedStyle     458 Source/core/editing/EditingStyle.cpp     if (node && node->computedStyle()) {
computedStyle     459 Source/core/editing/EditingStyle.cpp         RenderStyle* renderStyle = node->computedStyle();
computedStyle     487 Source/core/editing/EditingStyle.cpp void EditingStyle::replaceFontSizeByKeywordIfPossible(RenderStyle* renderStyle, CSSComputedStyleDeclaration* computedStyle)
computedStyle     491 Source/core/editing/EditingStyle.cpp         m_mutableStyle->setProperty(CSSPropertyFontSize, computedStyle->getFontSizeCSSValuePreferringKeyword()->cssText());
computedStyle    1189 Source/core/editing/EditingStyle.cpp     RefPtr<EditingStyle> computedStyle = EditingStyle::create(context, EditingPropertiesInEffect);
computedStyle    1190 Source/core/editing/EditingStyle.cpp     if (computedStyle->m_mutableStyle) {
computedStyle    1191 Source/core/editing/EditingStyle.cpp         if (!computedStyle->m_mutableStyle->getPropertyCSSValue(CSSPropertyBackgroundColor))
computedStyle    1192 Source/core/editing/EditingStyle.cpp             computedStyle->m_mutableStyle->setProperty(CSSPropertyBackgroundColor, CSSValueTransparent);
computedStyle    1194 Source/core/editing/EditingStyle.cpp         removePropertiesInStyle(computedStyle->m_mutableStyle.get(), styleFromMatchedRules.get());
computedStyle    1195 Source/core/editing/EditingStyle.cpp         m_mutableStyle = getPropertiesNotIn(m_mutableStyle.get(), computedStyle->m_mutableStyle->ensureCSSStyleDeclaration());
computedStyle    1384 Source/core/editing/EditingStyle.cpp     RefPtr<CSSComputedStyleDeclaration> computedStyle = position.computedStyle();
computedStyle    1386 Source/core/editing/EditingStyle.cpp     RefPtrWillBeRawPtr<MutableStylePropertySet> mutableStyle = getPropertiesNotIn(style->style(), computedStyle.get());
computedStyle    1390 Source/core/editing/EditingStyle.cpp         extractTextStyles(document, mutableStyle.get(), computedStyle->useFixedFontDefaultSize());
computedStyle     266 Source/core/frame/SmartClip.cpp         RenderStyle* style = currentNode->computedStyle();
computedStyle    1843 Source/core/html/HTMLInputElement.cpp     parameters.isAnchorElementRTL = computedStyle()->direction() == RTL;
computedStyle    2037 Source/core/html/canvas/CanvasRenderingContext2D.cpp     if (RenderStyle* computedStyle = canvas()->computedStyle())
computedStyle    2038 Source/core/html/canvas/CanvasRenderingContext2D.cpp         newStyle->setFontDescription(computedStyle->fontDescription());
computedStyle    2219 Source/core/html/canvas/CanvasRenderingContext2D.cpp     RenderStyle* computedStyle = canvas()->computedStyle();
computedStyle    2220 Source/core/html/canvas/CanvasRenderingContext2D.cpp     TextDirection direction = computedStyle ? computedStyle->direction() : LTR;
computedStyle    2222 Source/core/html/canvas/CanvasRenderingContext2D.cpp     bool override = computedStyle ? isOverride(computedStyle->unicodeBidi()) : false;
computedStyle     425 Source/core/rendering/RenderImage.cpp     RenderStyle* areaElementStyle = areaElement.computedStyle();
computedStyle     447 Source/core/rendering/RenderImage.cpp     RenderStyle* areaElementStyle = areaElement->computedStyle();
computedStyle     465 Source/core/rendering/RenderMenuList.cpp     RenderStyle* style = element->renderStyle() ? element->renderStyle() : element->computedStyle();
computedStyle     340 Source/core/rendering/RenderTextControlSingleLine.cpp             result += spinButton->computedStyle()->logicalWidth().value();
computedStyle     991 Source/core/svg/SVGElement.cpp         return Element::computedStyle(pseudoElementSpecifier);
computedStyle     190 Source/core/svg/SVGElement.h     RenderStyle* computedStyle(PseudoId = NOPSEUDO);
computedStyle     191 Source/core/svg/SVGElement.h     virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) OVERRIDE FINAL { return computedStyle(pseudoElementSpecifier); }
computedStyle     870 Source/web/WebAXObject.cpp     return node->computedStyle();
computedStyle     886 Source/web/WebAXObject.cpp     RenderStyle* renderStyle = node->computedStyle();