Searched defs:FontFeature (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontFeatureSettings.cpp31 FontFeature::FontFeature(const AtomicString& tag, int value) function in class:WebCore::FontFeature
37 bool FontFeature::operator==(const FontFeature& other)
H A DFontFeatureSettings.h38 class PLATFORM_EXPORT FontFeature { class in namespace:WebCore
40 FontFeature(const AtomicString& tag, int value);
41 bool operator==(const FontFeature&);
57 void append(const FontFeature& feature) { m_list.append(feature); }
59 const FontFeature& operator[](int index) const { return m_list[index]; }
60 const FontFeature& at(size_t index) const { return m_list.at(index); }
64 Vector<FontFeature> m_list;

Completed in 60 milliseconds