Lines Matching refs:mAxes
64 std::vector<std::pair<uint32_t, float>> mAxes; member
149 out->mAxes.clear(); in copyFont()
168 out->mAxes.push_back(std::make_pair(tag, styleValue)); in copyFont()
265 result->mAxes.reserve(axes.size()); in AFontMatcher_match()
267 result->mAxes.push_back(std::make_pair(axis.axisTag, axis.value)); in AFontMatcher_match()
364 return font->mAxes.size(); in AFont_getAxisCount()
369 LOG_ALWAYS_FATAL_IF(axisIndex >= font->mAxes.size(), in AFont_getAxisTag()
370 "given axis index is out of bounds. (< %zd", font->mAxes.size()); in AFont_getAxisTag()
371 return font->mAxes[axisIndex].first; in AFont_getAxisTag()
376 LOG_ALWAYS_FATAL_IF(axisIndex >= font->mAxes.size(), in AFont_getAxisValue()
377 "given axis index is out of bounds. (< %zd", font->mAxes.size()); in AFont_getAxisValue()
378 return font->mAxes[axisIndex].second; in AFont_getAxisValue()