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

12

/external/chromium_org/third_party/skia/experimental/ChromeUtils/
H A DSkBorder.cpp22 const BorderStyle styles[4])
29 memcpy(fStyles, styles, sizeof(fStyles));
20 SkBorder(const SkPaint paints[4], const SkScalar widths[4], const BorderStyle styles[4]) argument
/external/skia/experimental/ChromeUtils/
H A DSkBorder.cpp22 const BorderStyle styles[4])
29 memcpy(fStyles, styles, sizeof(fStyles));
20 SkBorder(const SkPaint paints[4], const SkScalar widths[4], const BorderStyle styles[4]) argument
/external/chromium_org/chrome/browser/resources/local_ntp/
H A Dmost_visited_util.js95 * @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
[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_org/chrome/browser/autocomplete/
H A Dbuiltin_provider.cc84 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
158 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.cc25 int ACMatchStyleToTagStyle(int styles) { argument
27 if (styles & ACMatchClassification::URL)
29 if (styles & ACMatchClassification::MATCH)
31 if (styles & ACMatchClassification::DIM)
/external/chromium_org/third_party/skia/gm/
H A Dinversepaths.cpp41 SkPaint::Style styles[] = { member in namespace:skiagm
103 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles);
117 paint.setStyle(styles[styleIndex]);
H A Dblurrect.cpp169 const SkBlurStyle styles[] = {kNormal_SkBlurStyle, kInner_SkBlurStyle, kOuter_SkBlurStyle}; local
188 for (size_t k = 0 ; k < SK_ARRAY_COUNT(styles) ; k++) {
189 SkBlurStyle style = styles[k];
/external/skia/gm/
H A Dinversepaths.cpp41 SkPaint::Style styles[] = { member in namespace:skiagm
103 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles);
117 paint.setStyle(styles[styleIndex]);
H A Dblurrect.cpp169 const SkBlurStyle styles[] = {kNormal_SkBlurStyle, kInner_SkBlurStyle, kOuter_SkBlurStyle}; local
188 for (size_t k = 0 ; k < SK_ARRAY_COUNT(styles) ; k++) {
189 SkBlurStyle style = styles[k];
/external/chromium_org/athena/main/
H A Durl_search_provider.cc110 int ACMatchStyleToTagStyle(int styles) { argument
112 if (styles & ACMatchClassification::URL)
114 if (styles & ACMatchClassification::MATCH)
116 if (styles & ACMatchClassification::DIM)
/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.cpp217 UTimeUnitFormatStyle styles[] = {UTMUTFMT_FULL_STYLE, UTMUTFMT_ABBREVIATED_STYLE}; local
279 styleIndex < sizeof(styles)/sizeof(styles[0]);
295 TimeUnitFormat *tfmt = new TimeUnitFormat(l, styles[styleIndex], status);
325 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.cpp1327 TimeZone::EDisplayType styles[] = { TimeZone::SHORT, TimeZone::LONG }; local
1343 for(j = 0; j < (int32_t)(sizeof(styles)/sizeof(styles[0])); j++) {
1347 from->getDisplayName(useDst[k], styles[j],locale, fromName);
1348 to->getDisplayName(useDst[k], styles[j], locale, toName);
/external/chromium_org/third_party/skia/tests/
H A DPaintTest.cpp266 const SkPaint::Style styles[] = { local
285 FOR_SETUP(p, styles, setStyle)
H A DBlurTest.cpp510 const SkBlurStyle styles[] = { local
520 for (size_t i = 0; i < SK_ARRAY_COUNT(styles); ++i) {
521 const SkBlurStyle style = (SkBlurStyle)styles[i];
/external/chromium_org/ui/app_list/
H A Dsearch_result.h47 Tag(int styles, size_t start, size_t end) argument
48 : styles(styles),
52 int styles; member in struct:app_list::SearchResult::Tag
/external/icu/icu4c/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.cpp267 UTimeUnitFormatStyle styles[] = {UTMUTFMT_FULL_STYLE, UTMUTFMT_ABBREVIATED_STYLE}; local
329 styleIndex < sizeof(styles)/sizeof(styles[0]);
345 TimeUnitFormat *tfmt = new TimeUnitFormat(l, styles[styleIndex], status);
375 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 Dmeasfmttest.cpp539 UMeasureFormatWidth styles[] = { local
604 for ( int32_t styleIndex = 0; styleIndex < LENGTHOF(styles); ++styleIndex ) {
610 MeasureFormat fmt(locales[locIndex], styles[styleIndex], status);
H A Dtztest.cpp1318 TimeZone::EDisplayType styles[] = { TimeZone::SHORT, TimeZone::LONG }; local
1334 for(j = 0; j < (int32_t)(sizeof(styles)/sizeof(styles[0])); j++) {
1338 from->getDisplayName(useDst[k], styles[j],locale, fromName);
1339 to->getDisplayName(useDst[k], styles[j], locale, toName);
/external/skia/tests/
H A DPaintTest.cpp266 const SkPaint::Style styles[] = { local
285 FOR_SETUP(p, styles, setStyle)
H A DBlurTest.cpp510 const SkBlurStyle styles[] = { local
520 for (size_t i = 0; i < SK_ARRAY_COUNT(styles); ++i) {
521 const SkBlurStyle style = (SkBlurStyle)styles[i];
/external/chromium_org/ui/gfx/
H A Drender_text.h112 // Internal helper class used by derived classes to iterate colors and styles.
116 const std::vector<BreakList<bool> >& styles);
119 // Get the colors and styles at the current iterator position.
126 // Update the iterator to point to colors and styles applicable at |position|.
326 // Set various text styles over the entire text or a logical character range.
436 const std::vector<BreakList<bool> >& styles() const { return styles_; } function in class:gfx::RenderText
/external/pdfium/core/src/fxge/apple/
H A Dapple_int.h42 FX_DWORD styles; member in struct:_IOS_FONTDATA

Completed in 2229 milliseconds

12