Searched refs:style (Results 176 - 200 of 1767) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/include/core/
H A DSkStrokeRec.h4 * Use of this source code is governed by a BSD-style license that can be
21 SkStrokeRec(InitStyle style);
52 * strokeAndFill==true -> new style will be Fill
53 * strokeAndFill==false -> new style will be Hairline
68 Style style = this->getStyle(); local
69 return (kStroke_Style == style) || (kStrokeAndFill_Style == style);
76 * If there was no change (i.e. style == hairline or fill) this returns
/external/chromium_org/third_party/skia/src/ports/
H A DSkFontConfigTypeface.h4 * Use of this source code is governed by a BSD-style license that can be
21 FontConfigTypeface(Style style, argument
24 : INHERITED(style, SkTypefaceCache::NewFontID(), false)
29 FontConfigTypeface(Style style, SkStream* localStream) argument
30 : INHERITED(style, SkTypefaceCache::NewFontID(), false) {
H A DSkFontHost_none.cpp5 * Use of this source code is governed by a BSD-style license that can be
15 SkTypeface::Style style) {
13 CreateTypeface(const SkTypeface* familyFace, const char famillyName[], SkTypeface::Style style) argument
/external/chromium_org/ui/base/win/
H A Dwindow_impl.h2 // Use of this source code is governed by a BSD-style license that can be
59 void set_window_style(DWORD style) { window_style_ = style; } argument
63 void set_window_ex_style(DWORD style) { window_ex_style_ = style; } argument
66 // Sets the class style to use. The default is CS_DBLCLKS.
/external/icu4c/io/
H A Dlocbund.h76 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style);
/external/skia/include/core/
H A DSkStrokeRec.h4 * Use of this source code is governed by a BSD-style license that can be
21 SkStrokeRec(InitStyle style);
52 * strokeAndFill==true -> new style will be Fill
53 * strokeAndFill==false -> new style will be Hairline
68 Style style = this->getStyle(); local
69 return (kStroke_Style == style) || (kStrokeAndFill_Style == style);
76 * If there was no change (i.e. style == hairline or fill) this returns
/external/skia/src/ports/
H A DSkFontConfigTypeface.h4 * Use of this source code is governed by a BSD-style license that can be
21 FontConfigTypeface(Style style, argument
24 : INHERITED(style, SkTypefaceCache::NewFontID(), false)
29 FontConfigTypeface(Style style, bool fixedWidth, SkStream* localStream) argument
30 : INHERITED(style, SkTypefaceCache::NewFontID(), fixedWidth) {
H A DSkFontHost_none.cpp5 * Use of this source code is governed by a BSD-style license that can be
15 SkTypeface::Style style) {
13 CreateTypeface(const SkTypeface* familyFace, const char famillyName[], SkTypeface::Style style) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLIFrameElement.cpp59 void HTMLIFrameElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
62 addHTMLLengthToStyle(style, CSSPropertyWidth, value);
64 addHTMLLengthToStyle(style, CSSPropertyHeight, value);
66 applyAlignmentAttributeToStyle(value, style);
72 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderWidth, 0, CSSPrimitiveValue::CSS_PX);
75 HTMLFrameElementBase::collectStyleForPresentationAttribute(name, value, style);
102 return isURLAllowed() && context.style()->display() != NONE;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderButton.cpp46 m_inner = createAnonymousBlock(style()->display());
47 setupInnerStyle(m_inner->style());
70 // RenderBlock::setStyle is going to apply a new style to the inner block, which
75 m_inner->style()->setFlexGrow(newStyle->initialFlexGrow());
76 m_inner->style()->setMarginTop(newStyle->initialMargin());
77 m_inner->style()->setMarginBottom(newStyle->initialMargin());
86 if (m_inner) // RenderBlock handled updating the anonymous block's style.
87 setupInnerStyle(m_inner->style());
100 innerStyle->setFlexDirection(style()->flexDirection());
H A DRenderMultiColumnBlock.cpp51 child->setStyle(RenderStyle::createAnonymousStyleWithDisplay(style(), BLOCK));
61 ASSERT(!style()->hasAutoColumnCount() || !style()->hasAutoColumnWidth());
65 LayoutUnit colWidth = max<LayoutUnit>(1, LayoutUnit(style()->columnWidth()));
66 int colCount = max<int>(1, style()->columnCount());
68 if (style()->hasAutoColumnWidth() && !style()->hasAutoColumnCount()) {
71 } else if (!style()->hasAutoColumnWidth() && style()->hasAutoColumnCount()) {
143 m_flowThread->setStyle(RenderStyle::createAnonymousStyleWithDisplay(style(), BLOC
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.cpp66 RenderStyle* style = text->style(); local
67 ASSERT(style);
74 , style->direction()
75 , isOverride(style->unicodeBidi()) /* directionalOverride */);
84 if (textRunNeedsRenderingContext(style->font()))
108 bool needsContext = textRunNeedsRenderingContext(text->style()->font());
H A DSVGInlineTextBox.cpp92 RenderStyle* style = textRenderer->style(); local
93 ASSERT(style);
95 TextRun textRun = constructTextRun(style, fragment);
114 FloatRect SVGInlineTextBox::selectionRectForTextFragment(const SVGTextFragment& fragment, int startPosition, int endPosition, RenderStyle* style) argument
117 ASSERT(style);
135 FloatRect selectionRect = scaledFont.selectionRectForText(constructTextRun(style, fragment), textOrigin, fragment.height * scalingFactor, startPosition, endPosition);
154 RenderStyle* style = text->style(); local
155 ASSERT(style);
351 acquirePaintingResource(GraphicsContext*& context, float scalingFactor, RenderObject* renderer, RenderStyle* style) argument
398 prepareGraphicsContextForTextPainting(GraphicsContext*& context, float scalingFactor, TextRun& textRun, RenderStyle* style) argument
427 constructTextRun(RenderStyle* style, const SVGTextFragment& fragment) const argument
603 paintTextWithShadows(GraphicsContext* context, RenderStyle* style, TextRun& textRun, const SVGTextFragment& fragment, int startPosition, int endPosition) argument
653 paintText(GraphicsContext* context, RenderStyle* style, RenderStyle* selectionStyle, const SVGTextFragment& fragment, bool hasSelection, bool paintSelectedTextOnly) argument
[all...]
H A DRenderSVGShape.cpp99 SVGRenderSupport::applyStrokeStyleToStrokeData(&strokeData, style(), this);
122 if (requiresFill && !RenderSVGResource::fillPaintingResource(this, style(), fallbackColor))
134 if (requiresStroke && !RenderSVGResource::strokePaintingResource(this, style(), fallbackColor))
202 if (!style()->svgStyle()->hasMarkers())
216 void RenderSVGShape::fillShape(RenderStyle* style, GraphicsContext* context) argument
219 if (RenderSVGResource* fillPaintingResource = RenderSVGResource::fillPaintingResource(this, style, fallbackColor)) {
220 if (fillPaintingResource->applyResource(this, style, context, ApplyToFillMode))
225 if (fallbackResource->applyResource(this, style, context, ApplyToFillMode))
231 void RenderSVGShape::strokeShape(RenderStyle* style, GraphicsContext* context) argument
234 if (RenderSVGResource* strokePaintingResource = RenderSVGResource::strokePaintingResource(this, style, fallbackColo
248 RenderStyle* style = this->style(); local
[all...]
/external/chromium_org/chrome/browser/resources/options/chromeos/
H A Ddisplay_overscan.js2 // Use of this source code is governed by a BSD-style license that can be
72 displayOverscanPage.style.width =
74 displayOverscanPage.style.minWidth = displayOverscanPage.style.width;
75 displayOverscanPage.style.height =
82 operationsTable.style.top = buttonsContainer.offsetTop / 2 -
/external/chromium/chrome/browser/resources/
H A Dkeyboard_overlay.js2 // Use of this source code is governed by a BSD-style license that can be
281 instructions.style.visibility = 'visible';
283 instructions.style.visibility = 'hidden';
309 keyText.style.visibility = 'visible';
311 keyText.style.visibility = 'hidden';
317 shortcutText.style.visibility = 'visible';
320 shortcutText.style.visibility = 'hidden';
326 shortcutText.style.textAlign = format;
327 keyText.style.textAlign = format;
369 key.style
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dutil.js2 // Use of this source code is governed by a BSD-style license that can be
11 node.style.width = widthPx.toFixed(0) + 'px';
20 node.style.height = heightPx.toFixed(0) + 'px';
32 node.style.left = leftPx.toFixed(0) + 'px';
33 node.style.top = topPx.toFixed(0) + 'px';
44 node.style.display = isVisible ? '' : 'none';
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleBuilderCustom.h56 float zoom = state.style()->effectiveZoom();
57 return primitiveValue->computeLength<T>(state.style(), state.rootElementStyle(), zoom);
72 float zoom = state.style()->effectiveZoom();
75 T result = primitiveValue->computeLength<T>(state.style(), state.rootElementStyle(), zoom);
77 T originalLength = primitiveValue->computeLength<T>(state.style(), state.rootElementStyle(), 1.0);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DKeyframeList.h29 #include "core/rendering/style/StyleInheritedData.h"
43 KeyframeValue(float key, PassRefPtr<RenderStyle> style) argument
45 , m_style(style)
57 const RenderStyle* style() const { return m_style.get(); } function in class:WebCore::KeyframeValue
58 void setStyle(PassRefPtr<RenderStyle> style) { m_style = style; } argument
H A DShadowData.h43 static PassOwnPtr<ShadowData> create(const IntPoint& location, int blur, int spread, ShadowStyle style, const StyleColor& color) argument
45 return adoptPtr(new ShadowData(location, blur, spread, style, color));
61 ShadowStyle style() const { return m_style; } function in class:WebCore::ShadowData
78 ShadowData(const IntPoint& location, int blur, int spread, ShadowStyle style, const StyleColor& color) argument
83 , m_style(style)
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGStopElement.cpp112 RenderStyle* style = renderer() ? renderer()->style() : 0; local
113 // FIXME: This check for null style exists to address Bug WK 90814, a rare crash condition in
114 // which the renderer or style is null. This entire class is scheduled for removal (Bug WK 86941)
116 if (!style || !style->svgStyle())
119 const SVGRenderStyle* svgStyle = style->svgStyle();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DViewportControl.js39 this.element.style.overflow = "auto";
85 this._contentElement.style.setProperty("height", "100000px");
105 this._topGapElement.style.height = (this._rowHeight * this._firstVisibleIndex) + "px";
106 this._bottomGapElement.style.height = (this._rowHeight * (itemCount - this._lastVisibleIndex - 1)) + "px";
111 this._contentElement.style.removeProperty("height");
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dphp.js68 var style = "string";
71 var style = state.pending.style;
73 var style = htmlMode.token(stream, state.curState);
78 if (style == "string" && /\"$/.test(cur) && !/\?>/.test(cur)) state.pending = '"';
79 else state.pending = {end: stream.pos, style: style};
82 return style;
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dtmutfmt.h86 * Create TimeUnitFormat with default locale, and full name style.
93 * Create TimeUnitFormat given locale, and full name style.
99 * Create TimeUnitFormat given locale and style.
102 TimeUnitFormat(const Locale& locale, EStyle style, UErrorCode& status);
224 void create(const Locale& locale, EStyle style, UErrorCode& status);
234 void readFromCurrentLocale(EStyle style, const char* key, UErrorCode& status);
238 void checkConsistency(EStyle style, const char* key, UErrorCode& status);
241 void searchInLocaleChain(EStyle style, const char* key, const char* localeName,
/external/chromium_org/webkit/data/test_shell/sort/
H A Dsort.js201 this.compare_x.style.borderColor = "black";
202 this.compare_y.style.borderColor = "black";
205 this.swap_x.style.backgroundColor = "green";
206 this.swap_y.style.backgroundColor = "green";
272 text += "<li class='bar' style='border: " + border + "px solid black; height:" + height + "px; left:" + left + "; width:" + width + "' id='" + this.name + val + "' value='" + val + "'></li>";
292 this.compare_x.style.borderColor="black";
294 bx.style.borderColor="yellow";
299 this.compare_y.style.borderColor="black";
301 by.style.borderColor="white";
314 this.swap_x.style
[all...]

Completed in 588 milliseconds

1234567891011>>