Home
last modified time | relevance | path

Searched refs:deep (Results 1 - 25 of 54) sorted by relevance

123

/third_party/PyYAML/lib/yaml/
H A Dconstructor.py67 def construct_object(self, node, deep=False):
70 if deep:
113 if deep:
124 def construct_sequence(self, node, deep=False):
129 return [self.construct_object(child, deep=deep)
132 def construct_mapping(self, node, deep=False):
139 key = self.construct_object(key_node, deep=deep)
143 value = self.construct_object(value_node, deep
[all...]
/third_party/vk-gl-cts/framework/platform/ohos/
H A Dtestmain.cpp106 bool GetCasePath(tcu::TestNode *node, std::vector<tcu::TestNode *> &casePath, std::vector<std::string> &namePath, uint32_t deep = 0) in GetCasePath()
108 if (deep >= namePath.size()) in GetCasePath()
110 if (namePath[deep].compare(node->getName()) != 0) in GetCasePath()
126 // printf("-----------%s==%s\n",children[i]->getName(),namePath[deep+1].c_str()); in GetCasePath()
127 if (GetCasePath(children[i], casePath, namePath, deep + 1)) in GetCasePath()
/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()
/third_party/python/Lib/
H A Dcopy.py1 """Generic (shallow and deep) copying operations.
8 x = copy.deepcopy(y) # make a deep copy of y
12 The difference between shallow and deep copying is only relevant for
20 - A deep copy constructs a new compound object and then, recursively,
23 Two problems often exist with deep copy operations that don't exist
29 b) because deep copy copies *everything* it may copy too much, e.g.
33 Python's deep copy operation avoids these problems by:
168 "un(deep)copyable object of type %s" % cls)
262 deep = memo is not None
263 if deep an
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/
H A Dnative_view.cpp93 .reloadFunc = [weakThis](bool deep) { in CreateUI()
97 self->cjView_->Reload(deep); in CreateUI()
252 void RemoteView::Reload(bool deep) in Reload() argument
260 forceCompleteRerenderFunc(GetID(), deep); in Reload() local
/third_party/backends/lib/
H A Dalloca.c149 char *deep; /* For stack depth measure. */ member
185 if ((STACK_DIR > 0 && hp->h.deep > depth)
186 || (STACK_DIR < 0 && hp->h.deep < depth))
214 ((header *) new)->h.deep = depth;
/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Dexif_maker_note.cpp493 bool ExifMakerNote::ParserIFD(uint32_t offset, uint32_t ifd, uint32_t deep) in ParserIFD() argument
495 IMAGE_LOGD("ParserIFD enter, offset=%{public}u, ifd=%{public}u, deep=%{public}u", offset, ifd, deep); in ParserIFD()
505 if (ParserItem(offset, ifd, deep)) { in ParserIFD()
523 bool ExifMakerNote::ParserItem(uint32_t offset, uint32_t ifd, uint32_t deep) in ParserItem() argument
525 IMAGE_LOGD("ParserItem enter, offset=%{public}u, deep=%{public}u", offset, deep); in ParserItem()
557 if (deep > 0) { in ParserItem()
558 IMAGE_LOGD("ParserItem leave, deep=%{public}u", deep); in ParserItem()
[all...]
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/
H A Dexif_maker_note_test.cpp444 uint32_t deep = 0; in HWTEST_F() local
445 bool result = exifMakerNote.ParserIFD(offset, ifd, deep); in HWTEST_F()
475 uint32_t deep = 0; in HWTEST_F() local
476 bool result = exifMakerNote.ParserItem(offset, ifd, deep); in HWTEST_F()
962 uint32_t deep = 0; in HWTEST_F() local
963 bool result = exifMakerNote.ParserItem(offset, ifd, deep); in HWTEST_F()
967 result = exifMakerNote.ParserItem(offset, ifd, deep); in HWTEST_F()
970 result = exifMakerNote.ParserItem(offset, ifd, deep); in HWTEST_F()
989 uint32_t deep = 0; in HWTEST_F() local
990 bool result = exifMakerNote.ParserIFD(offset, ifd, deep); in HWTEST_F()
[all...]
/third_party/jsframework/runtime/main/reactivity/
H A Dwatcher.js21 * - {Boolean} deep
55 // State for avoiding false triggers for deep and Array watchers during vm._digest().
66 // "touch" every property so they are all tracked as dependencies for deep watching.
67 if (this.deep) {
131 ((isObject(value) || this.deep) && !this.shallow)
185 * is collected as a "deep" dependency.</p>
/third_party/python/Lib/xml/dom/
H A Dminidom.py206 def cloneNode(self, deep):
207 return _clone_node(self, deep, self.ownerDocument or self)
1327 def cloneNode(self, deep):
1334 if deep:
1652 def cloneNode(self, deep):
1653 if not deep:
1660 childclone = _clone_node(n, deep, clone)
1809 def importNode(self, node, deep):
1814 return _clone_node(node, deep, self)
1889 def _clone_node(node, deep, newOwnerDocumen
[all...]
/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()
/third_party/mesa3d/include/HaikuGL/
H A DGLView.h73 virtual status_t Archive(BMessage *data, bool deep = true) const;
155 virtual status_t Archive(BMessage *data, bool deep = true) const;
/kernel/linux/linux-5.10/drivers/mfd/
H A Dintel_pmc_bxt.c141 u64 deep, shlw; in intel_pmc_s0ix_counter_read() local
144 deep = readq(pmc->gcr_mem_base + PMC_GCR_TELEM_DEEP_S0IX_REG); in intel_pmc_s0ix_counter_read()
148 *data = S0IX_RESIDENCY_IN_USECS(deep, shlw); in intel_pmc_s0ix_counter_read()
/kernel/linux/linux-6.6/drivers/mfd/
H A Dintel_pmc_bxt.c141 u64 deep, shlw; in intel_pmc_s0ix_counter_read() local
144 deep = readq(pmc->gcr_mem_base + PMC_GCR_TELEM_DEEP_S0IX_REG); in intel_pmc_s0ix_counter_read()
148 *data = S0IX_RESIDENCY_IN_USECS(deep, shlw); in intel_pmc_s0ix_counter_read()
/third_party/mesa3d/src/hgl/
H A DGLView.cpp273 BGLView::Archive(BMessage* data, bool deep) const in Archive()
275 return BView::Archive(data, deep); in Archive()
542 BGLScreen::Archive(BMessage* data, bool deep) const
544 return BWindowScreen::Archive(data, deep);
/third_party/typescript/tests/baselines/reference/
H A DobjectLiteralParameterResolution.js4 extend<T>(deep: boolean, target: T, ...objs: any[]): T;
H A DmappedTypeRecursiveInference.js5 declare function foo<T>(deep: Deep<T>): T;
/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);
/kernel/linux/linux-5.10/scripts/gdb/linux/
H A Dproc.py61 for res, deep in get_resources(child, depth + 1):
62 yield res, deep
/kernel/linux/linux-6.6/scripts/gdb/linux/
H A Dproc.py63 for res, deep in get_resources(child, depth + 1):
64 yield res, deep
/foundation/communication/netstack/frameworks/native/tls_socket/include/
H A Dtls_key.h59 void Clear(bool deep);
/third_party/icu/icu4c/source/common/unicode/
H A Dutext.h299 * A deep clone will copy both the UText data structures and the underlying text.
302 * required to support deep clones. The user of clone() must check the status return
306 * Replaceable all support deep cloning.
308 * The UText returned from a deep clone will be writable, assuming that the text
333 * write access with deep clones.
342 * @param deep true to request a deep clone, false for a shallow clone.
346 * @param status Errors are returned here. For deep clones, U_UNSUPPORTED_ERROR
353 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status);
938 * Generally occurs as the result of a deep clon
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Dutext.h299 * A deep clone will copy both the UText data structures and the underlying text.
302 * required to support deep clones. The user of clone() must check the status return
306 * Replaceable all support deep cloning.
308 * The UText returned from a deep clone will be writable, assuming that the text
333 * write access with deep clones.
342 * @param deep true to request a deep clone, false for a shallow clone.
346 * @param status Errors are returned here. For deep clones, U_UNSUPPORTED_ERROR
353 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status);
938 * Generally occurs as the result of a deep clon
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dutext.h299 * A deep clone will copy both the UText data structures and the underlying text.
302 * required to support deep clones. The user of clone() must check the status return
306 * Replaceable all support deep cloning.
308 * The UText returned from a deep clone will be writable, assuming that the text
333 * write access with deep clones.
342 * @param deep true to request a deep clone, false for a shallow clone.
346 * @param status Errors are returned here. For deep clones, U_UNSUPPORTED_ERROR
353 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status);
938 * Generally occurs as the result of a deep clon
[all...]
/third_party/icu/icu4c/source/common/
H A Dutext.cpp522 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status) { in utext_clone() argument
526 UText *result = src->pFuncs->clone(dest, src, deep, status); in utext_clone()
1565 utf8TextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status)
1570 // For deep clones, make a copy of the string.
1579 if (deep && U_SUCCESS(*status)) {
1698 repTextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status) {
1702 // For deep clones, make a copy of the Replaceable.
1707 if (deep && U_SUCCESS(*status)) {
1712 // with deep clone, the copy is writable, even when the source is not.
2088 unistrTextClone(UText *dest, const UText *src, UBool deep, UErrorCod
[all...]

Completed in 21 milliseconds

123