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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimatableValueFactory.cpp 38 #include "core/rendering/style/RenderStyle.h"
122 static PassRefPtr<AnimatableValue> createFromLength(const Length& length, const RenderStyle* style)
128 return AnimatableNumber::create(adjustFloatForAbsoluteZoom(length.value(), style), AnimatableNumber::UnitTypeLength);
167 PassRefPtr<AnimatableValue> CSSAnimatableValueFactory::create(CSSPropertyID property, const RenderStyle* style)
171 return createFromLength(style->bottom(), style);
173 return createFromLength(style->height(), style);
175 return createFromLength(style->left(), style);
    [all...]
  /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 48 #include "core/rendering/style/GridPosition.h"
49 #include "core/rendering/style/RenderStyle.h"
50 #include "core/rendering/style/RenderStyleConstants.h"
68 static void addIntrinsicMargins(RenderStyle* style)
71 const int intrinsicMargin = 2 * style->effectiveZoom();
75 if (style->width().isIntrinsicOrAuto()) {
76 if (style->marginLeft().quirk())
77 style->setMarginLeft(Length(intrinsicMargin, Fixed));
78 if (style->marginRight().quirk())
79 style->setMarginRight(Length(intrinsicMargin, Fixed))
313 Pagination::setStylesForPaginationMode(WebCore::paginationModeForRenderStyle(style), style); local
    [all...]
AnimatedStyleBuilder.cpp 39 #include "core/rendering/style/RenderStyle.h"
47 const RenderStyle* style = state.style(); local
48 return toAnimatableNumber(value)->toLength(style, state.rootElementStyle(), style->effectiveZoom());
63 RenderStyle* style = state.style(); local
66 style->setBottom(animatableValueToLength(value, state));
69 style->setHeight(animatableValueToLength(value, state));
72 style->setLeft(animatableValueToLength(value, state))
    [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;
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/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...]
preproc.h 28 xsltDocumentComp (xsltStylesheetPtr style,
33 xsltStylePreCompute (xsltStylesheetPtr style,
36 xsltFreeStylePreComps (xsltStylesheetPtr style);
  /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...]
preproc.h 28 xsltDocumentComp (xsltStylesheetPtr style,
33 xsltStylePreCompute (xsltStylesheetPtr style,
36 xsltFreeStylePreComps (xsltStylesheetPtr style);
  /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;
  /external/chromium_org/tools/json_schema_compiler/highlighters/
hilite_me_highlighter.py 2 # 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),
  /frameworks/base/graphics/java/android/graphics/
BlurMaskFilter.java 43 * @param style The Blur to use
46 public BlurMaskFilter(float radius, Blur style) {
47 native_instance = nativeConstructor(radius, style.native_int);
50 private static native int nativeConstructor(float radius, int style);

Completed in 3646 milliseconds

1 2 3 4 5 6 7 8 91011>>