Lines Matching refs:mAxes
71 std::vector<std::pair<uint32_t, float>> mAxes; member
158 out->mAxes.clear(); in copyFont()
177 out->mAxes.push_back(std::make_pair(tag, styleValue)); in copyFont()
276 result->mAxes.reserve(axes.size()); in AFontMatcher_match()
278 result->mAxes.push_back(std::make_pair(axis.axisTag, axis.value)); in AFontMatcher_match()
373 return font->mAxes.size(); in AFont_getAxisCount()
378 LOG_ALWAYS_FATAL_IF(axisIndex >= font->mAxes.size(), in AFont_getAxisTag()
379 "given axis index is out of bounds. (< %zd", font->mAxes.size()); in AFont_getAxisTag()
380 return font->mAxes[axisIndex].first; in AFont_getAxisTag()
385 LOG_ALWAYS_FATAL_IF(axisIndex >= font->mAxes.size(), in AFont_getAxisValue()
386 "given axis index is out of bounds. (< %zd", font->mAxes.size()); in AFont_getAxisValue()
387 return font->mAxes[axisIndex].second; in AFont_getAxisValue()