Home
last modified time | relevance | path

Searched refs:deep (Results 1 – 25 of 71) sorted by relevance

123

/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A DGenerator.js153 makeSpace(deep) { argument
155 for (let i = 0; i < deep; i++) ret += ' ';
173 objToHcsConfigNode(node, deep) { argument
176 ret = this.makeSpace(deep) + node.name_ + ' {\n';
182 ret = this.makeSpace(deep) + node.name_ + ' : delete {\n';
184 ret = this.makeSpace(deep) + 'template ' + node.name_ + ' {\n';
192 ret += this.objToHcs(node.value_[i], deep + 1);
194 ret += this.makeSpace(deep) + '}\n';
198 objToHcs(node, deep) { argument
211 ret += this.objToHcsConfigNode(node, deep);
[all …]
/ohos5.0/foundation/communication/netstack/frameworks/native/tls_socket/src/
H A Dtls_key.cpp281 void TLSKey::Clear(bool deep) in Clear() argument
286 if (deep) { in Clear()
292 if (deep) { in Clear()
298 if (deep) { in Clear()
304 if (deep) { in Clear()
310 if (deep) { in Clear()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Dexif_maker_note.cpp491 bool ExifMakerNote::ParserIFD(uint32_t offset, uint32_t ifd, uint32_t deep) in ParserIFD() argument
493 …AGE_LOGD("ParserIFD enter, offset=%{public}u, ifd=%{public}u, deep=%{public}u", offset, ifd, deep); in ParserIFD()
503 if (ParserItem(offset, ifd, deep)) { in ParserIFD()
521 bool ExifMakerNote::ParserItem(uint32_t offset, uint32_t ifd, uint32_t deep) in ParserItem() argument
523 IMAGE_LOGD("ParserItem enter, offset=%{public}u, deep=%{public}u", offset, deep); in ParserItem()
555 if (deep > 0) { in ParserItem()
556 IMAGE_LOGD("ParserItem leave, deep=%{public}u", deep); in ParserItem()
561 if (!ParserIFD((tiff_offset_ + dataOrOffset), back.tag, (deep + 1))) { in ParserItem()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dexif_maker_note_test.cpp444 uint32_t deep = 0; variable
445 bool result = exifMakerNote.ParserIFD(offset, ifd, deep);
475 uint32_t deep = 0; variable
476 bool result = exifMakerNote.ParserItem(offset, ifd, deep);
962 uint32_t deep = 0; variable
963 bool result = exifMakerNote.ParserItem(offset, ifd, deep);
967 result = exifMakerNote.ParserItem(offset, ifd, deep);
970 result = exifMakerNote.ParserItem(offset, ifd, deep);
989 uint32_t deep = 0; variable
990 bool result = exifMakerNote.ParserIFD(offset, ifd, deep);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/
H A Dnative_view.cpp97 .reloadFunc = [weakThis](bool deep) { in CreateUI()
101 self->cjView_->Reload(deep); in CreateUI()
256 void RemoteView::Reload(bool deep) in Reload() argument
264 forceCompleteRerenderFunc(GetID(), deep); in Reload()
H A Dnative_view.h55 void Reload(bool deep);
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.9.3/
H A Dchangelog-@Prop.md16 Since API version 10, @Prop supports deep copy of objects. The specific behavior is as follows:
17 - Object type: deep copy of all properties returned by **Object.keys(propObj)**.
18 - Array type: deep copy of all array items.
31 …ClassAArray to @Prop objArray in the child component PropClassAArray is a deep copy. As the object…
/ohos5.0/docs/en/application-dev/reference/apis-basic-services-kit/
H A Djs-apis-date-time.md23 | STARTUP | 0 | Number of milliseconds elapsed since system startup, including the deep sleep ti…
24 | ACTIVE | 1 | Number of milliseconds elapsed since system startup, excluding the deep sleep ti…
170 Obtains the time elapsed since system startup, excluding the deep sleep time. This API uses an asyn…
216 Obtains the time elapsed since system startup, excluding the deep sleep time. This API uses an asyn…
261 Obtains the time elapsed since system startup, excluding the deep sleep time. This API uses a promi…
279 …gt; | Promise used to return the time elapsed since system startup, excluding the deep sleep time.|
310 Obtains the time elapsed since system startup, including the deep sleep time. This API uses an asyn…
356 Obtains the time elapsed since system startup, including the deep sleep time. This API uses an asyn…
401 Obtains the time elapsed since system startup, including the deep sleep time. This API uses a promi…
419 …gt; | Promise used to return the time elapsed since system startup, including the deep sleep time.|
H A Djs-apis-system-time.md148 Obtains the time elapsed since system startup, excluding the deep sleep time. This API uses an asyn…
190 Obtains the time elapsed since system startup, excluding the deep sleep time. This API uses an asyn…
231 Obtains the time elapsed since system startup, excluding the deep sleep time. This API uses a promi…
245 …gt; | Promise used to return the time elapsed since system startup, excluding the deep sleep time.|
276 Obtains the time elapsed since system startup, including the deep sleep time. This API uses an asyn…
318 Obtains the time elapsed since system startup, including the deep sleep time. This API uses an asyn…
359 Obtains the time elapsed since system startup, including the deep sleep time. This API uses a promi…
373 …gt; | Promise used to return the time elapsed since system startup, including the deep sleep time.|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/custom/
H A Dcustom_node_base.h88 void FireReloadFunction(bool deep) in FireReloadFunction() argument
91 reloadFunc_(deep); in FireReloadFunction()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/puv2_common/
H A Diview.ts40 forceCompleteRerender(deep: boolean): void;
H A Dpuv2_view_base.ts327 public forceCompleteRerender(deep: boolean = false): void {
337 if (!deep) {
353 child.delayCompleteRerender(deep);
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/common/
H A Ddump_cfg.cpp43 void DumpCfg::Dump(int deep) const in Dump()
45 Dump(*this, deep); in Dump()
/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/include/
H A Dexif_maker_note.h132 bool ParserIFD(uint32_t offset, uint32_t ifd, uint32_t deep = 0);
133 bool ParserItem(uint32_t offset, uint32_t ifd, uint32_t deep = 0);
/ohos5.0/build/ohos/hisysevent/
H A Dgen_def_from_all_yaml.py229 def construct_mapping(self, node, deep=False): argument
232 key = self.construct_object(key_node, deep=deep)
240 return super().construct_mapping(node, deep)
/ohos5.0/docs/en/device-dev/guide/
H A Ddevice-camera-control-overview.md5 This document helps you take a deep dive into OpenHarmony camera control. With this reference, you …
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/include/common/
H A Ddump_cfg.h51 void Dump(int deep = 0) const;
/ohos5.0/foundation/communication/netstack/frameworks/native/tls_socket/include/
H A Dtls_key.h59 void Clear(bool deep);
/ohos5.0/foundation/arkui/ui_lite/frameworks/components/
H A Droot_view.cpp804 int8_t deep = 1; in Render() local
805 while (deep > 0) { in Render()
815 deep--; in Render()
819 deep++; in Render()
/ohos5.0/docs/en/application-dev/quick-start/
H A Darkts-state-management-best-practices.md24 The @Prop testNum: ClassA; // @Prop makes a deep copy.
50 …**. In this case, \@ObjectLink is a better choice, because \@Prop makes a deep copy and increases …
66 @ObjectLink testNum: ClassA; // @ObjectLink does not make a deep copy.
85 …ot need to be changed locally, @ObjectLink is preferred over @Prop, whose deep copy can result in …
/ohos5.0/docs/en/application-dev/media/image/
H A Dimage-pixelmap-operation.md76 2. Clone (deep copy) this **PixelMap** object to obtain a new PixelMap.
83 * Clone (deep copy) a PixelMap.
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view_functions.cpp118 void ViewFunctions::ExecuteReload(bool deep) in ExecuteReload() argument
125 params[0] = JSRef<JSVal>(JSVal(JsiValueConvertor::toJsiValue(deep))); in ExecuteReload()
229 void ViewFunctions::ExecuteReload(bool deep) {} in ExecuteReload() argument
H A Djs_view_functions.h48 void ExecuteReload(bool deep);
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js/
H A Djs-components-svg-textpath.md202 …complete. The horizontal offset moves from 0% to 30%, and the opacity changes from shallow to deep.
238 … text segment. The text color changes from blue to red, and the opacity changes from light to deep.
275 …opacity"**: The stroke width changes from 1px to 5px, and the opacity changes from shallow to deep.
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_node/src/
H A Dindex.d.ts81 forceCompleteRerender(deep?: boolean): void;

123