Home
last modified time | relevance | path

Searched refs:childElement (Results 1 – 7 of 7) sorted by relevance

/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/mpd_parser/
H A Ddash_mpd_parser.cpp125 while (childElement != nullptr) { in GetPeriodElement()
131 childElement = childElement->GetSiblingNext(); in GetPeriodElement()
297 childElement = childElement->GetSiblingNext(); in GetAdaptationSetElement()
465 childElement = childElement->GetSiblingNext(); in ParseSegmentBase()
522 childElement = childElement->GetSiblingNext(); in ParseSegmentList()
620 childElement = childElement->GetSiblingNext(); in ParseSegmentTemplate()
707 childElement = childElement->GetSiblingNext(); in GetRepresentationElement()
808 childElement = childElement->GetSiblingNext(); in ParseContentProtection()
898 childElement = childElement->GetSiblingNext(); in ParseSegmentTimeline()
924 childElement = childElement->GetSiblingNext(); in ParseSegmentTimeline()
[all …]
/ohos5.0/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/dash/include/mpd_parser/
H A Ddash_mpd_parser.h62 std::shared_ptr<XmlElement> &childElement);
100 std::shared_ptr<XmlElement> &childElement);
107 … std::shared_ptr<XmlElement> &childElement, DashElementList &dashElementList);
113 … std::shared_ptr<XmlElement> &childElement, DashElementList &dashElementList);
119 … std::shared_ptr<XmlElement> &childElement, DashElementList &dashElementList);
126 std::shared_ptr<XmlElement> &childElement);
130 std::shared_ptr<XmlElement> &childElement) const;
132 std::shared_ptr<XmlElement> &childElement);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dcard_transition_controller.cpp322 auto childElement = element->GetFirstChild(); in GetCardTransformElement() local
323 while (childElement) { in GetCardTransformElement()
324 auto composedElement = AceType::DynamicCast<ComposedElement>(childElement); in GetCardTransformElement()
328 auto transformElement = AceType::DynamicCast<TransformElement>(childElement); in GetCardTransformElement()
332 childElement = childElement->GetFirstChild(); in GetCardTransformElement()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/calendar/
H A Dcalendar_element.cpp67 auto childElement = UpdateChild(child, newComponent); in PerformBuild() local
68 auto element = childElement; in PerformBuild()
70 BuildCardCalendar(calendar, childElement); in PerformBuild()
71 element = childElement->GetChildren().back(); in PerformBuild()
89 RegisterChangeEndListener(calendar, childElement); in PerformBuild()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
H A Dinspector.cpp69 for (auto& childElement : children) { in GetInspectorChildren() local
70 if (AceType::InstanceOf<V2::InspectorComposedElement>(childElement)) { in GetInspectorChildren()
71 childrenList.emplace_back(childElement); in GetInspectorChildren()
73 GetInspectorChildren(childElement, childrenList); in GetInspectorChildren()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tween/
H A Dtween_element.cpp854 auto childElement = AceType::DynamicCast<RenderElement>(child); in SetOpacity() local
855 if (!childElement) { in SetOpacity()
859 …const auto& displayRenderNode = AceType::DynamicCast<RenderDisplay>(childElement->GetRenderNode()); in SetOpacity()
892 auto childElement = AceType::DynamicCast<RenderElement>(child); in SetWrapHidden() local
893 if (!childElement) { in SetWrapHidden()
897 …const auto& displayRenderNode = AceType::DynamicCast<RenderDisplay>(childElement->GetRenderNode()); in SetWrapHidden()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/
H A Dpipeline_context.cpp2510 for (const auto& childElement : children) { in RequestFocus() local
2511 auto focusNode = AceType::DynamicCast<FocusNode>(childElement); in RequestFocus()
2519 if (RequestFocus(childElement)) { in RequestFocus()