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

1 2 3 4

  /external/webkit/Source/WebCore/css/
themeQtNoListboxes.css 31 -webkit-appearance: menulist;
mediaControlsChromium.css 49 -webkit-appearance: media-mute-button;
61 -webkit-appearance: media-play-button;
74 -webkit-appearance: media-timeline-container;
96 -webkit-appearance: media-current-time-display;
129 -webkit-appearance: media-time-remaining-display;
158 -webkit-appearance: media-slider;
181 -webkit-appearance: media-seek-back-button;
186 -webkit-appearance: media-seek-forward-button;
191 -webkit-appearance: media-fullscreen-button;
196 -webkit-appearance: media-volume-slider-container
    [all...]
mediaControlsAndroid.css 56 -webkit-appearance: media-play-button;
63 -webkit-appearance: media-controls-background;
82 -webkit-appearance: media-slider;
98 -webkit-appearance: media-seek-back-button;
105 -webkit-appearance: media-seek-forward-button;
112 -webkit-appearance: media-fullscreen-button;
127 -webkit-appearance: media-toggle-closed-captions-button;
mediaControls.css 58 -webkit-appearance: media-mute-button;
68 -webkit-appearance: media-play-button;
78 -webkit-appearance: media-controls-background;
97 -webkit-appearance: media-slider;
116 -webkit-appearance: media-seek-back-button;
126 -webkit-appearance: media-seek-forward-button;
136 -webkit-appearance: media-fullscreen-button;
160 -webkit-appearance: media-toggle-closed-captions-button;
170 -webkit-appearance: media-volume-slider-mute-button;
mediaControlsEfl.css 52 -webkit-appearance: media-mute-button;
62 -webkit-appearance: media-play-button;
72 -webkit-appearance: media-controls-background;
91 -webkit-appearance: media-slider;
115 -webkit-appearance: media-seek-back-button;
125 -webkit-appearance: media-seek-forward-button;
135 -webkit-appearance: media-fullscreen-button;
159 -webkit-appearance: media-toggle-closed-captions-button;
169 -webkit-appearance: media-volume-slider-mute-button;
mediaControlsQuickTime.css 34 -webkit-appearance: media-controls-background;
62 -webkit-appearance: none;
147 -webkit-appearance: media-rewind-button;
158 -webkit-appearance: media-return-to-realtime-button;
189 -webkit-appearance: media-toggle-closed-captions-button;
200 -webkit-appearance: media-volume-slider-container;
211 -webkit-appearance: media-volume-slider;
223 -webkit-appearance: media-volume-slider-mute-button;
fullscreenQuickTime.css 30 -webkit-appearance: none;
76 -webkit-appearance: media-mute-button;
86 -webkit-appearance: media-slider;
96 -webkit-appearance: media-mute-button;
mediaControlsGtk.css 63 -webkit-appearance: media-current-time-display;
90 -webkit-appearance: media-volume-slider-container;
97 -webkit-appearance: media-volume-slider;
mediaControlsQtFullscreen.css 55 -webkit-appearance: media-current-time-display;
69 -webkit-appearance: media-volume-slider-container;
74 -webkit-appearance: media-volume-slider;
wml.css 104 -webkit-appearance: button;
130 -webkit-appearance: textfield;
166 -webkit-appearance: menulist;
181 -webkit-appearance: listbox;
190 -webkit-appearance: menulist;
html.css 380 -webkit-appearance: button;
407 -webkit-appearance: textfield;
417 -webkit-appearance: searchfield;
422 -webkit-appearance: searchfield-cancel-button;
427 -webkit-appearance: searchfield-decoration;
432 -webkit-appearance: searchfield-results-decoration;
437 -webkit-appearance: searchfield-results-button;
442 -webkit-appearance: list-button;
447 -webkit-appearance: inner-spin-button;
455 -webkit-appearance: outer-spin-button
    [all...]
mediaControlsQt.css 108 -webkit-appearance: media-current-time-display;
126 -webkit-appearance: media-current-time-display;
164 -webkit-appearance: media-volume-slider-container;
171 -webkit-appearance: media-volume-slider-container;
178 -webkit-appearance: media-volume-slider;
189 -webkit-appearance: media-volume-slider;
  /external/webkit/Source/WebCore/platform/haiku/
RenderThemeHaiku.cpp 58 static bool supportsFocus(ControlPart appearance)
60 switch (appearance) {
77 return supportsFocus(style->appearance());
  /external/webkit/Source/WebCore/html/shadow/
SliderThumbElement.cpp 55 // FIXME: Find a way to cascade appearance (see the layout method) and get rid of this class.
71 // FIXME: Hard-coding this cascade of appearance is bad, because it's something
74 if (parentStyle->appearance() == SliderVerticalPart)
76 else if (parentStyle->appearance() == SliderHorizontalPart)
78 else if (parentStyle->appearance() == MediaSliderPart)
80 else if (parentStyle->appearance() == MediaVolumeSliderPart)
121 bool isVertical = sliderStyle->appearance() == SliderVerticalPart || sliderStyle->appearance() == MediaVolumeSliderPart;
MeterShadowElement.cpp 61 return meterRenderer && !meterRenderer->theme()->supportsMeter(meterRenderer->style()->appearance()) && HTMLDivElement::rendererIsNeeded(style);
  /external/webkit/Source/WebCore/platform/wx/
RenderThemeWx.cpp 155 if (style->appearance() == TextFieldPart || style->appearance() == TextAreaPart)
168 switch (o->style()->appearance()) {
184 if (o->style()->appearance() == CheckboxPart)
289 ControlPart part = o->style()->appearance();
353 if (supportsFocus(o->style()->appearance()) && isFocused(o))
382 if (supportsFocus(o->style()->appearance()) && isFocused(o))
  /external/chromium/chrome/browser/resources/ntp4/
recently_closed.css 9 -webkit-appearance: none;
  /external/webkit/Source/WebCore/rendering/
RenderThemeSafari.cpp 256 if (style->appearance() == TextFieldPart || style->appearance() == TextAreaPart || style->appearance() == ListboxPart)
265 switch (o->style()->appearance()) {
319 if (o->style()->appearance() == CheckboxPart || o->style()->appearance() == RadioPart) {
333 if (o->style()->appearance() == CheckboxPart)
507 // There are three appearance constants for buttons.
519 if (style->appearance() == PushButtonPart) {
813 // Draw the gradients to give the styled popup menu a button appearance
    [all...]
RenderThemeWin.cpp 380 bool RenderThemeWin::supportsFocus(ControlPart appearance) const
382 switch (appearance) {
394 return supportsFocus(style->appearance());
400 switch (o->style()->appearance()) {
412 state = (o->style()->appearance() == RadioPart) ? DFCS_BUTTONRADIO : DFCS_BUTTONCHECK;
447 ControlPart appearance = o->style()->appearance(); local
450 else if (isReadOnlyControl(o) && (TextFieldPart == appearance || TextAreaPart == appearance || SearchFieldPart == appearance))
    [all...]
RenderTheme.cpp 75 ControlPart part = style->appearance();
180 // Call the appropriate style adjustment method based off the appearance value.
181 switch (style->appearance()) {
262 ControlPart part = o->style()->appearance();
282 // Call the appropriate paint method based off the appearance value.
384 return true; // We don't support the appearance, so let the normal background/border paint.
392 // Call the appropriate paint method based off the appearance value.
393 switch (o->style()->appearance()) {
443 // Call the appropriate paint method based off the appearance value.
444 switch (o->style()->appearance()) {
    [all...]
RenderThemeChromiumWin.cpp 158 static bool supportsFocus(ControlPart appearance)
160 switch (appearance) {
250 return style->appearance() == ButtonPart
251 || style->appearance() == PushButtonPart;
405 if (o->style()->appearance() == SliderThumbHorizontalPart) {
408 } else if (o->style()->appearance() == SliderThumbVerticalPart) {
537 ControlPart appearance = o->style()->appearance(); local
541 result = (appearance == TextFieldPart || appearance == TextAreaPart || appearance == SearchFieldPart) ? ETS_READONLY : TS_DISABLED
    [all...]
  /frameworks/base/core/java/android/text/style/
TextAppearanceSpan.java 41 * text appearance. The <code>appearance</code> should be, for example,
44 public TextAppearanceSpan(Context context, int appearance) {
45 this(context, appearance, -1);
50 * text appearance, and the specified text color resource
51 * to determine the color. The <code>appearance</code> should be,
56 public TextAppearanceSpan(Context context, int appearance, int colorList) {
60 context.obtainStyledAttributes(appearance,
  /frameworks/base/core/tests/coretests/src/android/text/
SpannedTest.java 93 TextAppearanceSpan[] appearance = s2.getSpans(7, 8, local
95 assertEquals(1, appearance.length);
96 assertEquals(7, s2.getSpanStart(appearance[0]));
97 assertEquals(8, s2.getSpanEnd(appearance[0]));
  /frameworks/base/core/java/android/widget/
Switch.java 167 int appearance = a.getResourceId( local
169 if (appearance != 0) {
170 setSwitchTextAppearance(context, appearance);
190 TypedArray appearance = local
197 colors = appearance.getColorStateList(com.android.internal.R.styleable.
206 ts = appearance.getDimensionPixelSize(com.android.internal.R.styleable.
217 typefaceIndex = appearance.getInt(com.android.internal.R.styleable.
219 styleIndex = appearance.getInt(com.android.internal.R.styleable.
224 boolean allCaps = appearance.getBoolean(com.android.internal.R.styleable.
233 appearance.recycle()
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 209 switch (style->appearance()) {
236 switch (style->appearance()) {
286 switch (style->appearance()) {
317 if (o->style()->appearance() == CheckboxPart || o->style()->appearance() == RadioPart)
328 if (o->style()->appearance() == CheckboxPart)
375 switch (o->style()->appearance()) {
458 switch (renderStyle->appearance()) {
476 switch (renderStyle->appearance()) {
561 if (style->appearance() == PushButtonPart)
654 ControlPart appearance = initializeCommonQStyleOptions(option, o); local
702 ControlPart appearance = initializeCommonQStyleOptions(panel, o); local
912 ControlPart appearance = initializeCommonQStyleOptions(option, o); local
    [all...]

Completed in 1117 milliseconds

1 2 3 4