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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/css/
themeChromiumAndroid.css 36 -webkit-appearance: menulist;
mediaControls.css 104 -webkit-appearance: media-mute-button;
123 -webkit-appearance: media-play-button;
139 -webkit-appearance: media-controls-background;
152 -webkit-appearance: media-current-time-display;
179 -webkit-appearance: media-slider;
192 -webkit-appearance: media-volume-slider;
235 -webkit-appearance: media-seek-back-button;
245 -webkit-appearance: media-seek-forward-button;
255 -webkit-appearance: media-enter-fullscreen-button;
285 -webkit-appearance: media-toggle-closed-captions-button
    [all...]
html.css 389 -webkit-appearance: button;
416 -webkit-appearance: textfield;
426 -webkit-appearance: searchfield;
442 -webkit-appearance: searchfield-cancel-button;
450 -webkit-appearance: searchfield-cancel-button;
458 -webkit-appearance: searchfield-decoration;
467 -webkit-appearance: searchfield-results-decoration;
574 -webkit-appearance: menulist-button;
587 -webkit-appearance: inner-spin-button;
603 -webkit-appearance: -webkit-input-speech-button
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
widgets.css 15 input[type='submit']):not(.custom-appearance):not(.link-button),
19 -webkit-appearance: none;
34 input[type='submit']):not(.custom-appearance):not(.link-button),
48 input[type='submit']):not(.custom-appearance):not(.link-button) {
54 -webkit-appearance: none;
110 -webkit-appearance: textfield;
153 input[type='submit']):not(.custom-appearance):not(.link-button)) {
176 input[type='submit']):not(.custom-appearance):not(.link-button)) {
193 input[type='submit']):not(.custom-appearance):not(.link-button),
235 input[type='submit']):not(.custom-appearance):not(.link-button))
    [all...]
  /external/chromium_org/ui/webui/resources/css/
widgets.css 13 input[type='submit']):not(.custom-appearance):not(.link-button),
17 -webkit-appearance: none;
32 input[type='submit']):not(.custom-appearance):not(.link-button),
46 input[type='submit']):not(.custom-appearance):not(.link-button) {
52 -webkit-appearance: none;
108 -webkit-appearance: textfield;
153 input[type='submit']):not(.custom-appearance):not(.link-button)) {
176 input[type='submit']):not(.custom-appearance):not(.link-button)) {
193 input[type='submit']):not(.custom-appearance):not(.link-button),
236 input[type='submit']):not(.custom-appearance):not(.link-button))
    [all...]
trash.css 6 -webkit-appearance: none;
menu.css 33 -webkit-appearance: none;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderThemeChromiumWin.cpp 137 static bool supportsFocus(ControlPart appearance)
139 switch (appearance) {
177 return style->appearance() == ButtonPart
178 || style->appearance() == PushButtonPart
179 || style->appearance() == SquareButtonPart;
282 if (style->appearance() == SliderThumbHorizontalPart) {
285 } else if (style->appearance() == SliderThumbVerticalPart) {
414 ControlPart appearance = o->style()->appearance(); local
418 result = (appearance == TextFieldPart || appearance == TextAreaPart || appearance == SearchFieldPart) ? ETS_READONLY : (…)
    [all...]
RenderTheme.cpp 100 ControlPart part = style->appearance();
204 // Call the appropriate style adjustment method based off the appearance value.
205 switch (style->appearance()) {
281 ControlPart part = o->style()->appearance();
301 // Call the appropriate paint method based off the appearance value.
393 return true; // We don't support the appearance, so let the normal background/border paint.
401 // Call the appropriate paint method based off the appearance value.
402 switch (o->style()->appearance()) {
445 // Call the appropriate paint method based off the appearance value.
446 switch (o->style()->appearance()) {
    [all...]
RenderThemeChromiumMac.mm 509 if (style->appearance() == TextFieldPart || style->appearance() == TextAreaPart || style->appearance() == ListboxPart)
516 if (style->appearance() == MenulistPart && style->effectiveZoom() != 1.0f)
519 if (style->appearance() == SearchFieldPart && style->effectiveZoom() != 1)
529 ControlPart part = o->style()->appearance();
649 if (o->style()->appearance() == CheckboxPart)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
SliderThumbElement.cpp 66 if (sliderStyle->appearance() == MediaVolumeSliderPart && input->renderer()->theme()->usesVerticalVolumeSlider())
69 return sliderStyle->appearance() == SliderVerticalPart;
101 if (parentStyle->appearance() == SliderVerticalPart)
103 else if (parentStyle->appearance() == SliderHorizontalPart)
105 else if (parentStyle->appearance() == MediaSliderPart)
107 else if (parentStyle->appearance() == MediaVolumeSliderPart)
109 else if (parentStyle->appearance() == MediaFullScreenVolumeSliderPart)
122 // FIXME: Find a way to cascade appearance and adjust heights, and get rid of this class.
201 && (parent()->style()->appearance() == MediaVolumeSliderPart || parent()->style()->appearance() == MediaSliderPart))
    [all...]
MeterShadowElement.cpp 58 return render && !render->theme()->supportsMeter(render->style()->appearance()) && HTMLDivElement::rendererIsNeeded(context);
79 return render && !render->theme()->supportsMeter(render->style()->appearance()) && HTMLDivElement::rendererIsNeeded(context);
  /external/chromium/chrome/browser/resources/ntp4/
recently_closed.css 9 -webkit-appearance: none;
  /external/chromium_org/chrome/browser/resources/file_manager/css/
list.css 65 select):not(.custom-appearance):not(.link-button) {
  /external/chromium_org/chrome/browser/resources/net_internals/
status_view.css 37 -webkit-appearance: none;
  /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/chromium_org/chrome/browser/resources/chromeos/login/
oobe.css 33 button.custom-appearance:not(.button-restricted):not(.button-fancy) {
41 button.custom-appearance:focus:focus {
45 button:not(.custom-appearance) {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/
select.css 9 -webkit-appearance: button;
  /external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/chromium/
pickerCommonChromium.css 27 -webkit-appearance: none;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilitySlider.cpp 60 ControlPart styleAppearance = style->appearance();
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryChart.java 213 TypedArray appearance = null; local
216 appearance = context.obtainStyledAttributes(ap,
220 if (appearance != null) {
221 int n = appearance.getIndexCount();
223 int attr = appearance.getIndex(i);
227 textColor = appearance.getColorStateList(attr);
231 textSize = appearance.getDimensionPixelSize(attr, textSize);
235 typefaceIndex = appearance.getInt(attr, -1);
239 styleIndex = appearance.getInt(attr, -1);
244 appearance.recycle()
    [all...]
  /external/chromium_org/chromeos/dbus/
bluetooth_device_client.h 45 // The GAP external appearance of the device. Read-only.
46 dbus::Property<uint16> appearance; member in struct:chromeos::BluetoothDeviceClient::Properties
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
panelEnablerView.css 126 -webkit-appearance: none;
148 -webkit-appearance: none;

Completed in 684 milliseconds

1 2 3 4