Home
last modified time | relevance | path

Searched refs:supportedAxes (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/graphics/java/android/graphics/fonts/
DFontFamily.java273 Set<Integer> supportedAxes = in analyzeAndResolveVariableType() local
275 if (supportedAxes.contains(TAG_wght)) { in analyzeAndResolveVariableType()
276 if (supportedAxes.contains(TAG_ital)) { in analyzeAndResolveVariableType()
287 Set<Integer> supportedAxes = in analyzeAndResolveVariableType() local
289 if (!supportedAxes.contains(TAG_wght)) { in analyzeAndResolveVariableType()
/frameworks/minikin/libs/minikin/
DFont.cpp260 std::unordered_set<AxisTag> supportedAxes; in calculateSupportedAxes() local
261 analyzeAxes(fvarTable.get(), fvarTable.size(), &supportedAxes); in calculateSupportedAxes()
262 mSupportedAxesCount = supportedAxes.size(); in calculateSupportedAxes()
263 mSupportedAxes = sortedArrayFromSet(supportedAxes); in calculateSupportedAxes()
/frameworks/base/graphics/java/android/graphics/
DFontListParser.java376 final String supportedAxes = parser.getAttributeValue(null, ATTR_SUPPORTED_AXES); in readFont() local
393 if (supportedAxes != null) { in readFont()
394 for (String tag : supportedAxes.split(",")) { in readFont()
/frameworks/base/services/core/java/com/android/server/input/
DInputShellCommand.java552 final Set<Integer> supportedAxes = Set.of(AXIS_HSCROLL, AXIS_VSCROLL, AXIS_SCROLL); in runScroll() local
557 final Pair<Integer, Float> axisAndValue = readAxisOptionValues(supportedAxes); in runScroll()
583 private Pair<Integer, Float> readAxisOptionValues(Set<Integer> supportedAxes) { in readAxisOptionValues() argument
594 if (!supportedAxes.contains(axis)) { in readAxisOptionValues()