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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
Pagination.cpp 23 #include "core/rendering/style/RenderStyle.h"
27 void Pagination::setStylesForPaginationMode(Mode paginationMode, RenderStyle* style)
34 style->setColumnAxis(HorizontalColumnAxis);
35 if (style->isHorizontalWritingMode())
36 style->setColumnProgression(style->isLeftToRightDirection() ? NormalColumnProgression : ReverseColumnProgression);
38 style->setColumnProgression(style->isFlippedBlocksWritingMode() ? ReverseColumnProgression : NormalColumnProgression);
41 style->setColumnAxis(HorizontalColumnAxis);
42 if (style->isHorizontalWritingMode()
    [all...]
  /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"
67 static void addIntrinsicMargins(RenderStyle* style)
70 const int intrinsicMargin = 2 * style->effectiveZoom();
74 if (style->width().isIntrinsicOrAuto()) {
75 if (style->marginLeft().quirk())
76 style->setMarginLeft(Length(intrinsicMargin, Fixed));
77 if (style->marginRight().quirk())
78 style->setMarginRight(Length(intrinsicMargin, Fixed))
316 Pagination::setStylesForPaginationMode(WebCore::paginationModeForRenderStyle(style), style); local
    [all...]
AnimatedStyleBuilder.cpp 58 #include "core/rendering/style/RenderStyle.h"
237 RenderStyle* style = state.style(); local
240 style->setBackgroundColor(toAnimatableColor(value)->color());
241 style->setVisitedLinkBackgroundColor(toAnimatableColor(value)->visitedLinkColor());
244 setOnFillLayers<CSSPropertyBackgroundImage>(style->accessBackgroundLayers(), value, state);
247 setOnFillLayers<CSSPropertyBackgroundPositionX>(style->accessBackgroundLayers(), value, state);
250 setOnFillLayers<CSSPropertyBackgroundPositionY>(style->accessBackgroundLayers(), value, state);
253 setOnFillLayers<CSSPropertyBackgroundSize>(style->accessBackgroundLayers(), value, state);
256 style->setBaselineShiftValue(toAnimatableSVGLength(value)->toSVGLength())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 58 #include "core/rendering/style/RenderStyle.h"
64 static PassRefPtr<AnimatableValue> createFromLength(const Length& length, const RenderStyle& style)
68 return AnimatableLength::create(adjustFloatForAbsoluteZoom(length.value(), style), AnimatableLength::UnitTypePixels);
80 return AnimatableLength::create(CSSCalcValue::createExpressionNode(length.calculationValue()->expression(), style.effectiveZoom()));
99 static PassRefPtr<AnimatableValue> createFromLineHeight(const Length& length, const RenderStyle& style)
108 return createFromLength(length, style);
116 inline static PassRefPtr<AnimatableValue> createFromLengthBox(const LengthBox& lengthBox, const RenderStyle& style)
119 createFromLength(lengthBox.left(), style),
120 createFromLength(lengthBox.right(), style),
121 createFromLength(lengthBox.top(), 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/rendering/style/
CachedUAStyle.h 25 #include "core/rendering/style/RenderStyle.h"
40 explicit CachedUAStyle(const RenderStyle* style)
41 : hasAppearance(style->hasAppearance())
49 border = style->border();
50 backgroundLayers = *style->backgroundLayers();
51 backgroundColor = style->backgroundColor();
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLHRElement.cpp 54 void HTMLHRElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style)
58 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, 0, CSSPrimitiveValue::CSS_PX);
59 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
61 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
62 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, 0, CSSPrimitiveValue::CSS_PX);
64 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginLeft, CSSValueAuto);
65 addPropertyToPresentationAttributeStyle(style, CSSPropertyMarginRight, CSSValueAuto);
71 addPropertyToPresentationAttributeStyle(style, CSSPropertyWidth, 1, CSSPrimitiveValue::CSS_PX);
73 addHTMLLengthToStyle(style, CSSPropertyWidth, value);
75 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderStyle, CSSValueSolid)
    [all...]
  /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/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 945 milliseconds

1 2 3 4 5 6 7 8 91011>>