HomeSort by relevance Sort by last modified time
    Searched defs:FontFeature (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FontFeatureSettings.cpp 31 FontFeature::FontFeature(const AtomicString& tag, int value)
37 bool FontFeature::operator==(const FontFeature& other)
FontFeatureSettings.h 37 class FontFeature {
39 FontFeature(const AtomicString& tag, int value);
40 bool operator==(const FontFeature&);
56 void append(const FontFeature& feature) { m_list.append(feature); }
58 const FontFeature& operator[](int index) const { return m_list[index]; }
59 const FontFeature& at(size_t index) const { return m_list.at(index); }
63 Vector<FontFeature> m_list;

Completed in 4736 milliseconds