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

1 2 3 4 5 6 7

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
ParameterIconStyle.java 24 public ParameterIconStyle(int id, Bitmap[] styles) {
25 super(id, styles.length);
26 mBitmaps = styles;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
elementsPanel.css 190 .styles-section {
201 .styles-pane .sidebar-separator {
205 .styles-section.user-rule {
209 .show-user-styles .styles-section.user-rule {
213 .styles-sidebar-placeholder {
217 .styles-section.read-only:not(.computed-style) {
221 .styles-section .properties li.not-parsed-ok {
225 .styles-section.computed-style .properties li.not-parsed-ok {
229 .styles-section .properties li.filter-match
    [all...]
  /external/chromium_org/tools/json_schema_compiler/highlighters/
pygments_highlighter.py 25 style=pygments.styles.get_style_by_name(style))
30 style=pygments.styles.get_style_by_name(style))
37 return list(pygments.styles.get_all_styles())
  /external/chromium_org/third_party/skia/experimental/ChromeUtils/
SkBorder.cpp 22 const BorderStyle styles[4])
29 memcpy(fStyles, styles, sizeof(fStyles));
SkBorder.h 69 SkBorder(const SkPaint paints[4], const SkScalar widths[4], const BorderStyle styles[4]);
  /external/skia/experimental/ChromeUtils/
SkBorder.cpp 22 const BorderStyle styles[4])
29 memcpy(fStyles, styles, sizeof(fStyles));
SkBorder.h 69 SkBorder(const SkPaint paints[4], const SkScalar widths[4], const BorderStyle styles[4]);
  /external/chromium_org/chrome/browser/autocomplete/
builtin_provider.cc 84 ACMatchClassifications styles; local
88 styles.push_back(ACMatchClassification(0, highlight ? kMatch : kUrl));
91 styles.push_back(ACMatchClassification(offset, kUrl));
94 base::string16(), styles); local
97 base::string16(), styles); local
100 base::string16(), styles); local
115 ACMatchClassifications styles; local
116 styles.push_back(ACMatchClassification(0, kMatch));
121 styles.push_back(ACMatchClassification(corrected_length, kUrl));
122 AddMatch(match, match.substr(corrected_length), styles);
132 ACMatchClassifications styles; local
    [all...]
builtin_provider.h 35 const ACMatchClassifications& styles);
  /external/chromium_org/third_party/icu/source/test/intltest/
reptest.cpp 34 * Set the styles to the style of the first character replaced.<br>
41 UnicodeString styles; member in class:TestReplaceable
69 this->styles = s;
73 return new TestReplaceable(chars, styles);
79 return styles;
85 s.append(styles);
123 if (start != limit && styles.charAt(start) != NO_STYLE) {
124 newStyle = styles.charAt(start);
126 newStyle = styles.charAt(start-1);
127 } else if (limit < styles.length())
    [all...]
  /external/icu/icu4c/source/test/intltest/
reptest.cpp 34 * Set the styles to the style of the first character replaced.<br>
41 UnicodeString styles; member in class:TestReplaceable
69 this->styles = s;
73 return new TestReplaceable(chars, styles);
79 return styles;
85 s.append(styles);
123 if (start != limit && styles.charAt(start) != NO_STYLE) {
124 newStyle = styles.charAt(start);
126 newStyle = styles.charAt(start-1);
127 } else if (limit < styles.length())
    [all...]
  /external/chromium_org/ui/app_list/
search_result.h 47 Tag(int styles, size_t start, size_t end)
48 : styles(styles),
52 int styles; member in struct:app_list::SearchResult::Tag
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/
update_webgl_conformance_tests_unittest.py 70 styles = {
87 for input, output in styles.items():
  /system/extras/tests/sdcard/
plot_sdcard.py 206 styles = {}
212 if not dataset.name in styles:
213 styles[dataset.name] = line_style
217 with_='lines ls %d' % styles[dataset.name])
220 with_='lines ls %d' % styles[dataset.name])
243 styles = {}
248 if not dataset.name in styles:
249 styles[dataset.name] = line_style
253 with_='impulses ls %d' % styles[dataset.name])
256 with_='impulses ls %d' % styles[dataset.name]
    [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 95 * @param {Object} params URL parameters containing styles for the link.
106 var styles = getMostVisitedStyles(params, !!text);
108 link.style.color = styles.color;
109 link.style.fontSize = styles.fontSize + 'px';
110 if (styles.fontFamily)
111 link.style.fontFamily = styles.fontFamily;
112 if (styles.textAlign)
113 link.style.textAlign = styles.textAlign;
114 if (styles.textFadePos) {
118 styles.textFadePos + 'px, rgba(0,0,0,0))'
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
omnibox_provider.cc 25 int ACMatchStyleToTagStyle(int styles) {
27 if (styles & ACMatchClassification::URL)
29 if (styles & ACMatchClassification::MATCH)
31 if (styles & ACMatchClassification::DIM)
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_view_browsertest.cc 40 // Validate window styles. We want to ensure that the window is created
41 // with expected styles regardless of its active state.
45 LONG styles = ::GetWindowLong(native_window, GWL_STYLE); local
46 EXPECT_EQ(0, styles & WS_MAXIMIZEBOX);
47 EXPECT_EQ(0, styles & WS_MINIMIZEBOX);
68 // Validate window styles. We want to ensure that the window is created
69 // with expected styles regardless of its active state.
73 LONG styles = ::GetWindowLong(native_window, GWL_STYLE); local
74 EXPECT_EQ(0, styles & WS_MAXIMIZEBOX);
75 EXPECT_EQ(0, styles & WS_MINIMIZEBOX)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 148 SparseArray<Typeface> styles = sTypefaceCache.get(ni); local
150 if (styles != null) {
151 typeface = styles.get(style);
158 if (styles == null) {
159 styles = new SparseArray<Typeface>(4);
160 sTypefaceCache.put(ni, styles);
162 styles.put(style, typeface);
  /external/chromium_org/third_party/skia/gm/
inversepaths.cpp 41 SkPaint::Style styles[] = { member in namespace:skiagm
103 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles);
117 paint.setStyle(styles[styleIndex]);
  /external/skia/gm/
inversepaths.cpp 41 SkPaint::Style styles[] = { member in namespace:skiagm
103 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles);
117 paint.setStyle(styles[styleIndex]);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
HtmlTooltipHelper.java 93 // prepare styles
94 String styles; local
96 styles = DesignerPlugin.readFile(PropertyTable.class.getResourceAsStream("Tooltip.css"),
98 if (styles == null) {
99 styles = "";
102 styles = "";
104 // prepare HTML with styles and tags
120 styles,
  /external/chromium_org/athena/main/
url_search_provider.cc 110 int ACMatchStyleToTagStyle(int styles) {
112 if (styles & ACMatchClassification::URL)
114 if (styles & ACMatchClassification::MATCH)
116 if (styles & ACMatchClassification::DIM)
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api.cc 315 std::vector<int> styles(description.length(), 0);
345 for (size_t j = offset; j < offset + length && j < styles.size(); ++j)
346 styles[j] |= type_class;
349 for (size_t i = 0; i < styles.size(); ++i) {
350 if (i == 0 || styles[i] != styles[i-1])
352 ACMatchClassification(i, styles[i]));
  /external/chromium_org/ui/gfx/
render_text_pango.cc 356 // Only split text runs as needed for bold and italic font styles changes.
357 BreakList<bool>::const_iterator bold = styles()[BOLD].breaks().begin();
358 BreakList<bool>::const_iterator italic = styles()[ITALIC].breaks().begin();
359 while (bold != styles()[BOLD].breaks().end() &&
360 italic != styles()[ITALIC].breaks().end()) {
363 const size_t bold_end = styles()[BOLD].GetRange(bold).end();
364 const size_t italic_end = styles()[ITALIC].GetRange(italic).end();
382 DCHECK(bold == styles()[BOLD].breaks().end());
383 DCHECK(italic == styles()[ITALIC].breaks().end());
411 internal::StyleIterator style(colors(), styles());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
ElementsPanel.js 71 this.sidebarPanes.styles = new WebInspector.StylesSidebarPane(this.sidebarPanes.computedStyle, this._setPseudoClassForNode.bind(this));
72 this.sidebarPanes.styles.addEventListener(WebInspector.StylesSidebarPane.Events.SelectorEditingStarted, this._onEditingSelectorStarted.bind(this));
73 this.sidebarPanes.styles.addEventListener(WebInspector.StylesSidebarPane.Events.SelectorEditingEnded, this._onEditingSelectorEnded.bind(this));
79 this.sidebarPanes.styles.setFilterBoxContainers(this._matchedStylesFilterBoxContainer, this._computedStylesFilterBoxContainer);
86 this.sidebarPanes.styles.addEventListener(WebInspector.SidebarPane.EventTypes.wasShown, this.updateStyles.bind(this, false));
92 this.sidebarPanes.styles.addEventListener("style edited", this._stylesPaneEdited, this);
93 this.sidebarPanes.styles.addEventListener("style property toggled", this._stylesPaneEdited, this);
275 if (!this.sidebarPanes.styles.isEditingSelector())
277 this.sidebarPanes.styles.updateEditingSelectorForNode(/** @type {!WebInspector.DOMNode} */(event.data));
689 // Once styles are edited, the Metrics pane should be updated
    [all...]

Completed in 678 milliseconds

1 2 3 4 5 6 7