/ohos5.0/drivers/hdf_core/framework/tools/hc-gen/src/ |
H A D | macro_gen.cpp | 99 (void)depth; in TemplateNodeSeparate() 111 for (int i = 0; i < depth; i++) { in GenFullName() 161 << " depth:" << depth; in GenNodeForeach() 165 subList.push_back(GenFullName(depth + 1, child, "_")); in GenNodeForeach() 173 std::string fullName = GenFullName(depth, node, "_"); in GenNodeForeach() 223 SetTypeData(type, current, arraySize, depth); in NodeWalk() 251 ofs_ << "#define " << GenFullName(depth, current, "_"); in SetTypeData() 258 nodeNameMap_[depth] = nodeName; in SetTypeData() 259 GenNodeForeach(depth, current); in SetTypeData() 267 arrayName = GenFullName(depth - 1, parent, "_"); in SetTypeData() [all …]
|
H A D | text_gen.cpp | 342 return ImplementGenTraversal(current, depth); in OutputImplGlobalVariables() 346 return ImplementCloseBraceGen(current, depth); in OutputImplGlobalVariables() 375 ofs_ << Indent(depth) << "},\n"; in ImplementCloseBraceGen() 398 return ObjectImplementGen(object, depth); in ImplementGenTraversal() 423 ofs_ << Indent(depth) << "},\n"; in ObjectImplementGen() 428 return PrintTermImplement(object, depth); in ObjectImplementGen() 446 ofs_ << Indent(depth) << '.' << nodeName << " = "; in TemplateObjectImplGen() 506 return PrintArrayImplement(object, depth); in PrintTermImplement() 545 ofs_ << Indent(depth) << '.' << object->Name() << " = { "; in PrintArrayImplement() 547 if (!HcsPrintArrayContent(termContext, depth + 1)) { in PrintArrayImplement() [all …]
|
H A D | text_gen.h | 64 uint32_t ImplementGenTraversal(const std::shared_ptr<AstObject> &object, int32_t depth); 66 uint32_t ImplementCloseBraceGen(const std::shared_ptr<AstObject> &object, int32_t depth); 72 uint32_t ObjectImplementGen(const std::shared_ptr<AstObject> &object, int32_t depth); 74 bool TemplateObjectImplGen(const std::shared_ptr<AstObject> &object, int32_t depth); 97 uint32_t PrintTermImplement(const std::shared_ptr<AstObject> &object, int32_t depth); 101 uint32_t PrintArrayImplement(const std::shared_ptr<AstObject> &object, int32_t depth); 103 bool PrintArrayImplInSubClass(const std::shared_ptr<AstObject> &object, int32_t depth);
|
H A D | macro_gen.h | 32 …std::string GenFullName(int32_t depth, const std::shared_ptr<AstObject> &node, const std::string &… 34 bool GenNodeForeach(int32_t depth, const std::shared_ptr<AstObject> &node); 38 …Data(uint32_t type, const std::shared_ptr<AstObject> ¤t, uint32_t &arraySize, int32_t depth); 51 std::string GenRefObjName(int32_t depth, const std::shared_ptr<AstObject> &object);
|
/ohos5.0/docs/zh-cn/device-dev/reference/hdi-apis/nnrt/ |
H A D | _one_hot_v10.md | 16 - depth,一个整型标量,决定one-hot向量的深度。要求depth>0。 38 …。 indices的形状是[N,C],depth的值是D,当axis=0时,output形状为[D,N,C], indices的形状是[N,C],depth的值是D,当axis=-1时,outpu… 51 …。 indices的形状是[N,C],depth的值是D,当axis=0时,output形状为[D,N,C], indices的形状是[N,C],depth的值是D,当axis=-1时,outpu…
|
H A D | _one_hot_v20.md | 16 - depth,一个整型标量,决定one-hot向量的深度。要求depth>0。 38 …。 indices的形状是[N,C],depth的值是D,当axis=0时,output形状为[D,N,C], indices的形状是[N,C],depth的值是D,当axis=-1时,outpu… 51 …。 indices的形状是[N,C],depth的值是D,当axis=0时,output形状为[D,N,C], indices的形状是[N,C],depth的值是D,当axis=-1时,outpu…
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/webgl/entry/src/main/js/MainAbility/pages/index/utils/ |
H A D | CubeShape.js | 22 depth; //边长 52 this.depth = depth; 67 …t(this.center.x - this.width / 2, this.center.y + this.height / 2, this.center.z - this.depth / 2); 68 …t(this.center.x + this.width / 2, this.center.y + this.height / 2, this.center.z - this.depth / 2); 69 …t(this.center.x - this.width / 2, this.center.y + this.height / 2, this.center.z + this.depth / 2); 70 …t(this.center.x + this.width / 2, this.center.y + this.height / 2, this.center.z + this.depth / 2); 90 …t(this.center.x - this.width / 2, this.center.y - this.height / 2, this.center.z - this.depth / 2); 91 …t(this.center.x + this.width / 2, this.center.y - this.height / 2, this.center.z - this.depth / 2); 92 …t(this.center.x - this.width / 2, this.center.y - this.height / 2, this.center.z + this.depth / 2); 93 …t(this.center.x + this.width / 2, this.center.y - this.height / 2, this.center.z + this.depth / 2); [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/navigation/ |
H A D | navigation_manager.h | 56 void AddNavigationDumpCallback(int32_t nodeId, int32_t depth, const DumpCallback& callback); 57 void RemoveNavigationDumpCallback(int32_t nodeId, int32_t depth); 95 int32_t depth; member 97 DumpMapKey(int32_t n, int32_t d) : nodeId(n), depth(d) {} in DumpMapKey() 100 if (depth != o.depth) { 101 return depth < o.depth;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/log/ |
H A D | dump_log.cpp | 26 void DumpLog::Print(int32_t depth, const std::string& className, int32_t childSize) in Print() argument 32 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() 88 void DumpLog::Append(int32_t depth, const std::string& className, int32_t childSize) in Append() argument 90 for (int32_t i = 0; i < depth; ++i) { in Append() 98 for (int32_t i = 0; i < depth; ++i) { in Append()
|
/ohos5.0/foundation/ability/ability_base/interfaces/kits/native/want/include/ |
H A D | want_params.h | 104 static WantParams *Unmarshalling(Parcel &parcel, int depth = 1); 154 bool WriteArrayToParcel(Parcel &parcel, IArray *ao, int depth) const; 155 bool ReadArrayToParcel(Parcel &parcel, int type, sptr<IArray> &ao, int depth); 156 bool ReadFromParcel(Parcel &parcel, int depth = 1); 157 bool ReadFromParcelParam(Parcel &parcel, const std::string &key, int type, int depth); 178 bool ReadFromParcelArrayWantParams(Parcel &parcel, sptr<IArray> &ao, int depth); 179 … bool ReadFromParcelWantParamWrapper(Parcel &parcel, const std::string &key, int type, int depth); 192 bool WriteArrayToParcelWantParams(Parcel &parcel, IArray *ao, int depth) const; 194 bool WriteMarshalling(Parcel &parcel, sptr<IInterface> &o, int depth) const; 204 bool WriteToParcelWantParams(Parcel &parcel, sptr<IInterface> &o, int depth) const; [all …]
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/ |
H A D | schema_object.cpp | 539 for (uint32_t depth = 0; depth < SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX; depth++) { in ParseCheckSchemaDefine() local 725 if (schemaDefine_.count(depth) == 0) { in CheckFieldPathIndexableThenSave() 729 if (schemaDefine_[depth].count(eachPath) == 0) { in CheckFieldPathIndexableThenSave() 733 if (!schemaDefine_[depth][eachPath].isIndexable) { in CheckFieldPathIndexableThenSave() 778 for (uint32_t depth = 0; depth < SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX; depth++) { in CompareSchemaDefine() local 781 (schemaDefine_.count(depth) == 0 ? emptyDefine : schemaDefine_.at(depth)); in CompareSchemaDefine() 783 … (newSchema.schemaDefine_.count(depth) == 0 ? emptyDefine : newSchema.schemaDefine_.at(depth)); in CompareSchemaDefine() 792 defineInNewSchema.size(), defineInOldSchema.size(), depth); in CompareSchemaDefine() 1087 for (uint32_t depth = 0; depth < SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX; depth++) { in CheckValue() local 1088 …if (schemaDefine_.count(depth) == 0 || schemaDefine_.at(depth).empty()) { // No schema define in t… in CheckValue() [all …]
|
/ohos5.0/docs/en/application-dev/media/camera/ |
H A D | camera-depth-data.md | 16 …depth data capabilities, in the format of an **depthProfilesArray** array, supported by the curren… 32 …ra-sys.md#start) in the **depthDataOutput** class to start outputting the depth data stream. If … 44 console.error(`Failed to start depth data output. error: ${JSON.stringify(err)}`); 51 During camera application development, you can listen for depth data and depth data output errors. 53 - Register the fixed callback function **depthDataAvailable** to obtain the depth data. 66 - Register the **'error'** event to listen for depth data output errors. The callback function retu…
|
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/webgl/include/webgl/ |
H A D | webgl_arg.h | 89 GLsizei depth; member 98 this->depth = 1; in WebGLImageOption() 100 WebGLImageOption(GLenum format, GLenum type, GLsizei width, GLsizei height, GLsizei depth) in WebGLImageOption() 106 this->depth = depth; in WebGLImageOption() 114 this->depth = opt.depth; in Assign() 233 GLsizei depth; member 237 format(0), type(0), width(0), height(0), border(0), depth(0) {} in TexImageArg() 250 depth = arg.depth; in TexImageArg() 262 this->depth = depth; in TexImageArg() 277 GLsizei depth; member [all …]
|
/ohos5.0/foundation/arkui/ace_engine/test/tools/event_tree_to_graph/resources/dumpfile/ |
H A D | input.txt | 54 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 242, type: TouchEventActuator, depth: … 58 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 233, type: TouchEventActuator, depth: … 62 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 84, type: TouchEventActuator, depth: 0… 66 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 84, type: ExclusiveRecognizer, depth: … 121 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 84, type: TouchEventActuator, depth: 0… 125 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 84, type: ExclusiveRecognizer, depth: … 166 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 84, type: TouchEventActuator, depth: 0… 170 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 84, type: ExclusiveRecognizer, depth: … 211 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 84, type: TouchEventActuator, depth: 0… 256 xxx)-(10000:10000:scope)] EventTreeDumpInfo: frameNodeId: 84, type: TouchEventActuator, depth: 0… [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/assets/3d/rendernodegraphs/ |
H A D | core3d_rng_cam_scene_hdrp.rng | 17 "name": "depth", 46 "name": "depth", 92 "name": "depth", 128 "name": "depth", 166 "name": "depth",
|
H A D | core3d_rng_cam_scene_hdrp_msaa_depth.rng | 17 "name": "depth", 34 "name": "depth", 98 "name": "depth", 138 "name": "depth", 185 "name": "depth",
|
H A D | core3d_rng_cam_scene_lwrp_msaa_depth.rng | 13 "name": "depth", 30 "name": "depth", 93 "name": "depth", 137 "name": "depth", 189 "name": "depth",
|
H A D | core3d_rng_cam_scene_deferred.rng | 17 "name": "depth", 45 "name": "depth", 111 "name": "depth", 167 "name": "depth", 222 "name": "depth", 277 "name": "depth", 330 "name": "depth",
|
H A D | core3d_rng_cam_scene_lwrp.rng | 26 "name": "depth", 71 "name": "depth", 106 "name": "depth", 145 "name": "depth",
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/puv2_common/ |
H A D | puv2_view_base.ts | 585 public debugInfoViewHierarchyInternal(depth: number = 0, recursive: boolean = false): string { 586 let retVaL: string = `\n${' '.repeat(depth)}|--${this.constructor.name}[${this.id__()}]`; 591 if (depth < 1 || recursive) { 593 retVaL += weakChild.deref()?.debugInfoViewHierarchyInternal(depth + 1, recursive); 603 …public debugInfoUpdateFuncByElmtIdInternal(counter: ProfileRecursionCounter, depth: number = 0, re… 604 let retVaL: string = `\n${' '.repeat(depth)}|--${this.constructor.name}[${this.id__()}]: {`; 606 retVaL += `\n${' '.repeat(depth + 2)}${value.getComponentName()}[${key}]`; 609 retVaL += `\n${' '.repeat(depth + 1)}}[${this.updateFuncByElmtId.size}]`; 612 retVaL += value.deref()?.debugInfoUpdateFuncByElmtIdInternal(counter, depth + 1, recursive); 615 if (recursive && depth === 0) {
|
H A D | iview.ts | 60 debugInfoViewHierarchyInternal(depth: number, recursive: boolean): string; 61 …debugInfoUpdateFuncByElmtIdInternal(counter: ProfileRecursionCounter, depth: number, recursive: bo… 62 …debugInfoDirtDescendantElementIdsInternal(depth: number, recursive: boolean, counter: ProfileRecur…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/rich_text/ |
H A D | rosen_render_rich_text.cpp | 27 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()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/layers/ |
H A D | layer.cpp | 33 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()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/util/ |
H A D | intf_mesh_util.h | 44 CORE_NS::Entity material, float width, float height, float depth) = 0; in CORE3D_BEGIN_NAMESPACE() 54 …_NS::IEcs& ecs, BASE_NS::string_view name, CORE_NS::Entity material, float width, float depth) = 0; in CORE3D_BEGIN_NAMESPACE() 108 float width, float height, float depth) = 0; in CORE3D_BEGIN_NAMESPACE() 118 …_NS::IEcs& ecs, BASE_NS::string_view name, CORE_NS::Entity material, float width, float depth) = 0; in CORE3D_BEGIN_NAMESPACE()
|
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/assets/render/shaders/shader/ |
H A D | depth_of_field.frag | 27 float LinearDepth(float depth, float near, float far) 29 return (far * near) / ((near - far) * depth + far); 34 const CORE_RELAXEDP float depth = texture(uDepth, texCoord, 0).r; 35 const float linearDepth = LinearDepth(depth, params2.z, params2.w);
|