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

1 2 3 4 5 6 7

  /external/llvm/lib/Support/
Process.cpp 100 #define COLOR(FGBG, CODE, BOLD) "\033[0;" BOLD FGBG CODE "m"
102 #define ALLCOLORS(FGBG,BOLD) {\
103 COLOR(FGBG, "0", BOLD),\
104 COLOR(FGBG, "1", BOLD),\
105 COLOR(FGBG, "2", BOLD),\
106 COLOR(FGBG, "3", BOLD),\
107 COLOR(FGBG, "4", BOLD),\
108 COLOR(FGBG, "5", BOLD),\
109 COLOR(FGBG, "6", BOLD),\
    [all...]
  /cts/tests/tests/text/src/android/text/style/cts/
StyleSpanTest.java 52 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
64 assertEquals(Typeface.BOLD, tp.getTypeface().getStyle());
75 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
87 assertEquals(Typeface.BOLD, tp.getTypeface().getStyle());
97 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
102 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
109 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
113 assertEquals(Typeface.BOLD, newSpan.getStyle());
  /external/chromium_org/ui/gfx/
text_constants.h 37 BOLD = 0,
font_list_unittest.cc 23 if (style & gfx::Font::BOLD)
24 font_string += "|bold";
48 int font_style = Font::BOLD | Font::ITALIC | Font::UNDERLINE;
52 EXPECT_EQ("Arial,Droid Sans serif,Bold Italic 11px",
66 FontList font_list = FontList(font.Derive(2, Font::BOLD));
67 EXPECT_EQ("Arial,Bold 10px", font_list.GetFontDescriptionString());
82 fonts.push_back(font.Derive(0, Font::BOLD));
83 fonts.push_back(font_1.Derive(-2, Font::BOLD));
85 EXPECT_EQ("Arial,Sans serif,Bold 8px", font_list.GetFontDescriptionString());
108 FontList font_list = FontList(" serif , Sans serif , Bold "
    [all...]
font.h 35 BOLD = 1,
63 // bitmask of the values: BOLD, ITALIC and UNDERLINE.
font_unittest.cc 73 Font bold(cf.Derive(0, Font::BOLD));
74 NativeFont native = bold.GetNativeFont();
76 EXPECT_EQ(bold.GetStyle(), Font::BOLD);
platform_font_win_unittest.cc 56 Font::BOLD);
60 EXPECT_EQ(Font::BOLD, derived_font.GetStyle());
platform_font_pango.cc 100 // only support BOLD.
101 style |= gfx::Font::BOLD;
160 if (gfx::Font::BOLD & style)
225 case gfx::Font::BOLD:
335 paint->setFakeBoldText((gfx::Font::BOLD & style_) && !typeface_->isBold());
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
FontRenderingTests.java 70 Typeface tf = Typeface.create("sans-serif", Typeface.BOLD);
82 Typeface tf = Typeface.create("sans-serif", Typeface.BOLD | Typeface.ITALIC);
94 // bold attribute on medium base font = black
95 Typeface tf = Typeface.create("sans-serif-medium", Typeface.BOLD);
107 Typeface tf = Typeface.create("sans-serif-medium", Typeface.BOLD | Typeface.ITALIC);
119 // bold attribute on light base font = medium
120 Typeface tf = Typeface.create("sans-serif-light", Typeface.BOLD);
132 Typeface tf = Typeface.create("sans-serif-light", Typeface.BOLD | Typeface.ITALIC);
144 // bold attribute on thin base font = normal
145 Typeface tf = Typeface.create("sans-serif-thin", Typeface.BOLD);
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
TypefaceTest.java 62 Typeface typeface = createTypeface(Typeface.BOLD);
64 assertEquals(Typeface.BOLD, typeface.getStyle());
94 typeface = Typeface.create(MONO, Typeface.BOLD);
101 typeface = Typeface.create(typeface, Typeface.BOLD);
108 typeface = Typeface.defaultFromStyle(Typeface.BOLD);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
SegmentedButtons.java 34 private static final Typeface BOLD = Typeface.create("sans-serif", Typeface.BOLD);
66 c.setTypeface(selected ? BOLD : MEDIUM);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizardState.java 117 mTextFont = new java.awt.Font(familyName, java.awt.Font.BOLD, 512);
124 mTextFont = new java.awt.Font(familyName, java.awt.Font.BOLD, 512);
130 mTextFont = new java.awt.Font("SansSerif", java.awt.Font.BOLD, 512);
  /frameworks/base/graphics/tests/graphicstests/src/android/graphics/
TypefaceTest.java 61 assertTrue("style", mFaces[1].getStyle() == Typeface.BOLD);
63 assertTrue("style", mFaces[3].getStyle() == Typeface.BOLD);
  /developers/build/prebuilts/gradle/TextLinkify/Application/src/main/java/com/example/android/textlinkify/
MainActivity.java 113 * Make the first 38 characters bold by applying a StyleSpan with bold typeface.
121 ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 39,
  /developers/samples/android/views/TextLinkify/Application/src/main/java/com/example/android/textlinkify/
MainActivity.java 113 * Make the first 38 characters bold by applying a StyleSpan with bold typeface.
121 ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 39,
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 75 ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 30,
  /development/samples/browseable/TextLinkify/src/com.example.android.textlinkify/
MainActivity.java 113 * Make the first 38 characters bold by applying a StyleSpan with bold typeface.
121 ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 39,
  /external/chromium_org/ash/system/tray/
tray_utils.cc 16 label->SetFontList(gfx::FontList().Derive(1, gfx::Font::BOLD));
  /frameworks/base/core/java/android/text/style/
StyleSpan.java 29 * Note that styles are cumulative -- if both bold and italic are set in
30 * separate spans, or if the base style is bold and a span calls for italic,
31 * you get bold italic. You can't turn off a style from the base style.
41 * include bold, italic, and normal. Values are constants defined
102 if ((fake & Typeface.BOLD) != 0) {
TypefaceSpan.java 86 if ((fake & Typeface.BOLD) != 0) {
  /external/chromium_org/ash/system/
tray_accessibility.cc 164 spoken_feedback_enabled_ ? gfx::Font::BOLD : gfx::Font::NORMAL,
173 large_cursor_enabled_ ? gfx::Font::BOLD : gfx::Font::NORMAL,
181 high_contrast_enabled_ ? gfx::Font::BOLD : gfx::Font::NORMAL,
187 screen_magnifier_enabled_ ? gfx::Font::BOLD : gfx::Font::NORMAL,
196 autoclick_enabled_ ? gfx::Font::BOLD : gfx::Font::NORMAL,
204 virtual_keyboard_enabled_ ? gfx::Font::BOLD : gfx::Font::NORMAL,
  /external/chromium_org/ui/views/examples/
textfield_example.cc 124 name_->SetStyle(gfx::BOLD, true);
129 name_->ApplyStyle(gfx::BOLD, false, big_range);
  /frameworks/base/rs/java/android/renderscript/
Font.java 35 * and point size. You can create multiple font objects to represent styles such as bold or italic text,
84 BOLD,
107 sansFamily.mBoldFileName = "Roboto-Bold.ttf";
115 serifFamily.mBoldFileName = "NotoSerif-Bold.ttf";
139 case BOLD:
  /external/chromium_org/chrome/browser/ui/views/autofill/
generated_credit_card_bubble_views.cc 76 style.font_style = gfx::Font::BOLD;
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListItem.java 82 // Unread messages are shown in bold
84 buf.setSpan(new StyleSpan(Typeface.BOLD), 0, buf.length(),

Completed in 315 milliseconds

1 2 3 4 5 6 7