HomeSort by relevance Sort by last modified time
    Searched refs:style (Results 1 - 25 of 3294) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleAdjuster.cpp 47 #include "core/rendering/style/GridPosition.h"
48 #include "core/rendering/style/RenderStyle.h"
49 #include "core/rendering/style/RenderStyleConstants.h"
105 static bool doesNotInheritTextDecoration(const RenderStyle* style, const Element* e)
107 return style->display() == TABLE || style->display() == INLINE_TABLE
108 || style->display() == INLINE_BLOCK || style->display() == INLINE_BOX || isAtShadowBoundary(e)
109 || style->isFloating() || style->hasOutOfFlowPosition()
    [all...]
AnimatedStyleBuilder.cpp 59 #include "core/rendering/style/RenderStyle.h"
70 return toAnimatableLength(value)->length(state.style()->effectiveZoom(), range);
79 return BorderImageLength(toAnimatableLength(value)->length(state.style()->effectiveZoom(), ValueRangeNonNegative));
262 RenderStyle* style = state.style(); local
265 style->setBackgroundColor(toAnimatableColor(value)->color());
266 style->setVisitedLinkBackgroundColor(toAnimatableColor(value)->visitedLinkColor());
269 setOnFillLayers<CSSPropertyBackgroundImage>(style->accessBackgroundLayers(), value, state);
272 setOnFillLayers<CSSPropertyBackgroundPositionX>(style->accessBackgroundLayers(), value, state);
275 setOnFillLayers<CSSPropertyBackgroundPositionY>(style->accessBackgroundLayers(), value, state)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
CachedUAStyle.h 25 #include "core/rendering/style/RenderStyle.h"
35 static PassOwnPtr<CachedUAStyle> create(const RenderStyle* style)
37 return adoptPtr(new CachedUAStyle(style));
46 explicit CachedUAStyle(const RenderStyle* style)
48 , border(style->border())
49 , backgroundLayers(style->backgroundLayers())
50 , backgroundColor(style->backgroundColor())
52 ASSERT(style->hasAppearance());
BorderEdge.cpp 2 // Use of this source code is governed by a BSD-style license that can be
6 #include "core/rendering/style/BorderEdge.h"
15 , style(edgeStyle)
17 if (style == DOUBLE && edgeWidth < 3)
18 style = SOLID;
25 , style(BHIDDEN)
31 return style > BHIDDEN && !isTransparent;
38 if (!isPresent || isTransparent || (width * scale) < 2 || color.hasAlpha() || style == BHIDDEN)
41 if (style == DOTTED || style == DASHED
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 59 #include "core/rendering/style/RenderStyle.h"
65 static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLength(const Length& length, const RenderStyle& style)
71 return AnimatableLength::create(length, style.effectiveZoom());
92 static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLineHeight(const Length& length, const RenderStyle& style)
101 return createFromLength(length, style);
109 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLengthBox(const LengthBox& lengthBox, const RenderStyle& style)
112 createFromLength(lengthBox.left(), style),
113 createFromLength(lengthBox.right(), style),
114 createFromLength(lengthBox.top(), style),
115 createFromLength(lengthBox.bottom(), style));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderObjectInlines.h 2 // 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();
RenderSliderThumb.cpp 36 #include "core/rendering/style/RenderStyle.h"
48 style()->setAppearance(SliderThumbVerticalPart);
50 style()->setAppearance(SliderThumbHorizontalPart);
52 style()->setAppearance(MediaSliderThumbPart);
54 style()->setAppearance(MediaVolumeSliderThumbPart);
56 style()->setAppearance(MediaFullScreenVolumeSliderThumbPart);
57 if (style()->hasAppearance())
58 RenderTheme::theme().adjustSliderThumbSize(style(), toElement(node()));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceRule.idl 23 readonly attribute CSSStyleDeclaration style;
CSSViewportRule.idl 31 readonly attribute CSSStyleDeclaration style;
CSSKeyframeRule.idl 33 readonly attribute CSSStyleDeclaration style;
CSSPageRule.idl 24 readonly attribute CSSStyleDeclaration style;
CSSStyleRule.idl 24 readonly attribute CSSStyleDeclaration style;
WebKitCSSFilterRule.idl 33 readonly attribute CSSStyleDeclaration style;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/interfaces/
ECPointEncoder.java 17 * @param style the style to use.
19 public void setPointFormat(String style);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLRubyElement.cpp 2 // Use of this source code is governed by a BSD-style license that can be
22 RenderObject* HTMLRubyElement::createRenderer(RenderStyle* style)
24 if (style->display() == INLINE)
26 if (style->display() == BLOCK)
28 return RenderObject::createObject(this, style);
HTMLHRElement.cpp 50 void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
54 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, 0, CSSPrimitiveValue::CSS_PX);
55 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
57 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
58 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, 0, CSSPrimitiveValue::CSS_PX);
60 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
61 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
67 addPropertyToPresentationAttributeStyle(style, CSSPropertyWidth, 1, CSSPrimitiveValue::CSS_PX);
69 addHTMLLengthToStyle(style, CSSPropertyWidth, value);
71 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderStyle, CSSValueSolid)
    [all...]
HTMLDivElement.cpp 41 void HTMLDivElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
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);
HTMLParagraphElement.cpp 41 void HTMLParagraphElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
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);
HTMLRTElement.cpp 2 // Use of this source code is governed by a BSD-style license that can be
22 RenderObject* HTMLRTElement::createRenderer(RenderStyle* style)
24 if (style->display() == BLOCK)
26 return RenderObject::createObject(this, style);
HTMLTableCaptionElement.cpp 42 void HTMLTableCaptionElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
46 addPropertyToPresentationAttributeStyle(style, CSSPropertyCaptionSide, value);
48 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
  /external/chromium_org/third_party/libxslt/libxslt/
preproc.c 2 * preproc.c: Preprocessing of style operations
62 * @style: the XSLT stylesheet
71 xsltCheckTopLevelElement(xsltStylesheetPtr style, xmlNodePtr inst, int err) {
73 if ((style == NULL) || (inst == NULL) || (inst->ns == NULL))
79 xsltTransformError(NULL, style, inst,
81 style->errors++;
91 xsltTransformError(NULL, style, inst,
94 style->errors++;
103 * @style: the XSLT stylesheet
109 xsltCheckInstructionElement(xsltStylesheetPtr style, xmlNodePtr inst)
    [all...]
imports.c 59 * @style: the stylesheet being imported by the master
66 xsltStylesheetPtr style) {
68 xmlHashScan(style->templatesHash,
70 master->extrasNr += style->extrasNr;
71 for (res = style->imports; res != NULL; res = res->next) {
78 * @style: the XSLT stylesheet
87 xsltParseStylesheetImport(xsltStylesheetPtr style, xmlNodePtr cur) {
96 if ((cur == NULL) || (style == NULL))
101 xsltTransformError(NULL, style, cur,
106 base = xmlNodeGetBase(style->doc, cur)
314 xsltStylesheetPtr style; local
341 xsltStylesheetPtr style; local
397 xsltStylesheetPtr style; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/paint/
BoxDecorationData.cpp 2 // Use of this source code is governed by a BSD-style license that can be
8 #include "core/rendering/style/BorderEdge.h"
9 #include "core/rendering/style/RenderStyle.h"
14 BoxDecorationData::BoxDecorationData(const RenderStyle& style, bool canRenderBorderImage, bool backgroundHasOpaqueTopLayer, GraphicsContext* context)
16 backgroundColor = style.visitedDependentColor(CSSPropertyBackgroundColor);
17 hasBackground = backgroundColor.alpha() || style.hasBackgroundImage();
18 ASSERT(hasBackground == style.hasBackground());
19 hasBorder = style.hasBorder();
20 hasAppearance = style.hasAppearance();
22 m_bleedAvoidance = determineBackgroundBleedAvoidance(style, canRenderBorderImage, backgroundHasOpaqueTopLayer, context)
    [all...]
  /external/chromium_org/ui/views/widget/
widget_hwnd_utils.cc 2 // Use of this source code is governed by a BSD-style license that can be
28 DWORD* style,
31 *style = WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
35 // Set type-independent style attributes.
37 *style |= WS_CHILD;
39 *style |= WS_MAXIMIZE;
41 *style |= WS_MINIMIZE;
59 // 2- The window must have WS_EX_COMPOSITED in the extended style.
60 // 3- The window must have WS_POPUP in its style.
62 // style
156 DWORD style = 0; local
    [all...]
  /external/chromium-trace/trace-viewer/src/tcmalloc/
heap_instance_track.css 2 * Use of this source code is governed by a BSD-style license that can be
11 list-style: none;
12 list-style-position: outside;

Completed in 734 milliseconds

1 2 3 4 5 6 7 8 91011>>