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

12 3 4 5 6 7 8

  /external/proguard/src/proguard/gui/splash/
SplashPanel.java 221 new FontSprite(new ConstantFont(new Font("sansserif", Font.BOLD, 90)),
  /external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/
Theme.java 40 c.setFont(new Font(font.getFamily(), Font.BOLD, font.getSize()));
  /frameworks/support/compat/java/android/support/v4/graphics/
TypefaceCompatBaseImpl.java 98 entry, ((style & Typeface.BOLD) == 0) ? 400 : 700, (style & Typeface.ITALIC) != 0);
  /packages/apps/Contacts/tests/src/com/android/contacts/format/
TextHighlighterTest.java 38 mTextHighlighter = new TextHighlighter(Typeface.BOLD);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
StorageSummaryDonutPreference.java 98 super(Typeface.BOLD);
  /external/llvm/utils/abtest/
abtest.py 52 BOLD=ESCAPE % "1"
117 stderr.write("%s%s%s: " % (BOLD, name, NORMAL))
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastResources.java 51 buf.setSpan(new StyleSpan(Typeface.BOLD), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
104 buf.setSpan(new StyleSpan(Typeface.BOLD), start, end, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
  /packages/apps/UnifiedEmail/src/com/android/mail/widget/
WidgetConversationListItemViewBuilder.java 160 dateBuilder.setSpan(new StyleSpan(Typeface.BOLD), 0, date.length(),
167 subjectBuilder.setSpan(new StyleSpan(Typeface.BOLD), 0, subject.length(),
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkFont.py 16 BOLD = "bold"
40 weight -- font thickness: NORMAL, BOLD
202 f = Font(font=("Courier", 20, "bold"))
212 fb.config(weight=BOLD)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkFont.py 16 BOLD = "bold"
40 weight -- font thickness: NORMAL, BOLD
202 f = Font(font=("Courier", 20, "bold"))
212 fb.config(weight=BOLD)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 16 BOLD = "bold"
40 weight -- font thickness: NORMAL, BOLD
202 f = Font(font=("Courier", 20, "bold"))
212 fb.config(weight=BOLD)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 16 BOLD = "bold"
40 weight -- font thickness: NORMAL, BOLD
202 f = Font(font=("Courier", 20, "bold"))
212 fb.config(weight=BOLD)
  /cts/tests/tests/graphics/src/android/graphics/cts/
TypefaceTest.java 83 Typeface typeface = createTypeface(Typeface.BOLD);
85 assertEquals(Typeface.BOLD, typeface.getStyle());
116 typeface = Typeface.create(MONO, Typeface.BOLD);
123 typeface = Typeface.create(typeface, Typeface.BOLD);
131 typeface = Typeface.defaultFromStyle(Typeface.BOLD);
  /frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
NotificationTests.java 177 static SpannableStringBuilder BOLD(CharSequence str) {
179 ssb.setSpan(new StyleSpan(Typeface.BOLD), 0, ssb.length(), 0);
362 .addLine(BOLD("Alice:").append(" hey there!"))
363 .addLine(BOLD("Bob:").append(" hi there!"))
364 .addLine(BOLD("Charlie:").append(" Iz IN UR EMAILZ!!"))
  /frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
RSTestCore.java 99 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
RSTestCore.java 103 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
  /frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
RSTestCore.java 103 mFont = Font.create(mRS, mRes, "serif", Font.Style.BOLD, 8);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AccountItemView.java 88 mAccountDisplayName.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
  /external/autotest/site_utils/
generate_test_report 565 self._color.BOLD, result_dict[dict_key])
657 print 'Total PASS: ' + self._color.Color(self._color.BOLD, pass_str)
673 self._color.Color(self._color.BOLD, str(len(crashes))))
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
PlayerSetupActivity.java 151 buttonCopy.setTypeface(child.getTypeface(), Typeface.BOLD);
254 button.setTypeface(mBobButton.getTypeface(), Typeface.BOLD);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 369 * @return the bold version of given {@link Font}.
372 FontData[] boldData = getModifiedFontData(baseFont, SWT.BOLD);
380 FontData[] boldData = getModifiedFontData(baseFont, SWT.BOLD | SWT.ITALIC);
  /platform_testing/tests/functional/notificationtests/src/com/android/notification/functional/
NotificationHelper.java 247 static SpannableStringBuilder BOLD(CharSequence str) {
249 ssb.setSpan(new StyleSpan(Typeface.BOLD), 0, ssb.length(), 0);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
PathClippingTests.java 184 paint.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/watchface/
InteractiveWatchFaceService.java 44 Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/watchface/
InteractiveWatchFaceService.java 44 Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);

Completed in 974 milliseconds

12 3 4 5 6 7 8