Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/stylemgr/
H A Dapp_style.cpp200 bool AppStyle::MergeAnimationString(char *dest, uint16_t destSz, const char * const src1, const cha… in MergeAnimationString() argument
202 if (strcat_s(dest, destSz, src1) != 0) { in MergeAnimationString()
205 if (strcat_s(dest, destSz, ANIMATION_VALUE_SEP) != 0) { in MergeAnimationString()
208 if (strcat_s(dest, destSz, src2) != 0) { in MergeAnimationString()
211 dest[destSz - 1] = '\0'; in MergeAnimationString()
H A Dapp_style.h89 …static bool MergeAnimationString(char* dest, uint16_t destSz, const char * const src1, const char …