MCPcopy Create free account
hub / github.com/SpartanJ/eepp / getTextHints

Method getTextHints

src/eepp/core/string.cpp:1553–1559  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1551}
1552
1553Uint32 String::getTextHints() const {
1554 if ( isAscii() )
1555 return TextHints::AllAscii | TextHints::AllLatin1;
1556 if ( isLatin1() )
1557 return TextHints::AllLatin1;
1558 return 0;
1559}
1560
1561Uint32 String::getTextHints( String::View str ) {
1562 if ( isAscii( str ) )

Callers 8

getLineWidthMethod · 0.45
getTextPositionOffsetMethod · 0.45
getColFromXOffsetMethod · 0.45
drawLineTextMethod · 0.45
setTextMethod · 0.45
drawTopMethod · 0.45
computeLineBreaksMethod · 0.45
updateStateFunction · 0.45

Calls 2

isAsciiFunction · 0.85
isLatin1Function · 0.85

Tested by

no test coverage detected