HomeSort by relevance Sort by last modified time
    Searched full:bold (Results 1 - 25 of 431) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/js/resources/
js-test-style.css 2 font-weight: bold;
6 font-weight: bold;
  /external/webkit/WebCore/manual-tests/
drop-text-acquires-style.html 7 <p>To run this test, drag the text in the input element below into the bold text region. The dropped text should be bold.</p>
9 <b contenteditable="true" id="target">Drag the text from the above input element into this bold text</b>
  /external/webkit/WebCore/platform/graphics/qt/
FontPlatformData.h 39 , bold(font.bold())
42 FontPlatformDataPrivate(const float size, const bool bold, const bool oblique)
45 , bold(bold)
52 , bold(font.bold())
58 bool bold : 1;
66 FontPlatformData(float size, bool bold, bool oblique);
96 return QFont::Bold; // QFont::Bold == Weight of 7
128 bool bold() const function in class:WebCore::FontPlatformData
    [all...]
FontPlatformDataQt.cpp 29 static inline bool isEmtpyValue(const float size, const bool bold, const bool oblique)
32 return !bold && !oblique && size == 0.f;
35 FontPlatformData::FontPlatformData(float size, bool bold, bool oblique)
37 if (isEmtpyValue(size, bold, oblique))
40 m_data = new FontPlatformDataPrivate(size, bold, oblique);
62 m_data->bold = font.bold();
100 && m_data->bold == other.m_data->bold
114 ^ qHash(m_data->bold)
    [all...]
  /external/opencore/doc/oscl_html/
doxygen.css 2 CAPTION { font-weight: bold }
5 A.el { text-decoration: none; font-weight: bold }
6 A.elRef { font-weight: bold }
12 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
13 TD.md { background-color: #f2f2ff; font-weight: bold; }
14 TD.mdname1 { background-color: #f2f2ff; font-weight: bold; color: #602020; }
15 TD.mdname { background-color: #f2f2ff; font-weight: bold; color: #602020; width: 600px; }
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
21 font-weight: bold;
  /external/opencore/doc/pv2way_html/
doxygen.css 2 CAPTION { font-weight: bold }
5 A.el { text-decoration: none; font-weight: bold }
6 A.elRef { font-weight: bold }
12 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
13 TD.md { background-color: #f2f2ff; font-weight: bold; }
14 TD.mdname1 { background-color: #f2f2ff; font-weight: bold; color: #602020; }
15 TD.mdname { background-color: #f2f2ff; font-weight: bold; color: #602020; width: 600px; }
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
21 font-weight: bold;
  /external/opencore/doc/pvauthor_html/
doxygen.css 2 CAPTION { font-weight: bold }
5 A.el { text-decoration: none; font-weight: bold }
6 A.elRef { font-weight: bold }
12 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
13 TD.md { background-color: #f2f2ff; font-weight: bold; }
14 TD.mdname1 { background-color: #f2f2ff; font-weight: bold; color: #602020; }
15 TD.mdname { background-color: #f2f2ff; font-weight: bold; color: #602020; width: 600px; }
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
21 font-weight: bold;
  /external/opencore/doc/pvplayer_html/
doxygen.css 2 CAPTION { font-weight: bold }
5 A.el { text-decoration: none; font-weight: bold }
6 A.elRef { font-weight: bold }
12 DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
13 TD.md { background-color: #f2f2ff; font-weight: bold; }
14 TD.mdname1 { background-color: #f2f2ff; font-weight: bold; color: #602020; }
15 TD.mdname { background-color: #f2f2ff; font-weight: bold; color: #602020; width: 600px; }
16 DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }
21 font-weight: bold;
  /dalvik/docs/
prettify.css 18 .kwd { color: #006; font-weight: bold; }
20 .typ { color: #404; font-weight: bold; }
24 .tag { color: #006; font-weight: bold; }
  /packages/apps/Protips/res/values/
styles.xml 9 <item name="android:textStyle">bold</item>
16 <item name="android:textStyle">bold</item>
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
TextAttribute.java 30 public boolean bold; field in class:TextAttribute
37 FontSize size, boolean bold, boolean italic, boolean underlined,
43 this.bold = bold;
  /external/webkit/WebKitTools/CodeCoverage/
gcov.css 10 font-weight:bold;
25 font-weight:bold;
30 font-weight:bold;
36 font-weight:bold;
61 font-weight:bold;
78 font-weight:bold;
93 font-weight:bold;
  /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/text/src/android/text/style/cts/
StyleSpanTest.java 77 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
89 assertEquals(Typeface.BOLD, tp.getTypeface().getStyle());
106 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
118 assertEquals(Typeface.BOLD, tp.getTypeface().getStyle());
133 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
143 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
154 StyleSpan styleSpan = new StyleSpan(Typeface.BOLD);
158 assertEquals(Typeface.BOLD, newSpan.getStyle());
  /external/dnsmasq/contrib/dnslist/
dhcp.css 10 font-weight: bold;
29 font-weight: bold;
  /development/samples/ApiDemos/src/com/example/android/apis/content/
_index.html 7 <dd>Demonstrates loading styled text (bold, italic) defined in a resource file. </dd>
  /frameworks/base/core/res/res/layout/
twelve_key_entry.xml 38 android:textStyle="bold"
48 android:textStyle="bold"
58 android:textStyle="bold"
77 android:textStyle="bold"
87 android:textStyle="bold"
97 android:textStyle="bold"
115 android:textStyle="bold"
125 android:textStyle="bold"
135 android:textStyle="bold"
154 android:textStyle="bold"
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Typeface.java 38 * The default BOLD typeface object. Note: this may be not actually be
39 * bold, depending on what fonts are installed. Call getStyle() to know
59 public static final int BOLD = _Original_Typeface.BOLD;
76 /** Returns true if getStyle() has the BOLD bit set. */
78 return (getStyle() & BOLD) != 0;
93 * @param style The style (normal, bold, italic) of the typeface.
94 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC
117 * @param style The style (normal, bold, italic) of the typeface.
118 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALI
    [all...]
  /packages/apps/Settings/res/layout/
twelve_key_entry.xml 38 android:textStyle="bold"
48 android:textStyle="bold"
58 android:textStyle="bold"
77 android:textStyle="bold"
87 android:textStyle="bold"
97 android:textStyle="bold"
115 android:textStyle="bold"
125 android:textStyle="bold"
135 android:textStyle="bold"
154 android:textStyle="bold"
    [all...]
  /external/webkit/WebCore/platform/graphics/android/
FontCustomPlatformData.cpp 48 FontPlatformData FontCustomPlatformData::fontPlatformData(int size, bool bold, bool italic,
51 // turn bold/italic into fakeBold/fakeItalic
53 if (m_typeface->isBold() == bold)
54 bold = false;
58 return FontPlatformData(m_typeface, size, bold, italic);
  /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) {
  /development/apps/Development/res/layout/
application_hw_pref.xml 31 android:textStyle="bold" />
40 android:textStyle="bold" />
49 android:textStyle="bold" />
58 android:textStyle="bold" />
67 android:textStyle="bold" />
76 android:textStyle="bold" />
84 android:textStyle="bold" />
show_activity.xml 32 android:textStyle="bold" />
63 android:textStyle="bold" android:text="@string/show_activity_process_label" />
70 android:textStyle="bold" android:text="@string/show_activity_task_affinity_label" />
77 android:textStyle="bold" android:text="@string/show_activity_required_permission_label" />
84 android:textStyle="bold" android:text="@string/show_activity_multiprocess_label" />
91 android:textStyle="bold" android:text="@string/show_activity_clear_on_background_label" />
98 android:textStyle="bold" android:text="@string/show_activity_state_not_needed_label" />
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 34 * The default BOLD typeface object. Note: this may be not actually be
35 * bold, depending on what fonts are installed. Call getStyle() to know
52 public static final int BOLD = 1;
61 /** Returns true if getStyle() has the BOLD bit set. */
63 return (getStyle() & BOLD) != 0;
78 * @param style The style (normal, bold, italic) of the typeface.
79 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC
93 * @param style The style (normal, bold, italic) of the typeface.
94 * e.g. NORMAL, BOLD, ITALIC, BOLD_ITALIC
154 DEFAULT_BOLD = create((String)null, Typeface.BOLD);
    [all...]
  /external/expat/doc/
style.css 34 font-weight: bold;
74 font-weight: bold;
84 font-weight: bold;

Completed in 228 milliseconds

1 2 3 4 5 6 7 8 91011>>