MCPcopy Create free account
hub / github.com/LineageOS/android_frameworks_base / toString

Method toString

core/java/android/util/Spline.java:140–155  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

138
139 // For debugging.
140 @Override
141 public String toString() {
142 StringBuilder str = new StringBuilder();
143 final int n = mX.length;
144 str.append("[");
145 for (int i = 0; i < n; i++) {
146 if (i != 0) {
147 str.append(", ");
148 }
149 str.append("(").append(mX[i]);
150 str.append(", ").append(mY[i]);
151 str.append(": ").append(mM[i]).append(")");
152 }
153 str.append("]");
154 return str.toString();
155 }
156}

Callers 8

isObjectSelectedMethod · 0.45
logTimeOfDayMethod · 0.45
concatGroupsMethod · 0.45
digitsAndPlusOnlyMethod · 0.45
flushBuilderMethod · 0.45
dumpMethod · 0.45
valueMethod · 0.45
getStackTraceStringMethod · 0.45

Calls 1

appendMethod · 0.65

Tested by

no test coverage detected