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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/text/style/
ParagraphStyle.java 17 package android.text.style;
UpdateAppearance.java 17 package android.text.style;
UpdateLayout.java 17 package android.text.style;
WrapTogetherSpan.java 17 package android.text.style;
SuggestionSpan.aidl 17 package android.text.style;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleAdjuster.cpp 46 #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)
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->setMarginRight(Length(intrinsicMargin, Fixed))
    [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));
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->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)
51 ASSERT(style->hasAppearance());
52 border = style->border();
53 backgroundLayers = *style->backgroundLayers();
54 backgroundColor = style->backgroundColor();
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 13 self.style = ttk.Style()
17 style = self.style
18 style.configure('TButton', background='yellow')
19 self.assertEqual(style.configure('TButton', 'background'),
21 self.assertTrue(isinstance(style.configure('TButton'), dict))
25 style = self.style
26 style.map('TButton', background=[('active', 'background', 'blue')]
    [all...]
  /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 51 void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
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, CSSPropertyBorderStyle, CSSValueSolid)
    [all...]
HTMLDivElement.cpp 42 void HTMLDivElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
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);
HTMLParagraphElement.cpp 42 void HTMLParagraphElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
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);
  /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-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 1114 milliseconds

1 2 3 4 5 6 7 8 91011>>