OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:appearance
(Results
26 - 50
of
452
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/chromium-trace/src/shared/js/cr/ui/
menu_item.js
39
// Adding the 'custom-
appearance
' class prevents widgets.css from changing
40
// the
appearance
of this element.
41
this.classList.add('custom-
appearance
');
/external/webkit/Source/WebCore/css/
mediaControlsQtFullscreen.css
55
-webkit-
appearance
: media-current-time-display;
69
-webkit-
appearance
: media-volume-slider-container;
74
-webkit-
appearance
: media-volume-slider;
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;
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;
themeQtNoListboxes.css
31
-webkit-
appearance
: menulist;
/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/rendering/
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
...]
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
...]
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
...]
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
...]
/cts/tests/tests/webkitsecurity/assets/
first-letter-inline-flow-split-table-crash.html
4
.pSpanStyle { overflow: hidden; -webkit-
appearance
: button; }
relative-position-replaced-in-table-display-crash.html
5
.secondDivStyle { -webkit-
appearance
: button; }
crash-section-logical-height-changed-needsCellRecalc.html
4
.c12 { -webkit-
appearance
: button; }
/development/samples/SearchableDictionary/res/xml/
searchable.xml
20
<!-- The attributes below configure the Android search box
appearance
/external/chromium/chrome/browser/resources/ntp4/
recently_closed.css
9
-webkit-
appearance
: none;
/external/chromium/chrome/browser/ui/cocoa/wrench_menu/
wrench_menu_button_cell.mm
14
// Inset the rect to match the
appearance
of the layout of interface builder.
/external/chromium/chrome/common/
security_style.h
9
// Various aspects of the UI change their
appearance
according to the security
/external/webkit/Source/WebCore/inspector/front-end/
goToLineDialog.css
30
-webkit-
appearance
: none;
/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]));
/packages/apps/Contacts/res/layout/
select_dialog_item.xml
20
except the text
appearance
is medium.
/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/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
...]
/external/chromium/chrome/browser/ui/views/infobars/
infobar_view.h
54
// Creates a menu button with an infobar-specific
appearance
.
60
// Creates a text button with an infobar-specific
appearance
.
/external/chromium/chrome/browser/chromeos/frame/
bubble_frame_view.h
64
// Allows to tweak
appearance
of the view.
Completed in 417 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>