Home | History | Annotate | Download | only in rendering

Lines Matching refs:TextRun

29 #include "platform/text/TextRun.h"
105 // charactersWithHyphen, if provided, must not be destroyed before the TextRun.
106 TextRun constructTextRun(RenderStyle*, const Font&, StringBuilder* charactersWithHyphen = 0) const;
107 TextRun constructTextRun(RenderStyle*, const Font&, StringView, int maximumLength, StringBuilder* charactersWithHyphen = 0) const;
110 TextRun constructTextRunForInspector(RenderStyle*, const Font&) const;
189 TextRun::ExpansionBehavior expansionBehavior() const
191 return (canHaveLeadingExpansion() ? TextRun::AllowLeadingExpansion : TextRun::ForbidLeadingExpansion)
192 | (expansion() && nextLeafChild() ? TextRun::AllowTrailingExpansion : TextRun::ForbidTrailingExpansion);