Home
last modified time | relevance | path

Searched refs:floatingPoint (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/scenewidgetplugin/plugin/src/
H A Djson.h98 void append(BASE_NS::string& out, const double floatingPoint) in append() argument
101 const int size = snprintf(nullptr, 0, FLOATING_FORMAT_STR, floatingPoint); in append()
108 … snprintf_s(out.data() + oldSize, newSize + 1 - oldSize, size, FLOATING_FORMAT_STR, floatingPoint); in append()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/json/
H A Djson.h964 void append(BASE_NS::string& out, const double floatingPoint) in CORE_BEGIN_NAMESPACE()
967 if (const int size = snprintf(nullptr, 0, FLOATING_FORMAT_STR, floatingPoint); size > 0) { in CORE_BEGIN_NAMESPACE()
975 …) + oldSize, newSize + 1 - oldSize, static_cast<size_t>(size), FLOATING_FORMAT_STR, floatingPoint); in CORE_BEGIN_NAMESPACE()