MCPcopy Index your code
hub / github.com/HumbleUI/Skija / fromString

Method fromString

shared/java/FourByteTag.java:4–4  ·  view source on GitHub ↗
(String name)

Source from the content-addressed store, hash-verified

2
3public interface FourByteTag {
4 static int fromString(String name) {
5 assert name.length() == 4 : "Name must be exactly 4 symbols, got: '" + name + "'";
6 return (name.charAt(0) & 0xFF) << 24
7 | (name.charAt(1) & 0xFF) << 16

Callers 6

FontVariationMethod · 0.95
getTableSizeMethod · 0.95
getTableDataMethod · 0.95
FontVariationAxisMethod · 0.95
FontFeatureMethod · 0.95
ScriptRunMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected