Home
last modified time | relevance | path

Searched refs:mSupportedAxesCount (Results 1 – 6 of 6) sorted by relevance

/frameworks/minikin/libs/minikin/
DFont.cpp88 mSupportedAxesCount = axesCount; in Font()
91 mSupportedAxesCount = 0; in Font()
102 mSupportedAxesCount = parent->mSupportedAxesCount; in Font()
103 if (mSupportedAxesCount != 0) { in Font()
104 uint16_t axesCount = parent->mSupportedAxesCount; in Font()
106 mSupportedAxes = std::unique_ptr<AxisTag[]>(new AxisTag[mSupportedAxesCount]); in Font()
130 writer->writeArray<AxisTag>(mSupportedAxes.get(), mSupportedAxesCount); in writeTo()
138 mSupportedAxesCount(o.mSupportedAxesCount), in Font()
148 mSupportedAxesCount = o.mSupportedAxesCount; in operator =()
154 if (mSupportedAxesCount == 0) { in isAxisSupported()
[all …]
DFontFamily.cpp101 mSupportedAxesCount(parent->mSupportedAxesCount), in FontFamily()
130 std::copy(src, src + mSupportedAxesCount, mSupportedAxes.get()); in FontFamily()
145 mSupportedAxesCount(0), in FontFamily()
179 mSupportedAxesCount = axesCount; in FontFamily()
211 writer->writeArray<AxisTag>(mSupportedAxes.get(), mSupportedAxesCount); in writeTo()
371 mSupportedAxesCount = static_cast<uint16_t>(supportedAxesSet.size()); in computeCoverage()
372 if (mSupportedAxesCount > 0) { in computeCoverage()
404 if (variations.empty() || mSupportedAxesCount == 0) { in createFamilyWithVariation()
410 if (std::binary_search(mSupportedAxes.get(), mSupportedAxes.get() + mSupportedAxesCount, in createFamilyWithVariation()
DFontCollection.cpp180 mSupportedAxesCount = static_cast<uint32_t>(supportedAxesSet.size()); in init()
181 if (mSupportedAxesCount > 0) { in init()
229 mSupportedAxesCount = axesCount; in FontCollection()
255 writer->writeArray<AxisTag>(mSupportedAxes.get(), mSupportedAxesCount); in writeTo()
892 if (variations.empty() || mSupportedAxesCount == 0) { in createCollectionWithVariation()
898 if (std::binary_search(mSupportedAxes.get(), mSupportedAxes.get() + mSupportedAxesCount, in createCollectionWithVariation()
/frameworks/minikin/include/minikin/
DFontFamily.h73 size_t getSupportedAxesCount() const { return mSupportedAxesCount; } in getSupportedAxesCount()
135 uint16_t mSupportedAxesCount; // 2 bytes variable
DFont.h174 uint16_t getSupportedAxesCount() const { return mSupportedAxesCount; } in getSupportedAxesCount()
223 uint16_t mSupportedAxesCount; variable
DFontCollection.h189 size_t getSupportedAxesCount() const { return mSupportedAxesCount; } in getSupportedAxesCount()
292 uint32_t mSupportedAxesCount; variable