OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:supportsFormat
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeSanitizer.cpp
69
bool OpenTypeSanitizer::
supportsFormat
(const String& format)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
FontCustomPlatformDataMac.cpp
78
bool FontCustomPlatformData::
supportsFormat
(const String& format)
80
return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::
supportsFormat
(format);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/skia/
FontCustomPlatformDataSkia.cpp
107
bool FontCustomPlatformData::
supportsFormat
(const String& format)
109
return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::
supportsFormat
(format);
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontCustomPlatformDataWin.cpp
130
bool FontCustomPlatformData::
supportsFormat
(const String& format)
132
return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::
supportsFormat
(format);
Completed in 49 milliseconds