Lines Matching defs:flags
76 bool SkUnicode::isTabulation(SkUnicode::CodeUnitFlags flags) {
77 return (flags & SkUnicode::kTabulation) == SkUnicode::kTabulation;
80 bool SkUnicode::isHardLineBreak(SkUnicode::CodeUnitFlags flags) {
81 return (flags & SkUnicode::kHardLineBreakBefore) == SkUnicode::kHardLineBreakBefore;
84 bool SkUnicode::isSoftLineBreak(SkUnicode::CodeUnitFlags flags) {
85 return (flags & SkUnicode::kSoftLineBreakBefore) == SkUnicode::kSoftLineBreakBefore;
88 bool SkUnicode::isGraphemeStart(SkUnicode::CodeUnitFlags flags) {
89 return (flags & SkUnicode::kGraphemeStart) == SkUnicode::kGraphemeStart;
92 bool SkUnicode::isControl(SkUnicode::CodeUnitFlags flags) {
93 return (flags & SkUnicode::kControl) == SkUnicode::kControl;
96 bool SkUnicode::isPartOfWhiteSpaceBreak(SkUnicode::CodeUnitFlags flags) {
97 return (flags & SkUnicode::kPartOfWhiteSpaceBreak) == SkUnicode::kPartOfWhiteSpaceBreak;