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

Method insert

shared/java/ManagedString.java:30–36  ·  view source on GitHub ↗
(int offset, @NotNull String s)

Source from the content-addressed store, hash-verified

28 }
29
30 @NotNull @Contract("-> this")
31 public ManagedString insert(int offset, @NotNull String s) {
32 assert s != null : "Can't insrert with s == null";
33 Stats.onNativeCall();
34 _nInsert(_ptr, offset, s);
35 return this;
36 }
37
38 @NotNull @Contract("-> this")
39 public ManagedString append(@NotNull String s) {

Callers 13

mainFunction · 0.80
run.pyFile · 0.80
run.pyFile · 0.80
run.pyFile · 0.80
run.pyFile · 0.80
run.pyFile · 0.80
run.pyFile · 0.80
run.pyFile · 0.80
run.pyFile · 0.80

Calls 2

onNativeCallMethod · 0.95
_nInsertMethod · 0.95

Tested by

no test coverage detected