Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/measure/
H A Dcj_measure_ffi.cpp133 CJSize thisSize; in FfiMeasureTextSize() local
134 thisSize.height = 0.0; in FfiMeasureTextSize()
135 thisSize.width = 0.0; in FfiMeasureTextSize()
138 return thisSize; in FfiMeasureTextSize()
143 thisSize.height = size.Height(); in FfiMeasureTextSize()
144 thisSize.width = size.Width(); in FfiMeasureTextSize()
145 return thisSize; in FfiMeasureTextSize()
/ohos5.0/foundation/ability/idl_tool/util/
H A Dstring.cpp619 int thisSize = GetLength(); in operator +=() local
620 int newSize = thisSize + strlen(string); in operator +=()
623 errno_t retMem = memcpy_s(newString.string_, newSize + 1, string_, thisSize); in operator +=()
627 errno_t ret = strcpy_s(newString.string_ + thisSize, newSize + 1 - thisSize, string); in operator +=()
641 int thisSize = GetLength(); in operator +=() local
642 int newSize = thisSize + other.GetLength(); in operator +=()
645 (void)memcpy_s(newString.string_, newSize + 1, string_, thisSize); in operator +=()
646 errno_t ret = strcpy_s(newString.string_ + thisSize, newSize + 1 - thisSize, other.string_); in operator +=()