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

1 2 3

  /external/webkit/Source/WebCore/css/
FontFamilyValue.h 31 static PassRefPtr<FontFamilyValue> create(const String& familyName)
33 return adoptRef(new FontFamilyValue(familyName));
38 const String& familyName() const { return m_familyName; }
43 FontFamilyValue(const String& familyName);
FontFamilyValue.cpp 28 FontFamilyValue::FontFamilyValue(const String& familyName)
30 , m_familyName(familyName)
CSSFontSelector.cpp 289 String familyName;
291 familyName = static_cast<FontFamilyValue*>(item)->familyName();
295 String familyName;
298 familyName = "-webkit-serif";
301 familyName = "-webkit-sans-serif";
304 familyName = "-webkit-cursive";
307 familyName = "-webkit-fantasy";
310 familyName = "-webkit-monospace";
317 if (familyName.isEmpty()
    [all...]
CSSFontSelector.h 53 virtual FontData* getFontData(const FontDescription& fontDescription, const AtomicString& familyName);
  /external/webkit/Source/WebCore/platform/graphics/qt/
FontCacheQt.cpp 67 FontPlatformData* FontCache::createFontPlatformData(const FontDescription& fontDescription, const AtomicString& familyName)
69 return new FontPlatformData(fontDescription, familyName);
FontPlatformDataQt.cpp 63 FontPlatformData::FontPlatformData(const FontDescription& description, const AtomicString& familyName, int wordSpacing, int letterSpacing)
68 font.setFamily(familyName);
  /external/webkit/Source/WebCore/platform/graphics/
FontSelector.h 41 virtual FontData* getFontData(const FontDescription&, const AtomicString& familyName) = 0;
FontCache.cpp 130 static const AtomicString& alternateFamilyName(const AtomicString& familyName)
135 if (equalIgnoringCase(familyName, courier))
141 if (equalIgnoringCase(familyName, courierNew))
148 if (equalIgnoringCase(familyName, times))
150 if (equalIgnoringCase(familyName, timesNewRoman))
156 if (equalIgnoringCase(familyName, arial))
158 if (equalIgnoringCase(familyName, helvetica))
166 if (equalIgnoringCase(familyName, msSans))
172 if (equalIgnoringCase(familyName, msSerif))
180 const AtomicString& familyName,
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontCacheWinCE.cpp 178 TraitsInFamilyProcData(const AtomicString& familyName)
179 : m_familyName(familyName)
230 String familyName;
294 familyName = name;
297 FontPlatformData::mapKnownFont(codePages, familyName);
300 if (familyName.isEmpty())
301 familyName = FontPlatformData::defaultFontFamily();
303 if (!familyName.isEmpty()) {
309 FontPlatformData* result = getCachedFontPlatformData(fontDescription, familyName);
337 void FontCache::getTraitsInFamily(const AtomicString& familyName, Vector<unsigned>& traitsMasks
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/pango/
FontCachePango.cpp 56 void FontCache::getTraitsInFamily(const AtomicString& familyName, Vector<unsigned>& traitsMasks)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameSplitter.java 88 public String familyName;
102 public Name(String prefix, String givenNames, String middleName, String familyName,
107 this.familyName = familyName;
125 return familyName;
157 familyName = values.getAsString(StructuredName.FAMILY_NAME);
175 putValueIfPresent(values, StructuredName.FAMILY_NAME, familyName);
194 familyName = null;
206 && TextUtils.isEmpty(familyName)
216 + " family: " + familyName + " suffix: " + suffix + " ph/given:
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
FontCacheHaiku.cpp 75 void FontCache::getTraitsInFamily(const AtomicString& familyName, Vector<unsigned>& traitsMasks)
  /frameworks/base/graphics/java/android/renderscript/
Font.java 135 static String getFontFileName(String familyName, Style style) {
136 FontFamily family = sFontFamilyMap.get(familyName);
240 static public Font create(RenderScript rs, Resources res, String familyName, Style fontStyle, float pointSize) {
241 String fileName = getFontFileName(familyName, fontStyle);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Typeface_Delegate.java 102 /*package*/ static synchronized int nativeCreate(String familyName, int style) {
103 if (familyName == null) {
104 familyName = DEFAULT_FAMILY;
107 Typeface_Delegate newDelegate = new Typeface_Delegate(familyName, style);
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
NameConverterTests.java 67 * @param familyName Expected family name (null if not expected).
71 String givenName, String middleName, String familyName, String suffix) {
77 checkNameComponent(StructuredName.FAMILY_NAME, familyName, structuredName);
  /external/webkit/Source/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 99 DEFINE_STATIC_LOCAL(RetainPtr<NSString>, webFallbackFontFamily, ([[NSFont systemFontOfSize:16.0f] familyName]));
169 if ([[m_platformData.font() familyName] isEqual:@"Times"])
207 [m_platformData.font() familyName], [initialFont.get() familyName], filePath);
241 NSString *familyName = [m_platformData.font() familyName];
242 if ([familyName isEqualToString:@"Times"] || [familyName isEqualToString:@"Helvetica"] || [familyName isEqualToString:@"Courier"])
245 else if ([familyName isEqualToString:@"Geeza Pro"])
    [all...]
FontCacheMac.mm 135 if (NSFont *bestVariation = [fontManager fontWithFamily:[substituteFont familyName] traits:traits weight:weight size:size])
189 void FontCache::getTraitsInFamily(const AtomicString& familyName, Vector<unsigned>& traitsMasks)
191 [WebFontCache getTraits:traitsMasks inFamily:familyName];
  /external/webkit/Source/WebCore/platform/graphics/win/
FontCacheWin.cpp 255 String familyName;
262 familyName = name;
268 linkedFonts = getLinkedFonts(familyName);
285 if (!familyName.isEmpty()) {
286 FontPlatformData* result = getCachedFontPlatformData(font.fontDescription(), familyName);
306 AtomicString familyName = String(font.lfFaceName, wcsnlen(font.lfFaceName, LF_FACESIZE));
307 SimpleFontData* fontData = fontCache->getCachedFontData(fontDescription, familyName);
309 outFontFamilyName = familyName;
506 TraitsInFamilyProcData(const AtomicString& familyName)
507 : m_familyName(familyName)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
NameSplitterTest.java 279 // Two Hanzi characters: familyName+givenName
282 // Two Hanzi characters: familyName+middleName+givenName
285 // Two Hanzi characters: familyName(2)+middleName+givenName
314 String middleName, String familyName, String suffix) {
320 assertEquals(familyName, name.getFamilyName());
325 String middleName, String familyName, String suffix) {
327 familyName, suffix, true);
331 String middleName, String familyName, String suffix, boolean givenNameFirst) {
337 name.familyName = familyName;
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 82 * @param familyName May be null. The name of the font family.
87 public static Typeface create(String familyName, int style) {
88 return new Typeface(nativeCreate(familyName, style));
222 private static native int nativeCreate(String familyName, int style);
  /external/webkit/Source/WebCore/platform/win/
SystemInfo.cpp 113 const char* familyName = (version >= WindowsNT3) ? "Windows NT " : "Windows CE ";
114 return makeString(familyName, String::number(major), '.', String::number(minor));
  /external/skia/include/core/
SkFontHost.h 54 (specified by a typeface in that family) or by a familyName and a
57 1) If familyFace is null, use familyName.
58 2) If familyName is null, use data (UTF-16 to cover).
62 const char familyName[],
SkTypeface.h 77 requested familyName and style. Pass null as the familyName to return
80 @param familyName May be NULL. The name of the font family.
85 static SkTypeface* CreateFromName(const char familyName[], Style style);
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontCacheWx.cpp 101 void FontCache::getTraitsInFamily(const AtomicString& familyName, Vector<unsigned>& traitsMasks)
  /external/skia/src/ports/
SkFontHost_freetype_mac.cpp 53 const char familyName[],

Completed in 344 milliseconds

1 2 3