Searched refs:style (Results 1 - 25 of 2038) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleAdjuster.cpp47 #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) argument
107 return style->display() == TABLE || style->display() == INLINE_TABLE
108 || style->display() == INLINE_BLOCK || style->display() == INLINE_BOX || isAtShadowBoundary(e)
109 || style->isFloating() || style
114 isInTopLayer(const Element* element, const RenderStyle* style) argument
124 hasWillChangeThatCreatesStackingContext(const RenderStyle* style) argument
155 adjustRenderStyle(RenderStyle* style, RenderStyle* parentStyle, Element *e, const CachedUAStyle* cachedUAStyle) argument
248 adjustStyleForAlignment(RenderStyle& style, const RenderStyle& parentStyle) argument
300 adjustStyleForTagName(RenderStyle* style, RenderStyle* parentStyle, Element& element) argument
390 adjustOverflow(RenderStyle* style) argument
421 adjustStyleForDisplay(RenderStyle* style, RenderStyle* parentStyle) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DCachedUAStyle.h25 #include "core/rendering/style/RenderStyle.h"
35 static PassOwnPtr<CachedUAStyle> create(const RenderStyle* style) argument
37 return adoptPtr(new CachedUAStyle(style));
46 explicit CachedUAStyle(const RenderStyle* style) argument
48 , border(style->border())
49 , backgroundLayers(style->backgroundLayers())
50 , backgroundColor(style->backgroundColor())
52 ASSERT(style->hasAppearance());
H A DBorderEdge.cpp2 // 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
[all...]
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimatableValueFactory.cpp59 #include "core/rendering/style/RenderStyle.h"
65 static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLength(const Length& length, const RenderStyle& style) argument
71 return AnimatableLength::create(length, style.effectiveZoom());
92 static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLineHeight(const Length& length, const RenderStyle& style) argument
101 return createFromLength(length, style);
109 inline static PassRefPtrWillBeRawPtr<AnimatableValue> createFromLengthBox(const LengthBox& lengthBox, const RenderStyle& style) argument
112 createFromLength(lengthBox.left(), style),
113 createFromLength(lengthBox.right(), style),
114 createFromLength(lengthBox.top(), style),
115 createFromLength(lengthBox.bottom(), style));
118 createFromBorderImageLength(const BorderImageLength& borderImageLength, const RenderStyle& style) argument
125 createFromBorderImageLengthBox(const BorderImageLengthBox& borderImageLengthBox, const RenderStyle& style) argument
134 createFromLengthBoxAndBool(const LengthBox lengthBox, const bool flag, const RenderStyle& style) argument
141 createFromLengthPoint(const LengthPoint& lengthPoint, const RenderStyle& style) argument
148 createFromLengthSize(const LengthSize& lengthSize, const RenderStyle& style) argument
164 createFromFillSize(const FillSize& fillSize, const RenderStyle& style) argument
179 createFromBackgroundPosition(const Length& length, bool originIsSet, BackgroundEdgeOrigin origin, const RenderStyle& style) argument
187 createFromFillLayers(const FillLayer& fillLayers, const RenderStyle& style) argument
214 createFromColor(CSSPropertyID property, const RenderStyle& style) argument
271 create(CSSPropertyID property, const RenderStyle& style) argument
[all...]
/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();
H A DRenderSliderThumb.cpp36 #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/
H A DCSSFontFaceRule.idl23 readonly attribute CSSStyleDeclaration style;
H A DCSSViewportRule.idl31 readonly attribute CSSStyleDeclaration style;
H A DCSSKeyframeRule.idl33 readonly attribute CSSStyleDeclaration style;
H A DCSSPageRule.idl24 readonly attribute CSSStyleDeclaration style;
H A DCSSStyleRule.idl24 readonly attribute CSSStyleDeclaration style;
H A DWebKitCSSFilterRule.idl33 readonly attribute CSSStyleDeclaration style;
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DPluginPlaceholderElement.js2 // Use of this source code is governed by a BSD-style license that can be
9 // FIXME: Move style out of script and into CSS.
12 this.style.width = '100%';
13 this.style.height = '100%';
14 this.style.overflow = 'hidden';
15 this.style.display = 'flex';
16 this.style.alignItems = 'center';
17 this.style.backgroundColor = 'gray';
18 this.style.font = '12px -webkit-control';
22 contentElement.style
[all...]
/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/
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 DHTMLHRElement.cpp50 void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
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, CSSPropertyBorderStyl
[all...]
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);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
H A Dbraille_overlay_widget.js2 // Use of this source code is governed by a BSD-style license that can be
90 containerNode.style['opacity'] = '1.0';
104 containerNode.style.opacity = '0.0';
139 containerNode.style['position'] = 'fixed';
140 containerNode.style['top'] = '50%';
141 containerNode.style['left'] = '50%';
142 containerNode.style['-webkit-transition'] = 'all 0.3s ease-in';
143 containerNode.style['opacity'] = '0.0';
144 containerNode.style['z-index'] = '2147483647';
159 overlayNode.style['positio
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-3252443.js29 document.getElementById = function(s) { return { style: {}}};
31 document.getElementById(p1+p0).style.display='';
32 document.getElementById(p1+''+p0).style.backgroundColor = "";
33 document.getElementById(p1+''+p0).style.color="";
34 document.getElementById(p1+''+p0).style.borderBottomColor = "";
37 document.getElementById(p1+i).style.display='';
38 document.getElementById(p1+''+i).style.backgroundColor = "";
39 document.getElementById(p1+''+i).style.color="";
40 document.getElementById(p1+''+i).style.borderBottomColor = "";
/external/chromium_org/third_party/libxslt/libxslt/
H A Dpreproc.c2 * preproc.c: Preprocessing of style operations
62 * @style: the XSLT stylesheet
71 xsltCheckTopLevelElement(xsltStylesheetPtr style, xmlNodePtr inst, int err) { argument
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, xmlNodePt argument
164 xsltCheckParentElement(xsltStylesheetPtr style, xmlNodePtr inst, const xmlChar *allow1, const xmlChar *allow2) argument
224 xsltNewStylePreComp(xsltStylesheetPtr style, xsltStyleType type) argument
521 xsltDocumentComp(xsltStylesheetPtr style, xmlNodePtr inst, xsltTransformFunction function ATTRIBUTE_UNUSED) argument
666 xsltSortComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
773 xsltCopyComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
816 xsltTextComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
862 xsltElementComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
980 xsltAttributeComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1107 xsltCommentComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1137 xsltProcessingInstructionComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1171 xsltCopyOfComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1217 xsltValueOfComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1270 xsltGetQNameProperty(xsltStylesheetPtr style, xmlNodePtr inst, const xmlChar *propName, int mandatory, int *hasProp, const xmlChar **nsName, const xmlChar** localName) argument
1343 xsltWithParamComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1401 xsltNumberComp(xsltStylesheetPtr style, xmlNodePtr cur) argument
1516 xsltApplyImportsComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1546 xsltCallTemplateComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1585 xsltApplyTemplatesComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1637 xsltChooseComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1668 xsltIfComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1714 xsltWhenComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1760 xsltForEachComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1808 xsltVariableComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1871 xsltParamComp(xsltStylesheetPtr style, xmlNodePtr inst) argument
1935 xsltFreeStylePreComps(xsltStylesheetPtr style) argument
1964 xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr node) argument
2175 xsltStylePreCompute(xsltStylesheetPtr style, xmlNodePtr inst) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBoxDecorationData.cpp2 // 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) argument
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, canRenderBorderImag
25 determineBackgroundBleedAvoidance(const RenderStyle& style, bool canRenderBorderImage, bool backgroundHasOpaqueTopLayer, GraphicsContext* context) argument
57 borderObscuresBackgroundEdge(const RenderStyle& style, const FloatSize& contextScale) const argument
[all...]
/external/chromium_org/ui/views/widget/
H A Dwidget_hwnd_utils.cc2 // 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
24 CalculateWindowStylesFromInitParams( const Widget::InitParams& params, WidgetDelegate* widget_delegate, internal::NativeWidgetDelegate* native_widget_delegate, DWORD* style, DWORD* ex_style, DWORD* class_style) argument
156 DWORD style = 0; local
[all...]
/external/chromium_org/tools/json_schema_compiler/highlighters/
H A Dnone_highlighter.py2 # Use of this source code is governed by a BSD-style license that can be
10 def GetCSS(self, style):
13 def GetCodeElement(self, code, style):
/external/chromium_org/v8/test/intl/number-format/
H A Dparse-currency.js31 var nf = new Intl.NumberFormat(['en'], {style: 'currency', currency: 'USD'});

Completed in 1473 milliseconds

1234567891011>>