Home
last modified time | relevance | path

Searched refs:floatToString (Results 1 – 25 of 107) sorted by relevance

12345

/aosp_15_r20/frameworks/base/core/java/com/android/internal/widget/remotecompose/core/operations/
H A DDrawBitmapScaled.java173 + 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 DDrawBase4.java18 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 DDrawBase3.java18 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 DUtils.java98 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 DDrawTweenPath.java18 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 DDrawBase6.java106 + 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 DColorExpression.java181 + 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 DDrawBase2.java18 import static com.android.internal.widget.remotecompose.core.operations.Utils.floatToString;
76 return mName + " " + floatToString(mV1) + " " + floatToString(mV2); in toString()
H A DDrawText.java18 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 DPathTween.java19 import static com.android.internal.widget.remotecompose.core.operations.Utils.floatToString;
80 + floatToString(mTween, mTweenOut); in toString()
H A DDrawTextOnPath.java81 + Utils.floatToString(mHOffset, mOutHOffset) in toString()
83 + Utils.floatToString(mVOffset, mOutVOffset); in toString()
H A DTextFromFloat.java102 + 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 DFloatSubject.java25 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 DSubject.java28 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 DFloatSubjectTest.java19 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 DPrimitiveFloatArraySubjectTest.java19 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 DglsShaderPerformanceCase.cpp112 … << "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 DglsLongStressCase.cpp154 …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 DglsCalibration.cpp428 … << " calls => " << de::floatToString(calibrateIterations[iterNdx].frameTime, 2) << " us (" in logCalibrationInfo()
429 << de::floatToString(1000000.0f / calibrateIterations[iterNdx].frameTime, 2) << " fps)" in logCalibrationInfo()
H A DglsLifetimeTests.cpp534 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 Des3fInstancedRenderingTests.cpp197 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 DdeStringUtil.cpp119 std::string floatToString(float val, int precision) in floatToString() function
183 DE_TEST_ASSERT(floatToString(4, 1) == "4.0"); in StringUtil_selfTest()
H A DdeStringUtil.hpp49 std::string floatToString(float val, int precision);
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationUserDefinedIO.cpp171 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 DStringUtils.java36 public static String floatToString( in floatToString() method in StringUtils

12345