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

1 2

  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 40 * @param {Object} params URL parameters containing styles for the link.
47 var styles = getMostVisitedStyles(params, !!text);
49 link.style.color = styles.color;
50 link.style.fontSize = styles.fontSize + 'px';
51 if (styles.fontFamily)
52 link.style.fontFamily = styles.fontFamily;
72 * Decodes most visited styles from URL parameters.
78 * @return {Object} Styles suitable for CSS interpolation.
81 var styles = {
89 styles.color = convertArrayToRGBAColor(themeInfo.textColorRgba) |
    [all...]
  /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...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h 55 const StylePropertySet* styles() const { return m_styles.get(); } function in class:WebCore::FINAL
62 void addStyles(const StylePropertySet* styles)
66 m_styles->mergeAndOverrideOnConflict(styles);
  /external/chromium_org/chrome/browser/autocomplete/
builtin_provider.cc 75 ACMatchClassifications styles; local
80 styles.push_back(ACMatchClassification(0, highlight ? kMatch : kUrl));
83 styles.push_back(ACMatchClassification(offset, kUrl));
85 AddMatch(ASCIIToUTF16(chrome::kChromeUIChromeURLsURL), styles); local
86 AddMatch(ASCIIToUTF16(chrome::kChromeUISettingsURL), styles); local
87 AddMatch(ASCIIToUTF16(chrome::kChromeUIVersionURL), styles); local
99 ACMatchClassifications styles; local
101 styles.push_back(ACMatchClassification(0, kMatch));
104 styles.push_back(ACMatchClassification(match_length, kUrl));
105 AddMatch(match_string, styles);
    [all...]
  /external/skia/gm/
inversepaths.cpp 41 SkPaint::Style styles[] = { member in namespace:skiagm
99 for (size_t styleIndex = 0; styleIndex < SK_ARRAY_COUNT(styles);
113 paint.setStyle(styles[styleIndex]);
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 114 SparseArray<Typeface> styles = sTypefaceCache.get(ni); local
116 if (styles != null) {
117 typeface = styles.get(style);
124 if (styles == null) {
125 styles = new SparseArray<Typeface>(4);
126 sTypefaceCache.put(ni, styles);
128 styles.put(style, typeface);
  /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...]
tufmtts.cpp 216 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/icu4c/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...]
tufmtts.cpp 217 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)) {
tztest.cpp 1325 TimeZone::EDisplayType styles[] = { TimeZone::SHORT, TimeZone::LONG }; local
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_omnibox_api.cc 128 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 to
    [all...]
  /external/chromium_org/ui/app_list/
search_result.h 42 Tag(int styles, size_t start, size_t end)
43 : styles(styles),
47 int styles; member in struct:app_list::SearchResult::Tag
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapCharacterSet.java 60 int[] styles = new int[characters.size()]; local
64 styles[index] = style;
69 oc.write(styles, "styles", null);
96 int[] styles = ic.readIntArray("styles", null); local
98 for (int style : styles) {
  /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,
  /frameworks/base/core/java/android/text/
BoringLayout.java 293 Object[] styles = sp.getSpans(0, length, ParagraphStyle.class); local
294 if (styles.length > 0) {
  /external/chromium_org/ui/gfx/
render_text.h 87 // Internal helper class used by derived classes to iterate colors and styles.
91 const std::vector<BreakList<bool> >& styles);
94 // Get the colors and styles at the current iterator position.
101 // Update the iterator to point to colors and styles applicable at |position|.
265 // Set various text styles over the entire text or a logical character range.
349 const std::vector<BreakList<bool> >& styles() const { return styles_; } function in class:gfx::RenderText
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
SettingsFragment.java 316 final StringBuilder styles = new StringBuilder(); local
318 if (styles.length() > 0) styles.append(", ");
319 styles.append(SubtypeLocaleUtils.getSubtypeDisplayNameInSystemLocale(subtype));
321 customInputStyles.setSummary(styles);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 115 * res/values/styles.xml - but unit tests pick other names */
116 private String mStyleFileName = "styles.xml";
265 // styles (like "id" or "style"), or attributes that the user
266 // probably does not want to define in styles (like layout
453 * @param file the styles.xml file to insert into
532 Set<String> styles = new HashSet<String>(); local
535 styles.add(element.getAttribute(ATTR_STYLE));
538 if (styles.size() > 1) {
543 String style = styles.iterator().next();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripLayoutHelper.java 594 final StyleSpan[] styles = ss.getSpans(0, text.length(), StyleSpan.class); local
595 if (styles.length == 0) {
599 if (styles[0].getStyle() == Typeface.BOLD) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationChooser.java 1812 Map<String, ResourceValue> styles = frameworResources.get(ResourceType.STYLE); local
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js     [all...]
  /frameworks/ex/common/java/com/android/ex/editstyledtext/
EditStyledText.java 1083 Object[] styles = editable.getSpans(0, len, Object.class); local
1460 DynamicDrawableSpan[] styles = local
1532 DynamicDrawableSpan[] styles = local
1779 Object[] styles = spannable.getSpans(0, len, Object.class); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 

Completed in 4611 milliseconds

1 2