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

1 2 3 4 5

  /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());
  /development/apps/FontLab/src/com/android/fontlab/
FontPicker.java 49 addItem(myData, "Sans Bold", "sans-serif", Typeface.BOLD);
51 addItem(myData, "Serif Bold", "serif", Typeface.BOLD);
53 addItem(myData, "Serif Bold Italic", "serif", Typeface.BOLD_ITALIC);
  /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);
  /packages/apps/DeskClock/src/com/android/deskclock/
ZeroTopPaddingTextView.java 29 // the bold fontface has less empty space on the top
33 // the bold fontface has less empty space on the top
36 private static final Typeface SAN_SERIF_BOLD = Typeface.create("san-serif", Typeface.BOLD);
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 35 * The default BOLD typeface object. Note: this may be not actually be
36 * bold, depending on what fonts are installed. Call getStyle() to know
55 public static final int BOLD = 1;
66 /** Returns true if getStyle() has the BOLD bit set. */
68 return (mStyle & BOLD) != 0;
83 * @param style The style (normal, bold, italic) of the typeface.
84 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC
98 * @param style The style (normal, bold, italic) of the typeface.
99 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC
184 DEFAULT_BOLD = create((String) null, Typeface.BOLD);
    [all...]
  /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/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
FontLoader.java 57 private static final String FONT_SUFFIX_BOLD = "-Bold.ttf";
65 Font.BOLD,
67 Font.BOLD | Font.ITALIC
70 Typeface.ITALIC, Typeface.BOLD, Typeface.NORMAL
247 if (mFontInfo.font[Typeface.BOLD] == null) {
248 computeDerivedFont(Typeface.BOLD, DERIVE_BOLD);
269 mFontInfo.font[Typeface.BOLD] = font;
  /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);
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 75 ss.setSpan(new StyleSpan(Typeface.BOLD), 0, 30,
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller_header.cc 49 rb.GetFont(ResourceBundle::BaseFont).DeriveFont(0, 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) {
  /frameworks/base/graphics/java/android/renderscript/
Font.java 37 * and point size. You can create multiple font objects to represent styles such as bold or italic text,
86 BOLD,
109 sansFamily.mBoldFileName = "Roboto-Bold.ttf";
117 serifFamily.mBoldFileName = "DroidSerif-Bold.ttf";
141 case 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(),
CellBroadcastResources.java 48 buf.setSpan(new StyleSpan(Typeface.BOLD), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
101 buf.setSpan(new StyleSpan(Typeface.BOLD), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
StringTexture.java 64 paint.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FontTest.java 81 assertEquals(Font.Style.BOLD, Font.Style.valueOf("BOLD"));
  /external/chromium/chrome/browser/chromeos/status/
status_area_button.cc 40 font = font.DeriveFont(3, gfx::Font::BOLD);
  /external/chromium/chrome/browser/chromeos/
wm_overview_title.cc 49 font = font.DeriveFont(1, Font::BOLD);
  /external/chromium/chrome/browser/ui/views/download/
download_in_progress_dialog_view.cc 56 // There are two lines of text: the bold warning label and the text
67 ResourceBundle::BaseFont).DeriveFont(0, gfx::Font::BOLD);
  /external/proguard/src/proguard/gui/splash/
SplashPanel.java 221 new FontSprite(new ConstantFont(new Font("sansserif", Font.BOLD, 90)),
  /external/webkit/Tools/Scripts/
run-api-tests 175 print BOLD GREEN, "Passed", RESET, "\n";
177 print BOLD RED, "Failed", RESET, "\n";
  /external/chromium/chrome/browser/ui/views/
first_run_bubble.cc 105 label1_->SetFont(font.DeriveFont(3, gfx::Font::BOLD));
269 label1_->SetFont(font.DeriveFont(3, gfx::Font::BOLD));
276 label2_->SetFont(font.DeriveFont(3, gfx::Font::BOLD));
348 ResourceBundle::MediumFont).DeriveFont(3, gfx::Font::BOLD);
417 label1_->SetFont(font.DeriveFont(3, gfx::Font::BOLD));
  /frameworks/base/core/java/com/android/internal/app/
PlatLogoActivity.java 56 Typeface normal = Typeface.create("sans-serif", Typeface.BOLD);
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardStatusView.java 91 mDateView.setTypeface(Typeface.SANS_SERIF, Typeface.BOLD);

Completed in 1424 milliseconds

1 2 3 4 5