Searched defs:style (Results 1 - 25 of 574) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLNoEmbedElement.cpp50 bool HTMLNoEmbedElement::rendererIsNeeded(const RenderStyle& style) argument
54 return Element::rendererIsNeeded(style);
H A DHTMLNoScriptElement.cpp50 bool HTMLNoScriptElement::rendererIsNeeded(const RenderStyle& style) argument
54 return Element::rendererIsNeeded(style);
H A DHTMLRTElement.cpp2 // Use of this source code is governed by a BSD-style license that can be
22 RenderObject* HTMLRTElement::createRenderer(RenderStyle* style) argument
24 if (style->display() == BLOCK)
26 return RenderObject::createObject(this, style);
H A DHTMLRubyElement.cpp2 // Use of this source code is governed by a BSD-style license that can be
22 RenderObject* HTMLRubyElement::createRenderer(RenderStyle* style) argument
24 if (style->display() == INLINE)
26 if (style->display() == BLOCK)
28 return RenderObject::createObject(this, style);
H A DHTMLWBRElement.cpp48 RenderObject* HTMLWBRElement::createRenderer(RenderStyle* style) argument
H A DHTMLDivElement.cpp41 void HTMLDivElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
45 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitCenter);
47 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitLeft);
49 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitRight);
51 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, value);
53 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
H A DHTMLParagraphElement.cpp41 void HTMLParagraphElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
45 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitCenter);
47 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitLeft);
49 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitRight);
51 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, value);
53 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
H A DHTMLTableCaptionElement.cpp42 void HTMLTableCaptionElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
46 addPropertyToPresentationAttributeStyle(style, CSSPropertyCaptionSide, value);
48 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
H A DHTMLBRElement.cpp49 void HTMLBRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
56 addPropertyToPresentationAttributeStyle(style, CSSPropertyClear, CSSValueBoth);
58 addPropertyToPresentationAttributeStyle(style, CSSPropertyClear, value);
61 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
64 RenderObject* HTMLBRElement::createRenderer(RenderStyle* style) argument
66 if (style->hasContent())
67 return RenderObject::createObject(this, style);
H A DHTMLPreElement.cpp49 void HTMLPreElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
52 style->setProperty(CSSPropertyWhiteSpace, CSSValuePreWrap);
54 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
H A DHTMLUListElement.cpp47 void HTMLUListElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
50 addPropertyToPresentationAttributeStyle(style, CSSPropertyListStyleType, value);
52 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderObjectInlines.h2 // Use of this source code is governed by a BSD-style license that can be
20 return document().styleEngine()->usesFirstLineRules() ? cachedFirstLineStyle() : style();
23 inline RenderStyle* RenderObject::style(bool firstLine) const function in class:blink::RenderObject
25 return firstLine ? firstLineStyle() : style();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
H A DECPointEncoder.java17 * @param style the style to use.
19 public void setPointFormat(String style); argument
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DDetailsMarkerControl.cpp52 bool DetailsMarkerControl::rendererIsNeeded(const RenderStyle& style) argument
54 return summaryElement()->isMainSummary() && HTMLDivElement::rendererIsNeeded(style);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DAppliedTextDecoration.cpp2 // Use of this source code is governed by a BSD-style license that can be
6 #include "core/rendering/style/AppliedTextDecoration.h"
10 AppliedTextDecoration::AppliedTextDecoration(TextDecoration line, TextDecorationStyle style, StyleColor color) argument
12 , m_style(style)
H A DAppliedTextDecoration.h2 // Use of this source code is governed by a BSD-style license that can be
9 #include "core/rendering/style/RenderStyleConstants.h"
20 TextDecorationStyle style() const { return static_cast<TextDecorationStyle>(m_style); } function in class:blink::AppliedTextDecoration
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTSpanElement.cpp42 bool SVGTSpanElement::rendererIsNeeded(const RenderStyle& style) argument
52 return Element::rendererIsNeeded(style);
/external/chromium_org/third_party/skia/experimental/ChromeUtils/
H A DSkBorder.cpp4 * Use of this source code is governed by a BSD-style license that can be
10 SkBorder::SkBorder(SkPaint& p, SkScalar width, BorderStyle style) argument
16 fStyles[i] = style;
/external/skia/experimental/ChromeUtils/
H A DSkBorder.cpp4 * Use of this source code is governed by a BSD-style license that can be
10 SkBorder::SkBorder(SkPaint& p, SkScalar width, BorderStyle style) argument
16 fStyles[i] = style;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DBCStrictStyle.java1 package org.bouncycastle.asn1.x500.style;
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DActiveAnimations.cpp47 void ActiveAnimations::updateAnimationFlags(RenderStyle& style) argument
57 style.setHasCurrentOpacityAnimation(true);
59 style.setHasCurrentTransformAnimation(true);
61 style.setHasCurrentFilterAnimation(true);
65 if (style.hasCurrentOpacityAnimation())
66 style.setIsRunningOpacityAnimationOnCompositor(m_defaultStack.hasActiveAnimationsOnCompositor(CSSPropertyOpacity));
67 if (style.hasCurrentTransformAnimation())
68 style.setIsRunningTransformAnimationOnCompositor(m_defaultStack.hasActiveAnimationsOnCompositor(CSSPropertyTransform));
69 if (style.hasCurrentFilterAnimation())
70 style
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSShadowValue.h39 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style,
42 return adoptRefWillBeNoop(new CSSShadowValue(x, y, blur, spread, style, color));
53 RefPtrWillBeMember<CSSPrimitiveValue> style; member in class:blink::CSSShadowValue
63 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style,
35 create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> blur, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> spread, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> style, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> color) argument
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPseudoElement.h31 #include "core/rendering/style/RenderStyle.h"
64 inline bool pseudoElementRendererIsNeeded(const RenderStyle* style) argument
66 return style && style->display() != NONE && (style->styleType() == BACKDROP || style->contentData());
H A DRenderTreeBuilder.cpp96 RenderStyle& RenderTreeBuilder::style() const function in class:blink::RenderTreeBuilder
111 RenderStyle& style = this->style(); local
113 if (!element->rendererIsNeeded(style))
116 RenderObject* newRenderer = element->createRenderer(&style);
122 if (!parentRenderer->isChildAllowed(newRenderer, &style)) {
127 // Make sure the RenderObject already knows it is going to be added to a RenderFlowThread before we set the style
133 newRenderer->setStyle(&style); // setStyle() can depend on renderer() already being set.
155 m_style = parentRenderer->style();
166 // Make sure the RenderObject already knows it is going to be added to a RenderFlowThread before we set the style
[all...]
H A DRenderTreeBuilder.h43 RenderTreeBuilder(Node* node, RenderStyle* style) argument
46 , m_style(style)
68 RenderStyle& style() const;

Completed in 8743 milliseconds

1234567891011>>