Home
last modified time | relevance | path

Searched refs:parentType (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/ability/idl_tool/idl_tool_2/ast/
H A Dast_struct_type.cpp21 void ASTStructType::SetParentType(const AutoPtr<ASTStructType> &parentType) in SetParentType() argument
23 if (parentType == nullptr) { in SetParentType()
27 std::vector<std::tuple<std::string, AutoPtr<ASTType>>> parentMembers = parentType->GetMembers(); in SetParentType()
31 parentType_ = parentType; in SetParentType()
H A Dast_struct_type.h59 void SetParentType(const AutoPtr<ASTStructType> &parentType);
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/ast/
H A Dast_struct_type.cpp14 void ASTStructType::SetParentType(const AutoPtr<ASTStructType> &parentType) in SetParentType() argument
16 if (parentType == nullptr) { in SetParentType()
20 std::vector<std::tuple<std::string, AutoPtr<ASTType>>> parentMembers = parentType->GetMembers(); in SetParentType()
24 parentType_ = parentType; in SetParentType()
H A Dast_struct_type.h52 void SetParentType(const AutoPtr<ASTStructType> &parentType);
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/
H A Drd_json_object.cpp229 int JsonObject::CheckSubObj(std::set<std::string> &fieldSet, cJSON *subObj, int parentType, bool is… in CheckSubObj() argument
247 if (parentType == cJSON_Array) { in CheckSubObj()
784 int JsonObject::CheckSubObj(std::set<std::string> &fieldSet, cJSON *subObj, int parentType, bool is…
788 (void)parentType;
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/include/
H A Drd_json_object.h111 …int CheckSubObj(std::set<std::string> &fieldSet, cJSON *subObj, int parentType, bool isFirstFloor);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dtitle_bar_pattern.cpp335 … auto parentType = titleBarLayoutProperty->GetTitleBarParentTypeValue(TitleBarParentType::NAVBAR); in MountBackButton() local
342 if (parentType == TitleBarParentType::NAVBAR) { in MountBackButton()
364 if (parentType == TitleBarParentType::NAV_DESTINATION) { in MountBackButton()
382 … auto parentType = titleBarLayoutProperty->GetTitleBarParentTypeValue(TitleBarParentType::NAVBAR); in MountSubTitle() local
385 if (parentType == TitleBarParentType::NAV_DESTINATION) { in MountSubTitle()
392 … ResetSubTitleProperty(subtitleNode, titleMode, parentType == TitleBarParentType::NAV_DESTINATION); in MountSubTitle()
H A Dnavigation_title_util.cpp895 … auto parentType = titleBarLayoutProperty->GetTitleBarParentTypeValue(TitleBarParentType::NAVBAR); in IsNeedHoverModeAction() local
896 if (parentType == TitleBarParentType::NAVBAR && in IsNeedHoverModeAction()
904 if (parentType == TitleBarParentType::NAVBAR) { in IsNeedHoverModeAction()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/window_scene/scene/
H A Dwindow_scene_layout_manager.cpp305 auto parentType = rootNode->GetWindowPatternType(); in TraverseTree() local
329 UpdateGeometry(node, rootNode, WindowSceneHelper::IsTransformScene(parentType)); in TraverseTree()
340 …ndowSceneHelper::IsSystemWindowScene(type) && WindowSceneHelper::IsSystemWindowScene(parentType)) { in TraverseTree()
/ohos5.0/drivers/hdf_core/framework/tools/hdi-gen/parser/
H A Dparser.cpp1132 AutoPtr<ASTStructType> parentType = ParseStructParentType(); in ParseStructDeclaration() local
1133 structType->SetParentType(parentType); in ParseStructDeclaration()
1179 AutoPtr<ASTStructType> parentType = dynamic_cast<ASTStructType *>(baseType.Get()); in ParseStructParentType() local
1185 return parentType; in ParseStructParentType()
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/parser/
H A Dparser.cpp1368 AutoPtr<ASTStructType> parentType = ParseStructParentType(); in ParseStructDeclaration() local
1369 structType->SetParentType(parentType); in ParseStructDeclaration()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Ddrag_event.cpp2193 …auto parentType = frameNode->GetTag() == V2::GRID_ITEM_ETS_TAG ? V2::GRID_ETS_TAG : V2::LIST_ETS_T… in FindItemParentNode() local
2196 while (uiNode->GetTag() != parentType) { in FindItemParentNode()