Home
last modified time | relevance | path

Searched refs:mSupportedAxes (Results 1 – 5 of 5) sorted by relevance

/frameworks/minikin/libs/minikin/
DFontFamily.cpp169 mSupportedAxes.insert(supportedAxes.begin(), supportedAxes.end()); in computeCoverage()
200 if (variations.empty() || mSupportedAxes.empty()) { in createFamilyWithVariation()
206 if (mSupportedAxes.find(variation.axisTag) != mSupportedAxes.end()) { in createFamilyWithVariation()
DFontCollection.cpp76 mSupportedAxes.insert(supportedAxes.begin(), supportedAxes.end()); in init()
470 if (variations.empty() || mSupportedAxes.empty()) { in createCollectionWithVariation()
476 if (mSupportedAxes.find(variation.axisTag) != mSupportedAxes.end()) { in createCollectionWithVariation()
/frameworks/minikin/include/minikin/
DFontCollection.h59 const std::unordered_set<AxisTag>& getSupportedTags() const { return mSupportedAxes; } in getSupportedTags()
120 std::unordered_set<AxisTag> mSupportedAxes; variable
DFontFamily.h149 const std::unordered_set<AxisTag>& supportedAxes() const { return mSupportedAxes; } in supportedAxes()
172 std::unordered_set<AxisTag> mSupportedAxes; variable
/frameworks/base/graphics/java/android/graphics/
DTypeface.java162 private int[] mSupportedAxes; field in Typeface
1181 if (mSupportedAxes == null) { in isSupportedAxes()
1183 if (mSupportedAxes == null) { in isSupportedAxes()
1184 mSupportedAxes = nativeGetSupportedAxes(native_instance); in isSupportedAxes()
1185 if (mSupportedAxes == null) { in isSupportedAxes()
1186 mSupportedAxes = EMPTY_AXES; in isSupportedAxes()
1191 return Arrays.binarySearch(mSupportedAxes, axis) >= 0; in isSupportedAxes()