OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AxisTag
(Results
1 - 6
of
6
) sorted by null
/frameworks/minikin/include/minikin/
FontFamily.h
55
typedef uint32_t
AxisTag
;
103
std::unordered_set<
AxisTag
> getSupportedAxes() const;
121
FontVariation(
AxisTag
axisTag
, float value) :
axisTag
(
axisTag
), value(value) {}
122
AxisTag
axisTag
;
149
const std::unordered_set<
AxisTag
>& supportedAxes() const { return mSupportedAxes; }
172
std::unordered_set<
AxisTag
> mSupportedAxes
[
all
...]
FontCollection.h
59
const std::unordered_set<
AxisTag
>& getSupportedTags() const { return mSupportedAxes; }
120
std::unordered_set<
AxisTag
> mSupportedAxes;
/frameworks/minikin/libs/minikin/
FontFamily.cpp
75
variations.push_back({variation.
axisTag
, variation.value});
97
std::unordered_set<
AxisTag
> Font::getSupportedAxes() const {
100
return std::unordered_set<
AxisTag
>();
102
std::unordered_set<
AxisTag
> supportedAxes;
168
std::unordered_set<
AxisTag
> supportedAxes = mFonts[i].getSupportedAxes();
206
if (mSupportedAxes.find(variation.
axisTag
) != mSupportedAxes.end()) {
219
std::unordered_set<
AxisTag
> supportedAxes = font.getSupportedAxes();
222
if (supportedAxes.find(variation.
axisTag
) != supportedAxes.end()) {
FontCollection.cpp
75
const std::unordered_set<
AxisTag
>& supportedAxes = family->supportedAxes();
476
if (mSupportedAxes.find(variation.
axisTag
) != mSupportedAxes.end()) {
/frameworks/base/core/jni/android/graphics/
Typeface.cpp
115
const std::unordered_set<minikin::
AxisTag
>& tagSet = face->fFontCollection->getSupportedTags();
FontFamily.cpp
113
skiaAxes.emplace_back(SkFontArguments::Axis{axis.
axisTag
, axis.value});
269
builder->axes.push_back({static_cast<minikin::
AxisTag
>(tag), value});
Completed in 3845 milliseconds