Searched defs:styles (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_util.js80 * @param {Object} params URL parameters containing styles for the link.
93 var styles = getMostVisitedStyles(params, !!text);
95 link.style.color = styles.color;
96 link.style.fontSize = styles.fontSize + 'px';
97 if (styles.fontFamily)
98 link.style.fontFamily = styles.fontFamily;
130 * Decodes most visited styles from URL parameters.
139 var styles = {
147 styles.color = convertArrayToRGBAColor(themeInfo.textColorRgba) ||
148 styles
[all...]
/external/chromium_org/chrome/browser/ui/views/panels/
H A Dpanel_view_browsertest.cc40 // 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
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_omnibox_unittest.cc19 ListValue* styles) {
24 styles->Append(style);
17 AppendStyle(const std::string& type, int offset, int length, ListValue* styles) argument
H A Dextension_omnibox_api.cc128 ListValue* styles; local
130 suggestion_value->GetList(kSuggestionDescriptionStyles, &styles));
131 EXTENSION_FUNCTION_VALIDATE(suggestion.ReadStylesFromValue(*styles));
155 ListValue* styles; local
157 suggestion_value->GetList(kSuggestionDescriptionStyles, &styles));
158 EXTENSION_FUNCTION_VALIDATE(suggestion.ReadStylesFromValue(*styles));
186 // Step 1: Build a vector of styles, 1 per character of description text.
187 std::vector<int> styles; local
188 styles.resize(description.length()); // sets all styles t
[all...]
/external/chromium_org/chrome/browser/autocomplete/
H A Dbuiltin_provider.cc75 ACMatchClassifications styles; local
80 styles.push_back(ACMatchClassification(0, highlight ? kMatch : kUrl));
83 styles.push_back(ACMatchClassification(offset, kUrl));
86 styles); local
88 styles); local
90 styles); local
106 ACMatchClassifications styles; local
108 styles.push_back(ACMatchClassification(0, kMatch));
111 styles.push_back(ACMatchClassification(match_length, kUrl));
112 AddMatch(match_string, match_string.substr(match_length), styles);
131 AddMatch(const base::string16& match_string, const base::string16& inline_completion, const ACMatchClassifications& styles) argument
[all...]
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Domnibox_provider.cc21 int ACMatchStyleToTagStyle(int styles) { argument
23 if (styles & ACMatchClassification::URL)
25 if (styles & ACMatchClassification::MATCH)
27 if (styles & ACMatchClassification::DIM)
/external/skia/gm/
H A Dinversepaths.cpp41 SkPaint::Style styles[] = { member in namespace:skiagm
99 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles);
113 paint.setStyle(styles[styleIndex]);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dreptest.cpp34 * 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
[all...]
H A Dtufmtts.cpp216 TimeUnitFormat::EStyle styles[] = {TimeUnitFormat::kFull, TimeUnitFormat::kAbbreviate}; local
266 styleIndex < sizeof(styles)/sizeof(styles[0]);
282 TimeUnitFormat *tfmt = new TimeUnitFormat(l, styles[styleIndex], status);
312 if (!assertEquals("formatted time string is not expected, locale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + (int)tunits[unitIndex], expected[counter], str)) {
/external/chromium_org/ui/app_list/
H A Dsearch_result.h41 Tag(int styles, size_t start, size_t end) argument
42 : styles(styles),
46 int styles; member in struct:app_list::SearchResult::Tag
/external/icu4c/test/intltest/
H A Dreptest.cpp34 * 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
[all...]
H A Dtufmtts.cpp217 UTimeUnitFormatStyle styles[] = {UTMUTFMT_FULL_STYLE, UTMUTFMT_ABBREVIATED_STYLE}; local
267 styleIndex < sizeof(styles)/sizeof(styles[0]);
283 TimeUnitFormat *tfmt = new TimeUnitFormat(l, styles[styleIndex], status);
313 if (!assertEquals("formatted time string is not expected, locale: " + UnicodeString(locales[locIndex]) + " style: " + (int)styles[styleIndex] + " units: " + (int)tunits[unitIndex], expected[counter], str)) {
H A Dtztest.cpp1325 TimeZone::EDisplayType styles[] = { TimeZone::SHORT, TimeZone::LONG }; local
1341 for(j = 0; j < (int32_t)(sizeof(styles)/sizeof(styles[0])); j++) {
1345 from->getDisplayName(useDst[k], styles[j],locale, fromName);
1346 to->getDisplayName(useDst[k], styles[j], locale, toName);
/external/chromium_org/ui/gfx/
H A Drender_text.h88 // Internal helper class used by derived classes to iterate colors and styles.
92 const std::vector<BreakList<bool> >& styles);
95 // Get the colors and styles at the current iterator position.
102 // Update the iterator to point to colors and styles applicable at |position|.
300 // Set various text styles over the entire text or a logical character range.
403 const std::vector<BreakList<bool> >& styles() const { return styles_; } function in class:gfx::RenderText
H A Drender_text.cc309 const std::vector<BreakList<bool> >& styles)
311 styles_(styles) {
351 // Adjust ranged styles and colors to accommodate a new text length.
899 // Save the underline and color breaks to undo the temporary styles later.
917 // Restore the underline and color breaks to undo the temporary styles.
308 StyleIterator(const BreakList<SkColor>& colors, const std::vector<BreakList<bool> >& styles) argument
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
H A Dmootools-1.2.2-core-nc.js2124 Contains methods for interacting with the styles of Elements in a fashionable way.
2130 Element.Properties.styles = {set: function(styles){
2131 this.setStyles(styles);
2220 setStyles: function(styles){
2221 for (var style in styles) this.setStyle(style, styles[style]);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 551 milliseconds