Home
last modified time | relevance | path

Searched refs:AxisTag (Results 1 – 9 of 9) sorted by relevance

/frameworks/minikin/include/minikin/
DFontVariation.h24 typedef uint32_t AxisTag; typedef
27 FontVariation(AxisTag axisTag, float value) : axisTag(axisTag), value(value) {} in FontVariation()
28 AxisTag axisTag;
DFontFamily.h51 const std::unordered_set<AxisTag>& supportedAxes() const { return mSupportedAxes; } in supportedAxes()
75 std::unordered_set<AxisTag> mSupportedAxes;
DFontCollection.h67 const std::unordered_set<AxisTag>& getSupportedTags() const { return mSupportedAxes; } in getSupportedTags()
126 std::unordered_set<AxisTag> mSupportedAxes;
DFont.h116 std::unordered_set<AxisTag> getSupportedAxes() const;
/frameworks/minikin/libs/minikin/
DFontFamily.cpp97 std::unordered_set<AxisTag> Font::getSupportedAxes() const { in getSupportedAxes()
100 return std::unordered_set<AxisTag>(); in getSupportedAxes()
102 std::unordered_set<AxisTag> supportedAxes; in getSupportedAxes()
171 std::unordered_set<AxisTag> supportedAxes = mFonts[i].getSupportedAxes(); in computeCoverage()
222 std::unordered_set<AxisTag> supportedAxes = font.getSupportedAxes(); in createFamilyWithVariation()
DFontCollection.cpp74 const std::unordered_set<AxisTag>& supportedAxes = family->supportedAxes(); in init()
/frameworks/base/core/jni/android/graphics/
DTypeface.cpp118 const std::unordered_set<minikin::AxisTag>& tagSet = face->fFontCollection->getSupportedTags(); in Typeface_getSupportedAxes()
DFontFamily.cpp270 builder->axes.push_back({static_cast<minikin::AxisTag>(tag), value}); in FontFamily_addAxisValue()
/frameworks/base/core/jni/android/graphics/fonts/
DFont.cpp132 toBuilder(builderPtr)->axes.emplace_back(static_cast<minikin::AxisTag>(tag), value); in Font_Builder_addAxis()