MCPcopy Create free account
hub / github.com/google/re2j / fromUTF16

Method fromUTF16

java/com/google/re2j/MachineInput.java:28–30  ·  view source on GitHub ↗
(CharSequence s)

Source from the content-addressed store, hash-verified

26 }
27
28 static MachineInput fromUTF16(CharSequence s) {
29 return new UTF16Input(s, 0, s.length());
30 }
31
32 static MachineInput fromUTF16(CharSequence s, int start, int end) {
33 return new UTF16Input(s, start, end);

Callers 10

matchMethod · 0.95
replaceAllFuncMethod · 0.95
findMethod · 0.95
findIndexMethod · 0.95
findSubmatchMethod · 0.95
findSubmatchIndexMethod · 0.95
findAllMethod · 0.95
findAllIndexMethod · 0.95
findAllSubmatchMethod · 0.95
findAllSubmatchIndexMethod · 0.95

Calls 1

lengthMethod · 0.45

Tested by

no test coverage detected