OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HyphenEdit
(Results
1 - 7
of
7
) sorted by null
/frameworks/minikin/include/minikin/
Hyphenator.h
62
// Note that a
HyphenEdit
can hold two types of edits at the same time,
64
class
HyphenEdit
{
103
HyphenEdit
() : hyphen(NO_EDIT) { }
104
HyphenEdit
(uint32_t hyphenInt) : hyphen(hyphenInt) { } // NOLINT(implicit)
106
bool operator==(const
HyphenEdit
&other) const { return hyphen == other.hyphen; }
MinikinFont.h
37
paintFlags(0), fakery(),
hyphenEdit
(), fontFeatureSettings() { }
51
HyphenEdit
hyphenEdit
;
/frameworks/minikin/libs/minikin/
LineBreaker.cpp
87
mLastHyphenation =
HyphenEdit
::NO_EDIT;
192
paint->
hyphenEdit
=
HyphenEdit
::editForThisLine(hyph);
198
paint->
hyphenEdit
=
HyphenEdit
::editForNextLine(hyph);
207
paint->
hyphenEdit
=
HyphenEdit
::NO_EDIT;
277
mLastHyphenation |
HyphenEdit
::editForThisLine(bestCandidate.hyphenType));
284
mLastHyphenation =
HyphenEdit
::editForNextLine(bestCandidate.hyphenType);
332
void LineBreaker::pushBreak(int offset, float width, uint8_t
hyphenEdit
) {
[
all
...]
Layout.cpp
77
mPaintFlags(paint.paintFlags), mHyphenEdit(paint.
hyphenEdit
), mIsRtl(dir),
115
HyphenEdit
mHyphenEdit;
598
const uint32_t originalHyphen = ctx->paint.
hyphenEdit
.getHyphen();
610
hyphen &= ~
HyphenEdit
::MASK_START_OF_LINE;
613
hyphen &= ~
HyphenEdit
::MASK_END_OF_LINE;
615
ctx->paint.
hyphenEdit
= hyphen;
632
hyphen &= ~
HyphenEdit
::MASK_START_OF_LINE;
635
hyphen &= ~
HyphenEdit
::MASK_END_OF_LINE;
637
ctx->paint.
hyphenEdit
= hyphen;
736
const uint32_t* hyphenStr =
HyphenEdit
::getHyphenString(hyphen)
[
all
...]
Hyphenator.cpp
166
const uint32_t*
HyphenEdit
::getHyphenString(uint32_t hyph) {
187
uint32_t
HyphenEdit
::editForThisLine(HyphenationType type) {
208
uint32_t
HyphenEdit
::editForNextLine(HyphenationType type) {
/frameworks/minikin/tests/unittest/
LayoutTest.cpp
382
paint.
hyphenEdit
=
HyphenEdit
::NO_EDIT;
391
paint.
hyphenEdit
=
HyphenEdit
::INSERT_HYPHEN_AT_END;
400
paint.
hyphenEdit
=
HyphenEdit
::REPLACE_WITH_HYPHEN_AT_END;
409
paint.
hyphenEdit
=
HyphenEdit
::INSERT_HYPHEN_AT_START;
418
paint.
hyphenEdit
=
HyphenEdit
::INSERT_HYPHEN_AT_START | HyphenEdit::INSERT_HYPHEN_AT_END
[
all
...]
/frameworks/base/libs/hwui/hwui/
MinikinUtils.cpp
52
minikinPaint->
hyphenEdit
= minikin::
HyphenEdit
(paint->getHyphenEdit());
Completed in 432 milliseconds