Searched refs:family (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/docs/html/guide/google/gcm/client-javadoc/
H A Dstylesheet.css17 .FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
18 .FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
19 .FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
24 .NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;color:#000000;}
25 .NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;color:#FFFFFF;}
27 .NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
28 .NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
/frameworks/base/docs/html/guide/google/gcm/server-javadoc/
H A Dstylesheet.css17 .FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
18 .FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
19 .FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 }
24 .NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;color:#000000;}
25 .NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;color:#FFFFFF;}
27 .NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
28 .NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000}
/frameworks/base/core/java/android/text/style/
H A DTypefaceSpan.java27 * Changes the typeface family of the text to which the span is attached.
33 * @param family The font family for this typeface. Examples include
36 public TypefaceSpan(String family) { argument
37 mFamily = family;
57 * Returns the font family name.
73 private static void apply(Paint paint, String family) { argument
83 Typeface tf = Typeface.create(family, oldStyle);
H A DTextAppearanceSpan.java71 String family = a.getString(com.android.internal.R.styleable.TextAppearance_fontFamily);
72 if (family != null) {
73 mTypeface = family;
113 public TextAppearanceSpan(String family, int style, int size, argument
115 mTypeface = family;
165 * Returns the typeface family specified by this span, or <code>null</code>
/frameworks/base/graphics/java/android/renderscript/
H A DFont.java51 //These help us create a font by family name
97 private static void addFamilyToMap(FontFamily family) { argument
98 for(int i = 0; i < family.mNames.length; i ++) {
99 sFontFamilyMap.put(family.mNames[i], family);
136 FontFamily family = sFontFamilyMap.get(familyName);
137 if(family != null) {
140 return family.mNormalFileName;
142 return family.mBoldFileName;
144 return family
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccController.java122 public UiccCardApplication getUiccCardApplication(int family) { argument
125 return mUiccCard.getApplication(family);
132 public IccRecords getIccRecords(int family) { argument
135 UiccCardApplication app = mUiccCard.getApplication(family);
145 public IccFileHandler getIccFileHandler(int family) { argument
148 UiccCardApplication app = mUiccCard.getApplication(family);
/frameworks/base/graphics/java/android/graphics/
H A DTypeface.java77 * Create a typeface object given a family name, and option style information.
82 * @param familyName May be null. The name of the font family.
94 * style from the same family of an existing typeface object. If family is
95 * null, this selects from the default font's family.
97 * @param family May be null. The name of the existing type face.
102 public static Typeface create(Typeface family, int style) { argument
104 if (family != null) {
106 if (family.mStyle == style) {
107 return family;
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DFontLoader.java51 private static final String NODE_FAMILY = "family";
134 * Returns a {@link Font} object given a family name and a style value (constant in
136 * @param family the family name
142 public synchronized List<Font> getFont(String family, int style) { argument
145 if (family == null) {
150 // get the font objects from the main list based on family.
152 if (info.families.contains(family)) {
257 String family = trimXmlWhitespaces(mBuilder.toString());
258 mFontInfo.families.add(family);
[all...]
/frameworks/base/core/jni/android/graphics/
H A DTypeface.cpp44 static SkTypeface* Typeface_createFromTypeface(JNIEnv* env, jobject, SkTypeface* family, int style) { argument
45 return SkTypeface::CreateFromTypeface(family, (SkTypeface::Style)style);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DTypeface_Delegate.java198 private Typeface_Delegate(String family, int style) { argument
199 mFamily = family;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DUiccCard.java321 public UiccCardApplication getApplication(int family) { argument
324 switch (family) {
/frameworks/base/docs/html/reference/renderscript/
H A Ddoxygen.css4 font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
139 font-family: monospace, fixed;
504 font-family: "courier new",courier,monospace;
518 font-family: sans-serif;
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java127 // Used only when no family nor given name is found.
253 return String.format("family: %s, given: %s, middle: %s, prefix: %s, suffix: %s",
291 public void setFamily(String family) { mFamily = family; } argument

Completed in 129 milliseconds