Searched refs:FontFeature (Results 1 – 4 of 4) sorted by relevance
38 class PLATFORM_EXPORT FontFeature {40 FontFeature(const AtomicString& tag, int value);41 bool operator==(const FontFeature&);57 void append(const FontFeature& feature) { m_list.append(feature); } in append()59 const FontFeature& operator[](int index) const { return m_list[index]; }60 const FontFeature& at(size_t index) const { return m_list.at(index); } in at()64 Vector<FontFeature> m_list;
31 FontFeature::FontFeature(const AtomicString& tag, int value) in FontFeature() function in blink::FontFeature37 bool FontFeature::operator==(const FontFeature& other) in operator ==()
115 settings->append(FontFeature(feature->tag(), feature->value())); in convertFontFeatureSettings()
1892 const FontFeature& feature = featureSettings->at(i); in getPropertyCSSValue()