Searched refs:thisSize (Results 1 - 2 of 2) sorted by relevance
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/measure/ |
H A D | cj_measure_ffi.cpp | 131 CJSize thisSize; in FfiMeasureTextSize() local 132 thisSize.height = 0.0; in FfiMeasureTextSize() 133 thisSize.width = 0.0; in FfiMeasureTextSize() 136 return thisSize; in FfiMeasureTextSize() 141 thisSize.height = size.Height(); in FfiMeasureTextSize() 142 thisSize.width = size.Width(); in FfiMeasureTextSize() 143 return thisSize; in FfiMeasureTextSize()
|
/foundation/ability/idl_tool/util/ |
H A D | string.cpp | 619 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, othe in operator +=() [all...] |
Completed in 2 milliseconds