Lines Matching refs:mAxes
61 std::vector<std::pair<uint32_t, float>> mAxes; member
65 mItalic == o.mItalic && mCollectionIndex == o.mCollectionIndex && mAxes == o.mAxes; in operator ==()
77 for (const auto& [tag, value] : font.mAxes) { in operator ()()
182 out->mAxes.clear(); in copyFont()
201 out->mAxes.push_back(std::make_pair(tag, styleValue)); in copyFont()
331 result->mAxes.reserve(axes.size()); in AFontMatcher_match()
333 result->mAxes.push_back(std::make_pair(axis.axisTag, axis.value)); in AFontMatcher_match()
435 return font->mAxes.size(); in AFont_getAxisCount()
440 LOG_ALWAYS_FATAL_IF(axisIndex >= font->mAxes.size(), in AFont_getAxisTag()
441 "given axis index is out of bounds. (< %zd", font->mAxes.size()); in AFont_getAxisTag()
442 return font->mAxes[axisIndex].first; in AFont_getAxisTag()
447 LOG_ALWAYS_FATAL_IF(axisIndex >= font->mAxes.size(), in AFont_getAxisValue()
448 "given axis index is out of bounds. (< %zd", font->mAxes.size()); in AFont_getAxisValue()
449 return font->mAxes[axisIndex].second; in AFont_getAxisValue()