Home
last modified time | relevance | path

Searched refs:newLength (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/src/
H A Dintercepted_data_impl.cpp122 …size_t newLength = totalLength_ - Parcel::GetVectorCharLen(oldKey) + Parcel::GetVectorCharLen(newK… in ModifyKey() local
123 if (!CheckLength(newLength, maxPacketSize_)) { in ModifyKey()
127 totalLength_ = newLength; in ModifyKey()
159 …size_t newLength = totalLength_ - Parcel::GetVectorCharLen(oldValue) + Parcel::GetVectorCharLen(ne… in ModifyValue() local
160 if (!CheckLength(newLength, maxPacketSize_)) { in ModifyValue()
164 totalLength_ = newLength; in ModifyValue()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/span/
H A Dmutable_span_string.cpp229 auto newLength = wOther.length(); in ProcessSpanBaseList() local
231 newLength += static_cast<size_t>(spanEnd - end); in ProcessSpanBaseList()
233 (*it)->UpdateEndIndex(newLength + spanStart); in ProcessSpanBaseList()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/
H A Djs-apis-arkts-collections.md526 let newLength = array.unshift(0); // 返回4,Array变为[0, 1, 2, 3]
/ohos5.0/docs/en/application-dev/reference/apis-arkts/
H A Djs-apis-arkts-collections.md526 let newLength = array.unshift(0); // 4 is returned. The array changes to [0, 1, 2, 3].