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/core/platform/graphics/opentype/
OpenTypeSanitizer.cpp
70
bool OpenTypeSanitizer::
supportsFormat
(const String& format)
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
FontCustomPlatformDataMac.cpp
79
bool FontCustomPlatformData::
supportsFormat
(const String& format)
81
return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::
supportsFormat
(format);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/skia/
FontCustomPlatformDataSkia.cpp
81
bool FontCustomPlatformData::
supportsFormat
(const String& format)
83
return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::
supportsFormat
(format);
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/win/
FontCustomPlatformDataWin.cpp
131
bool FontCustomPlatformData::
supportsFormat
(const String& format)
133
return equalIgnoringCase(format, "truetype") || equalIgnoringCase(format, "opentype") || OpenTypeSanitizer::
supportsFormat
(format);
Completed in 813 milliseconds