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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleAdjuster.cpp46 #include "core/rendering/style/GridPosition.h"
47 #include "core/rendering/style/RenderStyle.h"
48 #include "core/rendering/style/RenderStyleConstants.h"
69 static void addIntrinsicMargins(RenderStyle* style) argument
72 const int intrinsicMargin = 2 * style->effectiveZoom();
76 if (style->width().isIntrinsicOrAuto()) {
77 if (style->marginLeft().quirk())
78 style->setMarginLeft(Length(intrinsicMargin, Fixed));
79 if (style->marginRight().quirk())
80 style
137 doesNotInheritTextDecoration(const RenderStyle* style, const Element* e) argument
146 isInTopLayer(const Element* element, const RenderStyle* style) argument
166 hasWillChangeThatCreatesStackingContext(const RenderStyle* style) argument
197 adjustRenderStyle(RenderStyle* style, RenderStyle* parentStyle, Element *e, const CachedUAStyle* cachedUAStyle) argument
289 adjustStyleForTagName(RenderStyle* style, RenderStyle* parentStyle, Element& element) argument
379 adjustOverflow(RenderStyle* style) argument
410 adjustStyleForDisplay(RenderStyle* style, RenderStyle* parentStyle) argument
[all...]
H A DAnimatedStyleBuilder.cpp59 #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));
260 RenderStyle* style = state.style(); local
263 style->setBackgroundColor(toAnimatableColor(value)->color());
264 style->setVisitedLinkBackgroundColor(toAnimatableColor(value)->visitedLinkColor());
267 setOnFillLayers<CSSPropertyBackgroundImage>(style->accessBackgroundLayers(), value, state);
270 setOnFillLayers<CSSPropertyBackgroundPositionX>(style->accessBackgroundLayers(), value, state);
273 setOnFillLayers<CSSPropertyBackgroundPositionY>(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* fillLayer, const RenderStyle& style) argument
216 createFromColor(CSSPropertyID property, const RenderStyle& style) argument
263 create(CSSPropertyID property, const RenderStyle& style) argument
[all...]
/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/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.cpp51 void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
55 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, 0, CSSPrimitiveValue::CSS_PX);
56 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
58 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
59 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, 0, CSSPrimitiveValue::CSS_PX);
61 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
62 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
68 addPropertyToPresentationAttributeStyle(style, CSSPropertyWidth, 1, CSSPrimitiveValue::CSS_PX);
70 addHTMLLengthToStyle(style, CSSPropertyWidth, value);
72 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderStyl
[all...]
H A DHTMLDivElement.cpp42 void HTMLDivElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
46 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitCenter);
48 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitLeft);
50 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitRight);
52 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, value);
54 HTMLElement::collectStyleForPresentationAttribute(name, value, style);
H A DHTMLParagraphElement.cpp42 void HTMLParagraphElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
46 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitCenter);
48 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitLeft);
50 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitRight);
52 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, value);
54 HTMLElement::collectStyleForPresentationAttribute(name, value, 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);
/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
51 ASSERT(style->hasAppearance());
52 border = style->border();
53 backgroundLayers = *style->backgroundLayers();
54 backgroundColor = style->backgroundColor();
/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...]
H A Dimports.c59 * @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) { argument
96 if ((cur == NULL) || (style == NULL))
101 xsltTransformError(NULL, style, cur,
106 base = xmlNodeGetBase(style
65 xsltFixImportedCompSteps(xsltStylesheetPtr master, xsltStylesheetPtr style) argument
184 xsltParseStylesheetInclude(xsltStylesheetPtr style, xmlNodePtr cur) argument
314 xsltStylesheetPtr style; local
341 xsltStylesheetPtr style; local
397 xsltStylesheetPtr style; local
[all...]
H A Dpreproc.h28 xsltDocumentComp (xsltStylesheetPtr style,
33 xsltStylePreCompute (xsltStylesheetPtr style,
36 xsltFreeStylePreComps (xsltStylesheetPtr style);
/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):
H A Dhilite_me_highlighter.py2 # Use of this source code is governed by a BSD-style license that can be
11 def GetCSS(self, style):
14 def GetCodeElement(self, code, style):
20 ('style', style),
/external/chromium_org/v8/test/intl/number-format/
H A Dparse-currency.js31 var nf = new Intl.NumberFormat(['en'], {style: 'currency', currency: 'USD'});
/external/chromium-trace/trace-viewer/src/tcmalloc/
H A Dheap_instance_track.css2 * 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 544 milliseconds

1234567891011>>