OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:localeListId
(Results
1 - 15
of
15
) sorted by null
/frameworks/minikin/include/minikin/
FontCollection.h
81
uint32_t
localeListId
,
85
uint32_t
localeListId
,
88
uint32_t calcCoverageScore(uint32_t ch, uint32_t vs, uint32_t
localeListId
,
MinikinFont.h
43
localeListId
(0),
56
uint32_t
localeListId
;
70
paintFlags == paint.paintFlags &&
localeListId
== paint.
localeListId
&&
MeasuredText.h
82
uint32_t getLocaleListId() const override { return mPaint.
localeListId
; }
115
ReplacementRun(const Range& range, float width, uint32_t
localeListId
)
116
: Run(range), mWidth(width), mLocaleListId(
localeListId
) {}
213
void addReplacementRun(int32_t start, int32_t end, float width, uint32_t
localeListId
) {
215
std::make_unique<ReplacementRun>(Range(start, end), width,
localeListId
));
FontFamily.h
137
FontFamily(uint32_t
localeListId
, Variant variant, std::vector<Font>&& fonts);
141
uint32_t
localeListId
() const { return mLocaleListId; }
LayoutCache.h
46
mLocaleListId(paint.
localeListId
),
/frameworks/minikin/libs/minikin/
LineBreakerUtil.h
63
inline Locale getEffectiveLocale(uint32_t
localeListId
) {
64
const LocaleList& localeList = LocaleListCache::getById(
localeListId
);
158
if (
localeListId
!= newLocaleListId) {
162
localeListId
= newLocaleListId;
190
uint32_t
localeListId
= LocaleListCache::kInvalidListId;
FontCollection.cpp
128
uint32_t
localeListId
,
130
const uint32_t coverageScore = calcCoverageScore(ch, vs,
localeListId
, fontFamily);
136
const uint32_t localeScore = calcLocaleMatchingScore(
localeListId
, *fontFamily);
155
uint32_t FontCollection::calcCoverageScore(uint32_t ch, uint32_t vs, uint32_t
localeListId
,
179
switch (LocaleListCache::getById(
localeListId
).getEmojiStyle()) {
219
const LocaleList& fontLocaleList = LocaleListCache::getById(fontFamily.
localeListId
());
254
uint32_t ch, uint32_t vs, uint32_t
localeListId
, FontFamily::Variant variant) const {
270
const uint32_t score = calcFamilyScore(ch, vs, variant,
localeListId
, family);
290
return getFamilyForChar(ch, vs,
localeListId
, variant);
375
const uint32_t
localeListId
= paint.localeListId
[
all
...]
FontFamily.cpp
113
FontFamily::FontFamily(uint32_t
localeListId
, Variant variant, std::vector<Font>&& fonts)
114
: mLocaleListId(
localeListId
),
117
mIsColorEmoji(LocaleListCache::getById(
localeListId
).getEmojiStyle() ==
GreedyLineBreaker.cpp
322
uint32_t
localeListId
= LocaleListCache::kInvalidListId;
329
if (
localeListId
!= newLocaleListId) {
333
localeListId
= newLocaleListId;
Layout.cpp
668
const LocaleList& localeList = LocaleListCache::getById(paint.
localeListId
);
[
all
...]
/frameworks/minikin/tests/perftests/
FontCollection.cpp
94
paint.
localeListId
= registerLocaleList(ITEMIZE_TEST_CASES[testIndex].languageTag);
/frameworks/base/libs/hwui/hwui/
MinikinUtils.cpp
43
minikinPaint.
localeListId
= paint->getMinikinLocaleListId();
/frameworks/minikin/tests/unittest/
LayoutCacheTest.cpp
214
paint1.
localeListId
= LocaleListCache::getId("en-US");
218
paint2.
localeListId
= LocaleListCache::getId("ja-JP");
FontFamilyTest.cpp
31
uint32_t
localeListId
= LocaleListCache::getId(input);
32
return LocaleListCache::getById(
localeListId
);
36
uint32_t
localeListId
= LocaleListCache::getId(input);
37
return LocaleListCache::getById(
localeListId
)[0];
FontCollectionItemizeTest.cpp
65
const uint32_t
localeListId
= registerLocaleList(localeList);
68
paint.
localeListId
=
localeListId
;
[
all
...]
Completed in 238 milliseconds