HomeSort by relevance Sort by last modified time
    Searched refs:BOLD (Results 101 - 125 of 178) sorted by null

1 2 3 45 6 7 8

  /cts/tests/tests/content/src/android/content/res/cts/
ResourcesTest.java 859 assertEquals(Typeface.BOLD, mResources.getFont(R.font.sample_bold_font).getStyle());
865 assertEquals(Typeface.BOLD, mResources.getFont(R.font.sample_bold_family).getStyle())
    [all...]
  /external/proguard/src/proguard/gui/
ProGuardGUI.java 264 new FontSprite(new ConstantFont(new Font("sansserif", Font.BOLD, 90)),
270 new FontSprite(new ConstantFont(new Font("sansserif", Font.BOLD, 45)),
289 new FontSprite(new ConstantFont(new Font("sansserif", Font.BOLD, 30)),
    [all...]
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/watchface/
DigitalWatchFaceService.java 67 * protection, the hours are drawn in normal rather than bold. The time is drawn with less contrast
74 Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/watchface/
DigitalWatchFaceService.java 67 * protection, the hours are drawn in normal rather than bold. The time is drawn with less contrast
74 Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
ComplicationSimpleWatchFaceService.java 208 mComplicationPaint.setTypeface(Typeface.create(Typeface.DEFAULT, Typeface.BOLD));
DigitalWatchFaceService.java 61 * protection, the hours are drawn in normal rather than bold. The time is drawn with less contrast
68 Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);
FitStepsWatchFaceService.java 67 * require burn-in protection, the hours are drawn in normal rather than bold.
75 Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
TestCaseEditController.java 582 private static Font OUT_FONT = new Font("default", Font.BOLD, 12);
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUBuffer.java 70 * 8421 8421 8421 8421 8421 8421 8421 8421 |||| |||| |||| |||| |||| |||| |||| |||`- Bold |||| ||||
80 /** Make character bold. */
81 public final static int BOLD = 0x01;
154 * @see #BOLD
211 * @see #BOLD
260 * @see #BOLD
288 * @see #BOLD
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
TerminalBridge.java 582 if (fgcolor < 8 && (currAttr & VDUBuffer.BOLD) != 0) {
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
MonthView.java 285 mMonthTitlePaint.setTypeface(Typeface.create(mMonthTitleTypeface, Typeface.BOLD));
  /external/testng/ant/3rdparty/
DTDDoc.jar 
  /external/jline/
jline-1.0.jar 
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
ConfigureAssetSetPage.java     [all...]
  /cts/tests/tests/text/src/android/text/cts/
HtmlTest.java 326 SpannableString s = new SpannableString("Hello bold world");
328 s.setSpan(new StyleSpan(Typeface.BOLD), start, end, SPAN_EXCLUSIVE_INCLUSIVE);
330 "<p dir=\"ltr\">Hello <b>bold</b> world</p>"));
  /developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
NotificationPresets.java 143 appendStyled(text, "bold", new StyleSpan(Typeface.BOLD));
  /developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/
NotificationPresets.java 143 appendStyled(text, "bold", new StyleSpan(Typeface.BOLD));
  /development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/
NotificationPresets.java 143 appendStyled(text, "bold", new StyleSpan(Typeface.BOLD));
  /frameworks/base/core/java/android/widget/
Switch.java 371 * switch, and turns on the fake bold and italic bits in the Paint if the
387 mTextPaint.setFakeBoldText((need & Typeface.BOLD) != 0);
398 * Note that not all Typeface families actually have bold and italic
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SwitchCompat.java 357 * switch, and turns on the fake bold and italic bits in the Paint if the
373 mTextPaint.setFakeBoldText((need & Typeface.BOLD) != 0);
384 * Note that not all Typeface families actually have bold and italic
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
NotificationStation.java 231 private static CharSequence bold(CharSequence cs) { method in class:NotificationStation
234 ss.setSpan(new StyleSpan(Typeface.BOLD), 0, cs.length(), 0);
322 sb.append(bold(getString(R.string.notification_log_details_package)))
326 .append(bold(getString(R.string.notification_log_details_key)))
330 .append(bold(getString(R.string.notification_log_details_icon)))
334 .append(bold("channelId"))
338 .append(bold("postTime"))
343 .append(bold("timeoutAfter"))
349 .append(bold(getString(R.string.notification_log_details_group)))
353 sb.append(bold( method
418 .append(bold(getString( method
422 .append(bold(getString( method
450 .append(bold(getString(R.string.notification_log_details_actions))); method
485 .append(bold(getString( method
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
SuggestionStripLayoutHelper.java 97 private static final CharacterStyle BOLD_SPAN = new StyleSpan(Typeface.BOLD);
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
BugleNotifications.java     [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java     [all...]

Completed in 1363 milliseconds

1 2 3 45 6 7 8