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

1234567891011>>

/external/webkit/LayoutTests/fast/dom/CSSStyleDeclaration/script-tests/
H A Dcss-style-item.js1 description("This tests indexing outside the range of the style object.");
4 element.style.color = 'red';
6 var style = element.style; variable
8 shouldEvaluateTo('style.length', 1);
9 shouldBeEqualToString('style[0]', 'color');
10 shouldBeEqualToString('style[1]', '');
11 shouldBeUndefined('style[-1]')
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
H A DBCStrictStyle.java1 package org.bouncycastle.asn1.x500.style;
H A DX500NameTokenizer.java1 package org.bouncycastle.asn1.x500.style;
/external/chromium/chrome/browser/chromeos/login/
H A Dtextfield_with_margin.cc2 // Use of this source code is governed by a BSD-style license that can be
26 TextfieldWithMargin::TextfieldWithMargin(views::Textfield::StyleFlags style) argument
27 : Textfield(style) {
/external/webkit/Source/WebCore/css/
H A DCSSFontFaceRule.h46 CSSMutableStyleDeclaration* style() const { return m_style.get(); } function in class:WebCore::CSSFontFaceRule
H A DCSSFontFaceRule.cpp38 void CSSFontFaceRule::setDeclaration(PassRefPtr<CSSMutableStyleDeclaration> style) argument
40 m_style = style;
H A DCSSRuleList.cpp43 StyleBase* style = list->item(i); local
44 if (style->isRule() && !style->isCharsetRule())
45 append(static_cast<CSSRule*>(style));
82 if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(m_lstCSSRules[index].get())->style())
83 style->setParent(0);
H A DFontValue.h42 RefPtr<CSSPrimitiveValue> style; member in class:WebCore::FontValue
H A DSVGCSSComputedStyleDeclaration.cpp72 RenderStyle* style = node->computedStyle(); local
73 if (!style)
76 const SVGRenderStyle* svgStyle = style->svgStyle();
183 return valueForShadow(svgStyle->shadow(), propertyID, style);
H A DShadowValue.h39 PassRefPtr<CSSPrimitiveValue> style,
42 return adoptRef(new ShadowValue(x, y, blur, spread, style, color));
51 RefPtr<CSSPrimitiveValue> style; member in class:WebCore::ShadowValue
59 PassRefPtr<CSSPrimitiveValue> style,
35 create(PassRefPtr<CSSPrimitiveValue> x, PassRefPtr<CSSPrimitiveValue> y, PassRefPtr<CSSPrimitiveValue> blur, PassRefPtr<CSSPrimitiveValue> spread, PassRefPtr<CSSPrimitiveValue> style, PassRefPtr<CSSPrimitiveValue> color) argument
/external/webkit/Source/WebCore/editing/
H A DRemoveCSSPropertyCommand.cpp45 CSSMutableStyleDeclaration* style = m_element->inlineStyleDecl(); local
46 m_oldValue = style->getPropertyValue(m_property);
47 m_important = style->getPropertyPriority(m_property);
48 style->removeProperty(m_property);
53 CSSMutableStyleDeclaration* style = m_element->inlineStyleDecl(); local
54 style->setProperty(m_property, m_oldValue, m_important);
/external/webkit/Source/WebCore/mathml/
H A DMathMLTextElement.cpp50 RenderObject* MathMLTextElement::createRenderer(RenderArena* arena, RenderStyle* style) argument
55 return MathMLElement::createRenderer(arena, style);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DSelfOrientingSashForm.java38 * Initialize a newly created control to have the given parent and style. The style describes the
41 * The style value is either one of the style constants defined in the class <code>SWT</code>
44 * <code>SWT</code> style constants. The class description for all SWT widget classes should
45 * include a comment which describes the style constants which are applicable to the class.
50 * @param style
51 * the style of widget to construct
64 public SelfOrientingSashForm(Composite parent, int style) { argument
65 super(parent, style);
[all...]
/external/icu4c/io/
H A Dlocbund.cpp36 int32_t style; local
37 for (style = 0; style < ULOCALEBUNDLE_NUMBERFORMAT_COUNT; style++) {
38 unum_close(gPosixNumberFormat[style]);
39 gPosixNumberFormat[style] = NULL;
46 static inline UNumberFormat * copyInvariantFormatter(ULocaleBundle *result, UNumberFormatStyle style) { argument
47 if (result->fNumberFormat[style-1] == NULL) {
51 UMTX_CHECK(NULL, gPosixNumberFormat[style-1] == NULL, needsInit);
53 UNumberFormat *formatAlias = unum_open(style, NUL
160 u_locbund_getNumberFormat(ULocaleBundle *bundle, UNumberFormatStyle style) argument
[all...]
/external/skia/legacy/src/animator/
H A DSkPaintParts.h5 * Use of this source code is governed by a BSD-style license that can be
68 return SkTypeface::CreateFromName(fontName.c_str(), style); }
72 SkTypeface::Style style; member in class:SkDrawTypeface
/external/skia/src/animator/
H A DSkPaintParts.h5 * Use of this source code is governed by a BSD-style license that can be
68 return SkTypeface::CreateFromName(fontName.c_str(), style); }
72 SkTypeface::Style style; member in class:SkDrawTypeface
/external/skia/src/core/
H A DSkFontDescriptor.cpp4 * Use of this source code is governed by a BSD-style license that can be
23 SkFontDescriptor::SkFontDescriptor(SkTypeface::Style style) { argument
24 fStyle = style;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CanvasRenderingContext2DCustom.cpp52 static v8::Handle<v8::Value> toV8Object(CanvasStyle* style) argument
54 if (style->canvasGradient())
55 return toV8(style->canvasGradient());
57 if (style->canvasPattern())
58 return toV8(style->canvasPattern());
60 return v8String(style->color());
/external/webkit/Source/WebCore/html/
H A DHTMLBRElement.cpp77 RenderObject* HTMLBRElement::createRenderer(RenderArena* arena, RenderStyle* style) argument
79 if (style->contentData())
80 return RenderObject::createObject(this, style);
/external/webkit/Source/WebCore/html/shadow/
H A DDetailsMarkerControl.cpp52 bool DetailsMarkerControl::rendererIsNeeded(RenderStyle* style) argument
54 return summaryElement()->isMainSummary() && HTMLDivElement::rendererIsNeeded(style);
H A DMeterShadowElement.cpp58 bool MeterShadowElement::rendererIsNeeded(RenderStyle* style) argument
61 return meterRenderer && !meterRenderer->theme()->supportsMeter(meterRenderer->style()->appearance()) && HTMLDivElement::rendererIsNeeded(style);
H A DProgressShadowElement.cpp55 bool ProgressShadowElement::rendererIsNeeded(RenderStyle* style) argument
58 return progressRenderer && !progressRenderer->style()->hasAppearance() && HTMLDivElement::rendererIsNeeded(style);
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DFontCacheHaiku.cpp64 font_style style; local
65 be_plain_font->GetFamilyAndStyle(&family, &style);
/external/webkit/Source/WebCore/rendering/style/
H A DBorderValue.h69 EBorderStyle style() const { return static_cast<EBorderStyle>(m_style); } function in class:WebCore::BorderValue

Completed in 431 milliseconds

1234567891011>>