/packages/apps/LegacyCamera/res/values/ |
styles.xml | 21 <style name="ThemeCamera" parent="android:Theme.Holo.NoActionBar.Fullscreen"> 25 </style> 26 <style name="OnScreenHintTextAppearance"> 33 </style> 34 <style name="OnScreenHintTextAppearance.Small"> 38 </style> 39 <style name="Animation_OnScreenHint"> 42 </style> 43 <style name="ReviewControlIcon"> 51 </style> [all...] |
/external/chromium/chrome/common/extensions/docs/ |
experimental.sidebar.html | 28 <div style="display:none"> 37 <div style="display:inline"> 120 <td valign="middle"><a href="http://code.google.com/"><img src="images/code_labs_logo.gif" height="43" width="161" alt="Google Code Labs" style="border:0; margin:0;"></a></td> 121 <td valign="middle" width="100%" style="padding-left:0.6em;"> 122 <form action="http://www.google.com/cse" id="cse" style="margin-top:0.5em"> 260 <li style="display: none; "> 271 <li style="display: none; "> 311 <li style="display: none; "> 339 <div class="apiGroup" style="display: none; "> 366 <div class="summary"><span style="display: none; ">void</span [all...] |
browserAction.html | 28 <div style="display:none"> 37 <div style="display:inline"> 120 <td valign="middle"><a href="http://code.google.com/"><img src="images/code_labs_logo.gif" height="43" width="161" alt="Google Code Labs" style="border:0; margin:0;"></a></td> 121 <td valign="middle" width="100%" style="padding-left:0.6em;"> 122 <form action="http://www.google.com/cse" id="cse" style="margin-top:0.5em"> 263 <li style="display: none; "> 283 <li style="display: none; "> 290 <li style="display: none; "> 298 <li style="display: none; "> 330 <li style="display: none; " [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtDrawingStyle.java | 25 * Description of the drawing styles with specific color, line style and alpha 35 * The style definition corresponding to {@link DrawingStyle#SELECTION} 40 * The style definition corresponding to {@link DrawingStyle#GUIDELINE} 45 * The style definition corresponding to {@link DrawingStyle#GUIDELINE} 50 * The style definition corresponding to {@link DrawingStyle#GUIDELINE_DASHED} 55 * The style definition corresponding to {@link DrawingStyle#DISTANCE} 60 * The style definition corresponding to {@link DrawingStyle#GRID} 65 * The style definition corresponding to {@link DrawingStyle#HOVER} 70 * The style definition corresponding to {@link DrawingStyle#HOVER} 75 * The style definition corresponding to {@link DrawingStyle#ANCHOR [all...] |
/frameworks/base/docs/html/sdk/api_diff/13/changes/ |
android.R.style.html | 2 <HTML style="overflow:auto;"> 10 android.R.style 15 <style type="text/css"> 22 </style> 24 <style type="text/css"> 25 </style> 30 <div id="header" style="margin-bottom:0;padding-bottom:0;"> 42 <div class="and-diff-id" style="margin-top:6px;margin-right:8px;"> 48 <td class="diffspec" style="padding-top:.25em">To Level:</td> 49 <td class="diffvaluenew" style="padding-top:.25em">13</td [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTheme.cpp | 55 #include "core/rendering/style/RenderStyle.h" 97 void RenderTheme::adjustStyle(RenderStyle* style, Element* e, const CachedUAStyle& uaStyle) 100 ControlPart part = style->appearance(); 101 if (style->display() == INLINE || style->display() == INLINE_TABLE || style->display() == TABLE_ROW_GROUP 102 || style->display() == TABLE_HEADER_GROUP || style->display() == TABLE_FOOTER_GROUP 103 || style->display() == TABLE_ROW || style->display() == TABLE_COLUMN_GROUP || style->display() == TABLE_COLUM [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLDialogElement.cpp | 33 #include "core/rendering/style/RenderStyle.h" 39 static bool needsCenteredPositioning(const RenderStyle* style) 41 return style->position() == AbsolutePosition && style->hasAutoTopAndBottom(); 77 RefPtr<RenderStyle> style = RenderStyle::clone(originalStyle.get()); local 79 // Override top to remain centered after style recalcs. 80 if (needsCenteredPositioning(style.get()) && m_topIsValid) 81 style->setTop(Length(m_top.toInt(), WebCore::Fixed)); 83 return style.release(); 92 if (!box || !needsCenteredPositioning(box->style())) [all...] |
HTMLTablePartElement.cpp | 49 void HTMLTablePartElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) 52 addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value); 56 style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document()->completeURL(url).string()))); 59 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueTop); 61 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueMiddle); 63 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueBottom); 65 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueBaseline); 67 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value); 70 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueWebkitCenter); 72 addPropertyToPresentationAttributeStyle(style, CSSPropertyTextAlign, CSSValueCenter) [all...] |
HTMLTableElement.cpp | 304 void HTMLTableElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) 307 addHTMLLengthToStyle(style, CSSPropertyWidth, value); 309 addHTMLLengthToStyle(style, CSSPropertyHeight, value); 311 addPropertyToPresentationAttributeStyle(style, CSSPropertyBorderWidth, parseBorderWidthAttribute(value), CSSPrimitiveValue::CSS_PX); 314 addHTMLColorToStyle(style, CSSPropertyBorderColor, value); 316 addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value); 320 style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document()->completeURL(url).string()))); 323 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value); 326 addHTMLLengthToStyle(style, CSSPropertyBorderSpacing, value); 328 addHTMLLengthToStyle(style, CSSPropertyMarginTop, value) 419 RefPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); local 475 RefPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); local 522 RefPtr<MutableStylePropertySet> style = MutableStylePropertySet::create(); local [all...] |
/packages/apps/Gallery2/res/values-land/ |
styles.xml | 19 <style name="ActionBarTwoLinePrimary" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title"> 21 </style> 25 <style name="ReviewControlIcon"> 33 </style> 34 <style name="SettingPopupWindow"> 40 </style> 41 <style name="PopupTitleText"> 50 </style> 51 <style name="ViewfinderLabelLayout" [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/benchmark/ |
options.html | 12 <style> 52 font-style: italic; 129 </style> 140 <h1>Configuration <a href="https://sites.google.com/a/chromium.org/dev/developers/design-documents/extensions/how-the-extension-system-works/chrome-benchmarking-extension" target="_blank" style="float:right"><font size="4%">Help</font></a></h1> 143 <input id="iterations" type="text" style="text-align:right" size="4"> 168 <th width=110 class="nobg" style="display:none">timestamp</th> 171 <th width=50 class="bg" style="display:none">start load mean</th> 172 <th width=50 class="bg" style="display:none">commit load mean</th> 177 <th width=50 class="bg" style="display:none">stderr</th> 178 <th width=50 class="bg" style="display:none">95% CI-low</th [all...] |
/packages/inputmethods/LatinIME/java/res/xml/ |
key_styles_number.xml | 24 <key-style 27 <key-style 31 <key-style 35 <key-style 40 <key-style 44 <key-style 48 <key-style 52 <key-style 57 <key-style 62 <key-style [all...] |
key_styles_common.xml | 28 <key-style 33 <key-style 38 <!-- Base key style for the key which may have settings or tab key as popup key. --> 42 <!-- Base style for shift key. A single space is used for dummy label in moreKeys. --> 43 <key-style 53 <key-style 62 <key-style 69 <key-style 76 <key-style 84 <key-style [all...] |
key_styles_enter.xml | 25 <!-- Navigate more keys style --> 33 <key-style 43 <key-style 51 <key-style 61 <key-style 69 <key-style 79 <key-style 89 <key-style 99 <key-style 108 <key-style [all...] |
/development/samples/Wiktionary/res/layout/ |
widget_word.xml | 22 style="@style/WidgetBackground"> 40 style="@style/Text.WordTitle" /> 53 style="@style/Text.WordType" /> 63 style="@style/BulletPoint" /> 77 style="@style/Text.Definition" / [all...] |
/development/samples/WiktionarySimple/res/layout/ |
widget_word.xml | 22 style="@style/WidgetBackground"> 40 style="@style/Text.WordTitle" /> 53 style="@style/Text.WordType" /> 63 style="@style/BulletPoint" /> 77 style="@style/Text.Definition" / [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/ |
show-hide-object.html | 7 <p><b>BUG ID:</b> <a href="rdar://problem/3572507">3572507</a> Flash in div with display:none style will not redraw when style changed to display:block (3479)</p> 9 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> <br> 15 <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b> 19 <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b> 32 document.getElementById('tab1').style.display = "block"; 33 document.getElementById('tab2').style.display = "none"; 36 document.getElementById('tab2').style.display = "block"; 37 document.getElementById('tab1').style.display = "none"; 47 <div id="tab2" style="display: none" [all...] |
/external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/t/ManualTest/ |
manualTest1.htm | 4 <style type="text/css"> 6 list-style-type: none; 12 list-style-type: none; 18 list-style-type: none; 21 list-style-type: none; 24 list-style-type: none; 30 list-style: none; 33 font-style: italic; 37 font-style: italic; 40 </style> [all...] |
/packages/apps/Calendar/res/layout/ |
recurrencepicker.xml | 55 style="@style/TextAppearance.RecurrencePickerStyle" 93 style="@style/TextAppearance.RecurrencePickerStyle" 114 style="@style/TextAppearance.RecurrencePickerStyle" 129 <com.android.calendar.recurrencepicker.WeekButton style="@style/RecurrenceDayOfWeekStyle" /> 131 <com.android.calendar.recurrencepicker.WeekButton style="@style/RecurrenceDayOfWeekStyle" / [all...] |
/packages/apps/Camera2/res/values-port/ |
styles.xml | 17 <style name="ReviewControlIcon"> 25 </style> 26 <style name="SettingPopupWindow"> 32 </style> 33 <style name="PopupTitleText"> 41 </style> 42 <style name="ViewfinderLabelLayout"> 49 </style> 50 <style name="SettingPopupWindow_xlarge"> 57 </style> [all...] |
/packages/apps/QuickSearchBox/res/layout/ |
suggestion.xml | 20 style="@style/Suggestion"> 25 style="@style/SuggestionIcon1" 33 style="@style/SuggestionIcon2" 43 style="@style/SuggestionText2" 54 style="@style/SuggestionText1 [all...] |
/packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/ |
NotificationUtilsTest.java | 26 * Verifies that we strip out <style /> tags. 30 final String html = "<body style=3D=22margin:0; padding:0;=22>" 31 + "<style type=3D=22text/css=22>=20" 34 + " html =7B -webkit-text-size-adjust:none; =7D</style>" 52 * Verifies that we strip out nested <style /> tags. 56 final String html = "<body style=3D=22margin:0; padding:0;=22>" 57 + "<style type=3D=22text/css=22>=20" 61 + " <style>html =7B -webkit-text-size-adjust:none; =7D</style></style>" [all...] |
/external/chromium_org/ui/views/corewm/ |
shadow.cc | 2 // Use of this source code is governed by a BSD-style license that can be 27 float GetOpacityForStyle(views::corewm::Shadow::Style style) { 28 switch (style) { 39 int GetInteriorInsetForStyle(views::corewm::Shadow::Style style) { 40 switch (style) { 62 void Shadow::Init(Style style) { 63 style_ = style; [all...] |
/external/chromium_org/ui/webui/resources/js/cr/ui/table/ |
table_list.js | 2 // Use of this source code is governed by a BSD-style license that can be 55 row.children[i].style.width = cm.getWidth(i) + 'px'; 57 row.style.width = cm.totalWidth + 'px'; 59 this.afterFiller_.style.width = cm.totalWidth + 'px'; 93 var style = this.style; 95 if (style.overflow != 'hidden') { 96 style.overflow = 'hidden'; 107 if (style.overflowX != 'scroll') { 108 style.overflowX = 'scroll' [all...] |
/packages/apps/Settings/res/xml/ |
device_info_status.xml | 21 style="?android:attr/preferenceInformationStyle" 26 style="?android:attr/preferenceInformationStyle" 31 style="?android:attr/preferenceInformationStyle" 36 style="?android:attr/preferenceInformationStyle" 41 style="?android:attr/preferenceInformationStyle" 46 style="?android:attr/preferenceInformationStyle" 51 style="?android:attr/preferenceInformationStyle" 56 style="?android:attr/preferenceInformationStyle" 61 style="?android:attr/preferenceInformationStyle" 66 style="?android:attr/preferenceInformationStyle [all...] |