Home
last modified time | relevance | path

Searched refs:depth (Results 1 – 25 of 96) sorted by relevance

1234

/foundation/arkui/ace_engine/frameworks/base/log/
Ddump_log.cpp25 void DumpLog::Print(int32_t depth, const std::string& className, int32_t childSize) in Print() argument
31 for (int32_t i = 0; i < depth; ++i) { in Print()
42 for (int32_t i = 0; i < depth; ++i) { in Print()
64 void DumpLog::Print(int32_t depth, const std::string& content) in Print() argument
67 for (int32_t i = 0; i < depth; ++i) { in Print()
/foundation/arkui/ace_engine/frameworks/core/components/rich_text/
Drosen_render_rich_text.cpp27 void RosenRenderRichText::DumpTree(int32_t depth) in DumpTree() argument
36 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children.size()); in DumpTree()
40 item->DumpTree(depth + 1); in DumpTree()
Dflutter_render_rich_text.cpp34 void FlutterRenderRichText::DumpTree(int32_t depth) in DumpTree() argument
43 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children.size()); in DumpTree()
47 item->DumpTree(depth + 1); in DumpTree()
Dflutter_render_rich_text.h28 void DumpTree(int32_t depth) override;
Drosen_render_rich_text.h27 void DumpTree(int32_t depth) override;
/foundation/arkui/ace_engine/frameworks/core/pipeline/layers/
Dlayer.cpp33 void Layer::DumpTree(int32_t depth) in DumpTree() argument
37 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children_.size()); in DumpTree()
41 item->DumpTree(depth + 1); in DumpTree()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
Drs_draw_cmd.h266 int depth = 1; in GetTypeWithDesc() local
267 rect_.dump(desc, depth); in GetTypeWithDesc()
293 int depth = 1; in GetTypeWithDesc() local
294 rrect_.dump(desc, depth); in GetTypeWithDesc()
338 int depth = 1; in GetTypeWithDesc() local
339 rsImage_->dump(desc, depth); in GetTypeWithDesc()
385 int depth = 1; in GetTypeWithDesc() local
387 outer_.dump(desc, depth); in GetTypeWithDesc()
389 inner_.dump(desc, depth); in GetTypeWithDesc()
416 int depth = 1; in GetTypeWithDesc() local
[all …]
/foundation/ability/ability_base/interfaces/kits/native/want/include/
Dwant_params.h94 static WantParams *Unmarshalling(Parcel &parcel, int depth = 1);
136 bool WriteArrayToParcel(Parcel &parcel, IArray *ao, int depth) const;
137 bool ReadArrayToParcel(Parcel &parcel, int type, sptr<IArray> &ao, int depth);
138 bool ReadFromParcel(Parcel &parcel, int depth = 1);
139 bool ReadFromParcelParam(Parcel &parcel, const std::string &key, int type, int depth);
160 bool ReadFromParcelArrayWantParams(Parcel &parcel, sptr<IArray> &ao, int depth);
161 … bool ReadFromParcelWantParamWrapper(Parcel &parcel, const std::string &key, int type, int depth);
174 bool WriteArrayToParcelWantParams(Parcel &parcel, IArray *ao, int depth) const;
176 bool WriteMarshalling(Parcel &parcel, sptr<IInterface> &o, int depth) const;
186 bool WriteToParcelWantParams(Parcel &parcel, sptr<IInterface> &o, int depth) const;
[all …]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
Dschema_object.cpp539 for (uint32_t depth = 0; depth < SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX; depth++) { in ParseCheckSchemaDefine() local
543 … LOGE("[Schema][ParseDefine] Internal Error: GetSubFieldPathAndType Fail, Depth=%" PRIu32, depth); in ParseCheckSchemaDefine()
557 … schemaDefine_[depth][FieldPath(++(subField.first.begin()), subField.first.end())] = attribute; in ParseCheckSchemaDefine()
560 … if (depth == SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX - 1) { // Minus 1 to be the boundary in ParseCheckSchemaDefine()
723 uint32_t depth = eachPath.size() - 1; // minus 1 to change depth count from zero in CheckFieldPathIndexableThenSave() local
724 if (schemaDefine_.count(depth) == 0) { in CheckFieldPathIndexableThenSave()
728 if (schemaDefine_[depth].count(eachPath) == 0) { in CheckFieldPathIndexableThenSave()
732 if (!schemaDefine_[depth][eachPath].isIndexable) { in CheckFieldPathIndexableThenSave()
737 infoToSave.push_back({eachPath, schemaDefine_[depth][eachPath].type}); in CheckFieldPathIndexableThenSave()
773 for (uint32_t depth = 0; depth < SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX; depth++) { in CompareSchemaDefine() local
[all …]
/foundation/arkui/ace_engine/frameworks/core/components/xcomponent/
Drosen_render_xcomponent.cpp68 void RosenRenderXComponent::DumpTree(int32_t depth) in DumpTree() argument
76 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children.size()); in DumpTree()
80 item->DumpTree(depth + 1); in DumpTree()
Dflutter_render_xcomponent.cpp89 void FlutterRenderXComponent::DumpTree(int32_t depth) in DumpTree() argument
98 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children.size()); in DumpTree()
102 item->DumpTree(depth + 1); in DumpTree()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/util/
Dstate_machine.cpp95 int depth = 0; in GetStateDepth() local
98 depth++; in GetStateDepth()
102 return depth; in GetStateDepth()
/foundation/arkui/ace_engine/frameworks/core/components/test/unittest/view_update/
Dview_update_test.cpp41 NodeInfo(const string& tag, int32_t depth, int32_t childrenNum) in NodeInfo() argument
42 : tag_(tag), depth_(depth), childrenNum_(childrenNum), data_() in NodeInfo()
45 NodeInfo(const string& tag, int32_t depth, int32_t childrenNum, string data) in NodeInfo() argument
46 : tag_(tag), depth_(depth), childrenNum_(childrenNum), data_(data) in NodeInfo()
70 …static void DumpElementTree(const RefPtr<Element>& element, int32_t depth, vector<NodeInfo>& treeI…
71 …static void DumpRenderTree(const RefPtr<RenderNode>& renderNode, int32_t depth, vector<NodeInfo>& …
124 void ViewUpdateTest::DumpElementTree(const RefPtr<Element>& element, int32_t depth, vector<NodeInfo… in DumpElementTree() argument
127 treeInfo.emplace_back(AceType::TypeName(element), depth, children.size()); in DumpElementTree()
129 DumpElementTree(item, depth + 1, treeInfo); in DumpElementTree()
133 void ViewUpdateTest::DumpRenderTree(const RefPtr<RenderNode>& renderNode, int32_t depth, vector<Nod… in DumpRenderTree() argument
[all …]
/foundation/resourceschedule/ffrt/benchmarks/base/
Dbase.cpp23 static constexpr uint64_t depth = 10; // 该值越大子任务平均粒度越大(任务完成时间为泊松分布)(单位:微秒) variable
28 uint64_t target = g() % (depth * 20); in func()
30 while (acc % (depth * 20) != target) { in func()
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
Dflutter_node.cpp88 void FlutterNode::Dump(int32_t depth) in Dump() argument
91 for (int32_t i = 0; i < depth; i++) { in Dump()
97 node->Dump(depth + 1); in Dump()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/src/webgl/src/
Dutil.cpp83 string depth = Util::GetContextAttr(vec[i], "depth", 7, 4); in SetContextAttr() local
84 if (depth == "true") { in SetContextAttr()
85 webGlContextAttributes->depth = true; in SetContextAttr()
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/mtp_native_test/src/
Dmtp_native_test.cpp60 context->depth = 1;
86 context->depth = 0;
113 context->depth = 0;
140 context->depth = 1;
166 context->depth = 1;
192 context->depth = 0;
219 context->depth = 0;
245 context->depth = 1;
271 context->depth = 0;
298 context->depth = 0;
[all …]
/foundation/arkui/ace_engine/frameworks/core/components_v2/tabs/
Dtabs_helper.h399 int depth = 4, const std::string& shift = "")
401 if (depth == 0) {
421 DumpComponents(single->GetChild(), "", depth -1, shift + " ");
426 DumpComponents(child, "", depth -1, shift + " ");
434 const std::string& header = "", int depth = 4, const std::string& shift = "")
436 if (depth == 0) {
459 TabsHelper::DumpElements(child, "", depth -1, shift + " ");
/foundation/ability/ability_base/interfaces/kits/native/want/src/
Dwant_params.cpp532 bool WantParams::WriteToParcelWantParams(Parcel &parcel, sptr<IInterface> &o, int depth) const in WriteToParcelWantParams()
551 return value.DoMarshalling(parcel, depth + 1); in WriteToParcelWantParams()
662 bool WantParams::WriteMarshalling(Parcel &parcel, sptr<IInterface> &o, int depth) const in WriteMarshalling()
683 return WriteToParcelWantParams(parcel, o, depth); in WriteMarshalling()
688 return WriteArrayToParcel(parcel, array, depth); in WriteMarshalling()
695 bool WantParams::DoMarshalling(Parcel &parcel, int depth) const in DoMarshalling()
697 if (depth >= MAX_RECURSION_DEPTH) { in DoMarshalling()
716 if (!WriteMarshalling(parcel, o, depth)) { in DoMarshalling()
949 bool WantParams::WriteArrayToParcelWantParams(Parcel &parcel, IArray *ao, int depth) const in WriteArrayToParcelWantParams()
972 if (!wp.DoMarshalling(parcel, depth + 1)) { in WriteArrayToParcelWantParams()
[all …]
/foundation/arkui/ace_engine/frameworks/core/components/video/
Drosen_render_texture.cpp154 void RosenRenderTexture::DumpTree(int32_t depth) in DumpTree() argument
164 DumpLog::GetInstance().Print(depth, AceType::TypeName(this), children.size()); in DumpTree()
168 item->DumpTree(depth + 1); in DumpTree()
/foundation/ability/ability_base/test/fuzztest/wantparamsfirst_fuzzer/
Dwantparamsfirst_fuzzer.cpp63 int depth = static_cast<int>(GetU32Data(data)); in DoSomethingInterestingWithMyAPI() local
64 wantParams->WriteToParcelWantParams(parcel, byteIt, depth); in DoSomethingInterestingWithMyAPI()
/foundation/ability/ability_base/test/fuzztest/wantparamssecond_fuzzer/
Dwantparamssecond_fuzzer.cpp53 int depth = static_cast<int>(GetU32Data(data)); in DoSomethingInterestingWithMyAPI() local
54 wantParams->WriteArrayToParcelWantParams(parcel, ao, depth); in DoSomethingInterestingWithMyAPI()
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/src/webgl/include/context/
Dwebgl_context_attributes.h27 bool depth = true; variable
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
Drs_image.h112 void dump(std::string &desc, int depth) const in dump() argument
114 std::string split(depth, '\t'); in dump()
121 radius_[i].dump(desc, depth + 1); in dump()
/foundation/arkui/ace_engine/frameworks/core/components/focusable/
Dfocusable_element.cpp233 void FocusableElement::DumpFocusTree(int32_t depth) in DumpFocusTree() argument
235 isNode_ ? FocusNode::DumpFocusTree(depth) : FocusGroup::DumpFocusTree(depth); in DumpFocusTree()

1234