/aosp_15_r20/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/ |
H A D | DrawBitmapScaled.java | 173 + Utils.floatToString(mSrcLeft, mOutSrcLeft) in toString() 175 + Utils.floatToString(mSrcTop, mOutSrcTop) in toString() 177 + Utils.floatToString(mSrcRight, mOutSrcRight) in toString() 179 + Utils.floatToString(mSrcBottom, mOutSrcBottom) in toString() 182 + Utils.floatToString(mDstLeft, mOutDstLeft) in toString() 184 + Utils.floatToString(mDstTop, mOutDstTop) in toString() 186 + Utils.floatToString(mDstRight, mOutDstRight) in toString() 188 + Utils.floatToString(mDstBottom, mOutDstBottom) in toString() 193 + Utils.floatToString(mScaleFactor, mOutScaleFactor); in toString()
|
H A D | DrawBase4.java | 18 import static com.android.internal.widget.remotecompose.core.operations.Utils.floatToString; 96 + floatToString(mX1Value, mX1) in toString() 98 + floatToString(mY1Value, mY1) in toString() 100 + floatToString(mX2Value, mX2) in toString() 102 + floatToString(mY2Value, mY2); in toString()
|
H A D | DrawBase3.java | 18 import static com.android.internal.widget.remotecompose.core.operations.Utils.floatToString; 88 + floatToString(mV1) in toString() 90 + floatToString(mV2) in toString() 92 + floatToString(mV3); in toString()
|
H A D | Utils.java | 98 public static @NonNull String floatToString(float idvalue, float value) { in floatToString() method in Utils 103 return "[" + idFromNan(idvalue) + "]" + floatToString(value); in floatToString() 105 return floatToString(value); in floatToString() 114 public static @NonNull String floatToString(float value) { in floatToString() method in Utils
|
H A D | DrawTweenPath.java | 18 import static com.android.internal.widget.remotecompose.core.operations.Utils.floatToString; 87 + floatToString(mTween, mOutTween) in toString() 89 + floatToString(mStart, mOutStart) in toString() 92 + floatToString(mStop, mOutStop); in toString()
|
H A D | DrawBase6.java | 106 + Utils.floatToString(mV1) in toString() 108 + Utils.floatToString(mV2) in toString() 110 + Utils.floatToString(mV3) in toString() 112 + Utils.floatToString(mV4); in toString()
|
H A D | ColorExpression.java | 181 + Utils.floatToString(mHue) in toString() 183 + Utils.floatToString(mSat) in toString() 185 + Utils.floatToString(mValue) in toString() 198 + Utils.floatToString(mTween) in toString()
|
H A D | DrawBase2.java | 18 import static com.android.internal.widget.remotecompose.core.operations.Utils.floatToString; 76 return mName + " " + floatToString(mV1) + " " + floatToString(mV2); in toString()
|
H A D | DrawText.java | 18 import static com.android.internal.widget.remotecompose.core.operations.Utils.floatToString; 99 + floatToString(mX, mOutX) in toString() 101 + floatToString(mY, mOutY); in toString()
|
H A D | PathTween.java | 19 import static com.android.internal.widget.remotecompose.core.operations.Utils.floatToString; 80 + floatToString(mTween, mTweenOut); in toString()
|
H A D | DrawTextOnPath.java | 81 + Utils.floatToString(mHOffset, mOutHOffset) in toString() 83 + Utils.floatToString(mVOffset, mOutVOffset); in toString()
|
H A D | TextFromFloat.java | 102 + Utils.floatToString(mValue) in toString() 203 String s = StringUtils.floatToString(v, mDigitsBefore, mDigitsAfter, mPre, mAfter); in apply()
|
/aosp_15_r20/external/truth/core/src/main/java/com/google/common/truth/ |
H A D | FloatSubject.java | 25 import static com.google.common.truth.Platform.floatToString; 126 fact("expected", floatToString(expected)), in isWithin() 128 fact("outside tolerance", floatToString(tolerance))); in isWithin() 165 fact("expected not to be", floatToString(expected)), 167 fact("within tolerance", floatToString(tolerance)));
|
H A D | Subject.java | 28 import static com.google.common.truth.Platform.floatToString; 428 return floatToString((Float) o); in formatActualOrExpected() 636 itemAsStrings.add(floatToString(item)); in floatArrayAsString()
|
/aosp_15_r20/external/truth/core/src/test/java/com/google/common/truth/ |
H A D | FloatSubjectTest.java | 19 import static com.google.common.truth.Platform.floatToString; 112 assertThat(failure).factValue("expected").isEqualTo(floatToString(expected)); in assertThatIsWithinFails() 113 assertThat(failure).factValue("but was").isEqualTo(floatToString(actual)); in assertThatIsWithinFails() 114 assertThat(failure).factValue("outside tolerance").isEqualTo(floatToString(tolerance)); in assertThatIsWithinFails() 140 assertThat(failure).factValue("expected not to be").isEqualTo(floatToString(expected)); in assertThatIsNotWithinFails() 141 assertThat(failure).factValue("within tolerance").isEqualTo(floatToString(tolerance)); in assertThatIsNotWithinFails()
|
H A D | PrimitiveFloatArraySubjectTest.java | 19 import static com.google.common.truth.Platform.floatToString; 76 assertFailureValue("expected", "[" + floatToString(JUST_OVER_2POINT2) + "]"); in isEqualTo_WithoutToleranceParameter_Fail_NotEqual() 77 assertFailureValue("but was", "[" + floatToString(2.2f) + "]"); in isEqualTo_WithoutToleranceParameter_Fail_NotEqual()
|
/aosp_15_r20/external/deqp/modules/glshared/ |
H A D | glsShaderPerformanceCase.cpp | 112 … << "Requested fragment/vertex-ratio: " << de::floatToString(fragmentsPerVertices, 2) << "\n" in setVertexFragmentRatio() 113 … << "Computed fragment/vertex-ratio: " << de::floatToString(finalRatio, 2) << TestLog::EndMessage; in setVertexFragmentRatio() 219 m_testCtx.setTestResult(QP_TEST_RESULT_PASS, de::floatToString(result, 2).c_str()); in reportResult()
|
H A D | glsLongStressCase.cpp | 154 …return prob == 0.0f ? "never" : prob == 1.0f ? "ALWAYS" : de::floatToString(prob * 100.0f, 0) + "%… in probabilityStr() 1389 …<< "Approximate texture memory usage limit: " << de::floatToString((float)m_maxTexMemoryUsageBytes… in init() 1391 …<< "Approximate buffer memory usage limit: " << de::floatToString((float)m_maxBufMemoryUsageBytes … in init() 1748 … << de::floatToString((float)timeDiff / (float)iterDiff, 2) << "s" << TestLog::EndMessage in iterate() 1750 … << de::floatToString((float)m_textures->computeApproxMemUsage() / Mi, 2) << " MiB / " in iterate() 1751 … << de::floatToString((float)m_maxTexMemoryUsageBytes / Mi, 2) << " MiB" << TestLog::EndMessage in iterate() 1753 << de::floatToString((float)m_buffers->computeApproxMemUsage() / Mi, 2) << " MiB / " in iterate() 1754 … << de::floatToString((float)m_maxBufMemoryUsageBytes / Mi, 2) << " MiB" << TestLog::EndMessage in iterate()
|
H A D | glsCalibration.cpp | 428 … << " calls => " << de::floatToString(calibrateIterations[iterNdx].frameTime, 2) << " us (" in logCalibrationInfo() 429 << de::floatToString(1000000.0f / calibrateIterations[iterNdx].frameTime, 2) << " fps)" in logCalibrationInfo()
|
H A D | glsLifetimeTests.cpp | 534 using de::floatToString; in initAttachment() 541 insert(params, "RED", floatToString(rnd.getFloat(), 4)); in initAttachment() 542 insert(params, "GREEN", floatToString(rnd.getFloat(), 4)); in initAttachment() 543 insert(params, "BLUE", floatToString(rnd.getFloat(), 4)); in initAttachment()
|
/aosp_15_r20/external/deqp/modules/gles3/functional/ |
H A D | es3fInstancedRenderingTests.cpp | 197 string floatIntScaleStr = "(" + de::floatToString(FLOAT_INT_SCALE, 3) + ")"; in init() 198 string floatIntBiasStr = "(" + de::floatToString(FLOAT_INT_BIAS, 3) + ")"; in init() 199 string floatUintScaleStr = "(" + de::floatToString(FLOAT_UINT_SCALE, 3) + ")"; in init() 200 string floatUintBiasStr = "(" + de::floatToString(FLOAT_UINT_BIAS, 3) + ")"; in init()
|
/aosp_15_r20/external/deqp/framework/delibs/decpp/ |
H A D | deStringUtil.cpp | 119 std::string floatToString(float val, int precision) in floatToString() function 183 DE_TEST_ASSERT(floatToString(4, 1) == "4.0"); in StringUtil_selfTest()
|
H A D | deStringUtil.hpp | 49 std::string floatToString(float val, int precision);
|
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/tessellation/ |
H A D | vktTessellationUserDefinedIO.cpp | 171 result << (i > 0 ? ", v+" + de::floatToString(0.8f * (float)i, 1) : "v"); in glslAssignBasicTypeObject() 190 result << (i > 0 ? ", v+" + de::floatToString(0.8f * (float)i, 1) : "v"); in glslCheckBasicTypeObject() 601 … << de::floatToString(0.4f * (float)output.numBasicSubobjectsInElementType(), 1) << ";\n"; in UserDefinedIOTest() 611 … << de::floatToString(0.4f * (float)output.numBasicSubobjectsInElementType(), 1) << ";\n"; in UserDefinedIOTest()
|
/aosp_15_r20/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/utilities/ |
H A D | StringUtils.java | 36 public static String floatToString( in floatToString() method in StringUtils
|