Home
last modified time | relevance | path

Searched refs:pipeline (Results 1 - 25 of 625) sorted by relevance

12345678910>>...25

/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/
H A Ddrag_drop_proxy.cpp24 auto pipeline = PipelineContext::GetCurrentContext(); in OnTextDragStart() local
25 CHECK_NULL_VOID(pipeline); in OnTextDragStart()
26 auto manager = pipeline->GetDragDropManager(); in OnTextDragStart()
34 auto pipeline = PipelineContext::GetCurrentContext(); in OnDragStart() local
35 CHECK_NULL_VOID(pipeline); in OnDragStart()
36 auto manager = pipeline->GetDragDropManager(); in OnDragStart()
51 auto pipeline = PipelineContext::GetCurrentContext(); in OnDragMove() local
52 CHECK_NULL_VOID(pipeline); in OnDragMove()
53 auto manager = pipeline->GetDragDropManager(); in OnDragMove()
64 auto pipeline in OnDragEnd() local
81 auto pipeline = PipelineContext::GetCurrentContext(); onDragCancel() local
91 auto pipeline = PipelineContext::GetCurrentContext(); OnItemDragStart() local
103 auto pipeline = PipelineContext::GetCurrentContext(); OnItemDragMove() local
115 auto pipeline = PipelineContext::GetCurrentContext(); OnItemDragEnd() local
127 auto pipeline = PipelineContext::GetCurrentContext(); onItemDragCancel() local
138 auto pipeline = PipelineContext::GetCurrentContext(); DestroyDragWindow() local
[all...]
/foundation/arkui/ace_engine/frameworks/base/geometry/
H A Ddimension.cpp18 #include "core/pipeline/pipeline_base.h"
93 auto pipeline = PipelineBase::GetCurrentContextSafely(); in ConvertToVp() local
94 CHECK_NULL_RETURN(pipeline, 0.0); in ConvertToVp()
96 return value_ / pipeline->GetDipScale(); in ConvertToVp()
99 return value_ / pipeline->GetDipScale(); in ConvertToVp()
105 return value_ * pipeline->GetLogicScale() / pipeline->GetDipScale(); in ConvertToVp()
119 auto pipeline = PipelineBase::GetCurrentContextSafely(); in ConvertToPx() local
120 CHECK_NULL_RETURN(pipeline, 0.0); in ConvertToPx()
122 return value_ * pipeline in ConvertToPx()
138 auto pipeline = PipelineBase::GetCurrentContextSafely(); ConvertToFp() local
178 auto pipeline = PipelineBase::GetCurrentContextSafely(); ConvertToPxDistribute() local
193 auto pipeline = PipelineBase::GetCurrentContextSafely(); ConvertToPxByCustomFontScale() local
201 auto pipeline = PipelineBase::GetCurrentContextSafely(); ConvertToPxByAppFontScale() local
210 auto pipeline = PipelineBase::GetCurrentContextSafely(); ConvertToVpByAppFontScale() local
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/time_picker/
H A Dtime_picker_test_dialog_view.cpp29 #include "test/mock/core/pipeline/mock_pipeline_context.h"
180 * @tc.steps: step1. get real pipeline and theme, set fontscale. in HWTEST_F()
183 auto pipeline = PipelineContext::GetCurrentContext(); in HWTEST_F() local
184 ASSERT_TRUE(pipeline); in HWTEST_F()
185 auto pickerTheme = pipeline->GetTheme<PickerTheme>(); in HWTEST_F()
187 pipeline->SetFontScale(0); in HWTEST_F()
198 pipeline->SetFontScale(10); in HWTEST_F()
199 pipeline->rootHeight_ = 0; in HWTEST_F()
202 EXPECT_EQ(ret, Dimension(FONT_VALUE_NOMARL / pipeline->GetFontScale())); in HWTEST_F()
207 pipeline in HWTEST_F()
238 auto pipeline = PipelineContext::GetCurrentContext(); HWTEST_F() local
276 auto pipeline = PipelineContext::GetCurrentContext(); HWTEST_F() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dlinear_indicator_modifier.cpp23 #include "core/pipeline/base/element_register.h"
39 auto pipeline = frameNode->GetContextWithCheck(); in ResetLinearIndicatorIndicatorStyleSpace() local
40 CHECK_NULL_VOID(pipeline); in ResetLinearIndicatorIndicatorStyleSpace()
41 auto linearIndicatorTheme = pipeline->GetTheme<LinearIndicatorTheme>(); in ResetLinearIndicatorIndicatorStyleSpace()
58 auto pipeline = frameNode->GetContextWithCheck(); in ResetLinearIndicatorIndicatorStyleStrokeWidth() local
59 CHECK_NULL_VOID(pipeline); in ResetLinearIndicatorIndicatorStyleStrokeWidth()
60 auto linearIndicatorTheme = pipeline->GetTheme<LinearIndicatorTheme>(); in ResetLinearIndicatorIndicatorStyleStrokeWidth()
77 auto pipeline = frameNode->GetContextWithCheck(); in ResetLinearIndicatorIndicatorStyleStrokeRadius() local
78 CHECK_NULL_VOID(pipeline); in ResetLinearIndicatorIndicatorStyleStrokeRadius()
79 auto linearIndicatorTheme = pipeline in ResetLinearIndicatorIndicatorStyleStrokeRadius()
95 auto pipeline = frameNode->GetContextWithCheck(); ResetLinearIndicatorIndicatorStyleTrackBackgroundColor() local
114 auto pipeline = frameNode->GetContextWithCheck(); ResetLinearIndicatorIndicatorStyleTrackColor() local
133 auto pipeline = frameNode->GetContextWithCheck(); ResetLinearIndicatorIndicatorLoop() local
[all...]
H A Dalphabet_indexer_modifier.cpp52 auto pipeline = PipelineBase::GetCurrentContext(); in ResetPopupItemFont() local
53 CHECK_NULL_VOID(pipeline); in ResetPopupItemFont()
54 auto indexerTheme = pipeline->GetTheme<IndexerTheme>(); in ResetPopupItemFont()
84 auto pipeline = PipelineBase::GetCurrentContext(); in ResetSelectedFont() local
85 CHECK_NULL_VOID(pipeline); in ResetSelectedFont()
86 auto indexerTheme = pipeline->GetTheme<IndexerTheme>(); in ResetSelectedFont()
118 auto pipeline = PipelineBase::GetCurrentContext(); in ResetPopupFont() local
119 CHECK_NULL_VOID(pipeline); in ResetPopupFont()
120 auto indexerTheme = pipeline->GetTheme<IndexerTheme>(); in ResetPopupFont()
152 auto pipeline in ResetAlphabetIndexerFont() local
175 auto pipeline = PipelineBase::GetCurrentContext(); ResetPopupItemBackgroundColor() local
196 auto pipeline = PipelineBase::GetCurrentContext(); ResetAlphabetIndexerColor() local
215 auto pipeline = PipelineBase::GetCurrentContext(); ResetPopupColor() local
234 auto pipeline = PipelineBase::GetCurrentContext(); ResetAlphabetIndexerSelectedColor() local
253 auto pipeline = PipelineBase::GetCurrentContext(); ResetPopupBackground() local
272 auto pipeline = PipelineBase::GetCurrentContext(); ResetSelectedBackgroundColor() local
291 auto pipeline = PipelineBase::GetCurrentContext(); ResetPopupUnselectedColor() local
365 auto pipeline = PipelineBase::GetCurrentContext(); ResetPopupSelectedColor() local
478 auto pipeline = PipelineBase::GetCurrentContext(); ResetPopupTitleBackground() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid_row/
H A Dgrid_row_layout_pattern.cpp24 auto pipeline = PipelineContext::GetCurrentContext(); in OnAttachToFrameNode() local
25 CHECK_NULL_VOID(pipeline); in OnAttachToFrameNode()
26 if (pipeline && !callbackId_.has_value()) { in OnAttachToFrameNode()
27 callbackId_ = pipeline->RegisterSurfaceChangedCallback( in OnAttachToFrameNode()
40 auto pipeline = PipelineContext::GetCurrentContext(); in OnDetachFromFrameNode() local
41 CHECK_NULL_VOID(pipeline); in OnDetachFromFrameNode()
43 pipeline->UnregisterSurfaceChangedCallback(callbackId_.value_or(-1)); in OnDetachFromFrameNode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/form_link/
H A Dform_link_pattern.cpp27 auto pipeline = PipelineContext::GetCurrentContext(); in OnAttachToFrameNode() local
28 CHECK_NULL_VOID(pipeline); in OnAttachToFrameNode()
29 pipeline->AddOnAreaChangeNode(GetHost()->GetId()); in OnAttachToFrameNode()
41 auto pipeline = PipelineContext::GetCurrentContext(); in OnAreaChangedInner() local
42 CHECK_NULL_VOID(pipeline); in OnAreaChangedInner()
43 pipeline->AddFormLinkInfo(host->GetId(), formLinkInfo_.ToString()); in OnAreaChangedInner()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_keyboard_avoid.cpp29 auto pipeline = PipelineBase::GetCurrentContext(); in SetKeyboardAvoidMode() local
30 CHECK_NULL_VOID(pipeline); in SetKeyboardAvoidMode()
35 pipeline->SetEnableKeyBoardAvoidMode(KeyBoardAvoidMode::OFFSET); in SetKeyboardAvoidMode()
42 pipeline->SetEnableKeyBoardAvoidMode(KEYBOARD_AVOID_MODES[index]); in SetKeyboardAvoidMode()
47 auto pipeline = PipelineBase::GetCurrentContext(); in GetKeyboardAvoidMode() local
48 CHECK_NULL_VOID(pipeline); in GetKeyboardAvoidMode()
49 auto mode = pipeline->GetEnableKeyBoardAvoidMode(); in GetKeyboardAvoidMode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/
H A Ddatepicker_column_layout_algorithm.cpp46 auto pipeline = PipelineBase::GetCurrentContext(); in Measure() local
47 CHECK_NULL_VOID(pipeline); in Measure()
48 auto pickerTheme = pipeline->GetTheme<PickerTheme>(); in Measure()
50 auto dialogTheme = pipeline->GetTheme<DialogTheme>(); in Measure()
52 auto buttonTheme = pipeline->GetTheme<ButtonTheme>(); in Measure()
157 auto pipeline = PipelineBase::GetCurrentContext(); in ChangeTextStyle() local
158 CHECK_NULL_VOID(pipeline); in ChangeTextStyle()
159 auto pickerTheme = pipeline->GetTheme<PickerTheme>(); in ChangeTextStyle()
178 auto pipeline = PipelineContext::GetCurrentContext(); in Layout() local
179 CHECK_NULL_VOID(pipeline); in Layout()
213 auto pipeline = PipelineContext::GetCurrentContextSafelyWithCheck(); NeedAdaptForAging() local
226 auto pipeline = PipelineContext::GetCurrentContextSafelyWithCheck(); AdjustFontSizeScale() local
243 auto pipeline = PipelineContext::GetCurrentContextSafelyWithCheck(); ReCalcItemHeightScale() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/overlay/
H A Doverlay_container_pattern.cpp24 auto pipeline = PipelineContext::GetCurrentContext(); in BeforeCreateLayoutWrapper() local
25 CHECK_NULL_VOID(pipeline); in BeforeCreateLayoutWrapper()
27 auto inset = pipeline->GetSafeArea(); in BeforeCreateLayoutWrapper()
29 if (inset.bottom_.IsValid() && pipeline->GetWindowModal() == WindowModal::CONTAINER_MODAL && in BeforeCreateLayoutWrapper()
30 pipeline->GetWindowManager()->GetWindowMode() == WindowMode::WINDOW_MODE_FLOATING) { in BeforeCreateLayoutWrapper()
31 auto titleHeight = pipeline->GetCustomTitleHeight().ConvertToPx(); in BeforeCreateLayoutWrapper()
H A Dkeyboard_base_pattern.cpp87 auto pipeline = OHOS::Ace::NG::PipelineContext::GetCurrentContext(); in OnAreaChangedInner() local
88 CHECK_NULL_VOID(pipeline); in OnAreaChangedInner()
92 pipeline->OnVirtualKeyboardAreaChange(keyboardRect, nullptr, safeHeight_, supportAvoidance_, true); in OnAreaChangedInner()
103 auto pipeline = OHOS::Ace::NG::PipelineContext::GetCurrentContext(); in SetKeyboardAreaChange() local
104 CHECK_NULL_VOID(pipeline); in SetKeyboardAreaChange()
108 pipeline->OnVirtualKeyboardAreaChange(keyboardRect, nullptr, safeHeight_, supportAvoidance_, true); in SetKeyboardAreaChange()
137 auto pipeline = PipelineContext::GetCurrentContext(); in OnDetachFromFrameNode() local
138 CHECK_NULL_VOID(pipeline); in OnDetachFromFrameNode()
139 pipeline->RemoveOnAreaChangeNode(node->GetId()); in OnDetachFromFrameNode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/stepper/
H A Dstepper_layout_algorithm.cpp52 auto pipeline = PipelineBase::GetCurrentContext(); in Measure() local
53 CHECK_NULL_VOID(pipeline); in Measure()
59 if ((pipeline->GetFontScale() == LEVEL_ONE || pipeline->GetFontScale() == LEVEL_TWO || in Measure()
60 pipeline->GetFontScale() == LEVEL_THREE)) { in Measure()
76 auto pipeline = PipelineBase::GetCurrentContext(); in MeasureSwiper() local
77 CHECK_NULL_VOID(pipeline); in MeasureSwiper()
78 auto stepperTheme = pipeline->GetTheme<StepperTheme>(); in MeasureSwiper()
108 auto pipeline = PipelineBase::GetCurrentContext(); in MeasureLeftButton() local
109 CHECK_NULL_VOID(pipeline); in MeasureLeftButton()
149 auto pipeline = PipelineBase::GetCurrentContext(); MeasureRightButton() local
204 auto pipeline = PipelineBase::GetCurrentContext(); MeasureText() local
222 auto pipeline = PipelineBase::GetCurrentContext(); Layout() local
274 auto pipeline = PipelineBase::GetCurrentContext(); SuitAgeLayoutButton() local
349 auto pipeline = PipelineBase::GetCurrentContext(); LayoutLeftButton() local
385 auto pipeline = PipelineBase::GetCurrentContext(); LayoutRightButton() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/select_overlay/
H A Dselect_overlay_proxy.cpp25 auto pipeline = PipelineContext::GetCurrentContext(); in GetSelectOverlayPattern() local
26 CHECK_NULL_RETURN(pipeline, nullptr); in GetSelectOverlayPattern()
27 auto manager = pipeline->GetSelectOverlayManager(); in GetSelectOverlayPattern()
94 auto pipeline = PipelineContext::GetCurrentContext(); in IsClosed() local
95 CHECK_NULL_RETURN(pipeline, true); in IsClosed()
96 auto manager = pipeline->GetSelectOverlayManager(); in IsClosed()
103 auto pipeline = PipelineContext::GetCurrentContext(); in Close() local
104 CHECK_NULL_VOID(pipeline); in Close()
105 auto manager = pipeline->GetSelectOverlayManager(); in Close()
169 auto pipeline in GetSelectOverlayMangerInfo() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/hyperlink/
H A Dhyperlink_pattern.cpp25 auto pipeline = PipelineContext::GetCurrentContextSafely(); in OnAttachToFrameNode() local
26 CHECK_NULL_VOID(pipeline); in OnAttachToFrameNode()
29 auto fontManager = pipeline->GetFontManager(); in OnAttachToFrameNode()
37 auto pipeline = PipelineContext::GetCurrentContextSafely(); in OnDetachFromFrameNode() local
38 CHECK_NULL_VOID(pipeline); in OnDetachFromFrameNode()
40 pipeline->RemoveFontNodeNG(frameNode); in OnDetachFromFrameNode()
100 auto pipeline = PipelineBase::GetCurrentContext(); in OnModifyDone() local
101 CHECK_NULL_VOID(pipeline); in OnModifyDone()
102 auto theme = pipeline->GetTheme<HyperlinkTheme>(); in OnModifyDone()
129 auto pipeline in LinkToAddress()
191 auto pipeline = PipelineContext::GetCurrentContext(); OnTouchEvent() local
271 auto pipeline = PipelineContext::GetCurrentContext(); OnHoverEvent() local
302 auto pipeline = PipelineContext::GetCurrentContext(); OnMouseEvent() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/
H A Dcalc_length.cpp19 #include "core/pipeline/pipeline_base.h"
26 auto pipeline = PipelineBase::GetCurrentContextSafely(); in CreateScaleProperty() local
27 CHECK_NULL_RETURN(pipeline, scaleProperty); in CreateScaleProperty()
28 scaleProperty.fpScale = pipeline->GetFontScale(); in CreateScaleProperty()
29 scaleProperty.vpScale = static_cast<float>(pipeline->GetDipScale()); in CreateScaleProperty()
30 scaleProperty.lpxScale = static_cast<float>(pipeline->GetLogicScale()); in CreateScaleProperty()
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Drosen_animation_utils.cpp101 auto pipeline = PipelineBase::GetCurrentContext(); in CloseImplicitAnimation() local
102 if (pipeline && !pipeline->GetOnShow()) { in CloseImplicitAnimation()
103 pipeline->FlushMessages(); in CloseImplicitAnimation()
126 auto pipeline = PipelineBase::GetCurrentContext(); in Animate() local
127 if (pipeline && !pipeline->GetOnShow()) { in Animate()
128 pipeline->FlushMessages(); in Animate()
171 auto pipeline = PipelineBase::GetCurrentContext(); in StartAnimation() local
172 if (pipeline in StartAnimation()
207 auto pipeline = PipelineBase::GetCurrentContext(); PauseAnimation() local
219 auto pipeline = PipelineBase::GetCurrentContext(); ResumeAnimation() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/stage/
H A Dcontent_root_pattern.cpp35 auto pipeline = PipelineContext::GetCurrentContext(); in CreateSafeAreaInsets() local
36 CHECK_NULL_RETURN(pipeline, {}); in CreateSafeAreaInsets()
38 auto manager = pipeline->GetSafeAreaManager(); in CreateSafeAreaInsets()
56 if (inset.bottom_.IsValid() && pipeline->GetWindowModal() == WindowModal::CONTAINER_MODAL && in CreateSafeAreaInsets()
57 pipeline->GetWindowManager()->GetWindowMode() == WindowMode::WINDOW_MODE_FLOATING) { in CreateSafeAreaInsets()
58 auto titleHeight = pipeline->GetCustomTitleHeight().ConvertToPx(); in CreateSafeAreaInsets()
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/focus/
H A Dfocus_view.cpp41 auto pipeline = node->GetContextRefPtr(); in FocusViewShow() local
42 CHECK_NULL_VOID(pipeline); in FocusViewShow()
43 auto focusManager = pipeline->GetFocusManager(); in FocusViewShow()
46 pipeline->RequestFrame(); in FocusViewShow()
54 auto pipeline = node->GetContextRefPtr(); in FocusViewHide() local
55 CHECK_NULL_VOID(pipeline); in FocusViewHide()
56 auto focusManager = pipeline->GetFocusManager(); in FocusViewHide()
59 pipeline->RequestFrame(); in FocusViewHide()
72 auto pipeline = node->GetContextRefPtr(); in FocusViewClose() local
73 CHECK_NULL_VOID(pipeline); in FocusViewClose()
128 auto pipeline = PipelineContext::GetCurrentContextSafely(); GetCurrentFocusView() local
188 auto pipeline = node->GetContextRefPtr(); GetViewRootScope() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/time_picker/
H A Dtimepicker_column_layout_algorithm.cpp45 auto pipeline = PipelineContext::GetCurrentContext(); in Measure() local
46 CHECK_NULL_VOID(pipeline); in Measure()
47 auto pickerTheme = pipeline->GetTheme<PickerTheme>(); in Measure()
103 auto pipeline = pickerNode->GetContext(); in GetPickerMaxHeight() local
104 CHECK_NULL_RETURN(pipeline, pickerMaxHeight); in GetPickerMaxHeight()
105 auto pickerTheme = pipeline->GetTheme<PickerTheme>(); in GetPickerMaxHeight()
107 auto dialogTheme = pipeline->GetTheme<DialogTheme>(); in GetPickerMaxHeight()
109 auto buttonTheme = pipeline->GetTheme<ButtonTheme>(); in GetPickerMaxHeight()
160 auto pipeline = PipelineContext::GetCurrentContext(); in ChangeAmPmTextStyle() local
161 CHECK_NULL_VOID(pipeline); in ChangeAmPmTextStyle()
180 auto pipeline = PipelineContext::GetCurrentContext(); Layout() local
215 auto pipeline = PipelineContext::GetCurrentContextSafelyWithCheck(); NeedAdaptForAging() local
228 auto pipeline = PipelineContext::GetCurrentContextSafelyWithCheck(); AdjustFontSizeScale() local
244 auto pipeline = PipelineContext::GetCurrentContextSafelyWithCheck(); ReCalcItemHeightScale() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/root/
H A Droot_pattern.h81 auto pipeline = PipelineContext::GetCurrentContext(); variable
82 CHECK_NULL_RETURN(pipeline, false);
86 if (!pipeline->GetOverlayNodePositions().empty()) {
87 pipeline->TriggerOverlayNodePositionsUpdateCallback({});
89 pipeline->SetOverlayNodePositions({});
106 auto oldPositions = pipeline->GetOverlayNodePositions();
110 pipeline->TriggerOverlayNodePositionsUpdateCallback(positions);
111 pipeline->SetOverlayNodePositions(positions);
/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/
H A Dfrontend_delegate.cpp129 auto pipeline = NG::PipelineContext::GetCurrentContext(); in RequestFocus() local
130 CHECK_NULL_RETURN(pipeline, false); in RequestFocus()
131 return pipeline->RequestFocus(value, isSyncRequest); in RequestFocus()
137 auto pipeline = NG::PipelineContext::GetCurrentContext(); in SetRequestFocusCallback() local
138 CHECK_NULL_VOID(pipeline); in SetRequestFocusCallback()
139 auto focusManager = pipeline->GetOrCreateFocusManager(); in SetRequestFocusCallback()
146 auto pipeline = NG::PipelineContext::GetCurrentContext(); in ResetRequestFocusCallback() local
147 CHECK_NULL_VOID(pipeline); in ResetRequestFocusCallback()
148 auto focusManager = pipeline->GetOrCreateFocusManager(); in ResetRequestFocusCallback()
155 auto pipeline in Activate() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar/
H A Dcalendar_layout_algorithm.cpp58 auto pipeline = frameNode->GetContext(); in MeasureContent() local
59 CHECK_NULL_RETURN(pipeline, std::nullopt); in MeasureContent()
60 maxWidth_ = pipeline->GetRootWidth(); in MeasureContent()
61 maxHeight_ = pipeline->GetRootHeight(); in MeasureContent()
62 return SizeF(static_cast<float>(pipeline->GetRootWidth()), static_cast<float>(pipeline->GetRootHeight())); in MeasureContent()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/container_modal/
H A Dcontainer_modal_accessibility_property.cpp32 auto pipeline = PipelineContext::GetCurrentContext(); in GetText() local
33 CHECK_NULL_RETURN(pipeline, ""); in GetText()
34 auto themeManager = pipeline->GetThemeManager(); in GetText()
38 auto appLabelId = pipeline->GetWindowManager()->GetAppLabelId(); in GetText()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/menu_item_group/
H A Dmenu_item_group_view.cpp26 auto pipeline = PipelineBase::GetCurrentContext(); in UpdateRowPadding() local
27 CHECK_NULL_VOID(pipeline); in UpdateRowPadding()
28 auto theme = pipeline->GetTheme<SelectTheme>(); in UpdateRowPadding()
78 auto pipeline = PipelineBase::GetCurrentContext(); in SetHeader() local
79 CHECK_NULL_VOID(pipeline); in SetHeader()
80 auto theme = pipeline->GetTheme<SelectTheme>(); in SetHeader()
124 auto pipeline = PipelineBase::GetCurrentContext(); in SetFooter() local
125 CHECK_NULL_VOID(pipeline); in SetFooter()
126 auto theme = pipeline->GetTheme<SelectTheme>(); in SetFooter()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/app_bar/
H A Dapp_bar_view.cpp34 auto pipeline = PipelineContext::GetCurrentContext(); in GetAppBarTheme() local
35 CHECK_NULL_RETURN(pipeline, nullptr); in GetAppBarTheme()
36 return pipeline->GetTheme<AppBarTheme>(); in GetAppBarTheme()
233 auto pipeline = node->GetContext(); in BindMenuCallback()
234 CHECK_NULL_VOID(pipeline); in BindMenuCallback()
235 auto theme = pipeline->GetTheme<AppBarTheme>(); in BindMenuCallback()
240 pipeline->FireSharePanelCallback(theme->GetBundleName(), theme->GetAbilityName()); in BindMenuCallback()
255 auto pipeline = PipelineContext::GetCurrentContext(); in BindCloseCallback()
256 CHECK_NULL_VOID(pipeline); in BindCloseCallback()
262 auto windowManager = pipeline in BindCloseCallback()
276 auto pipeline = node->GetContext(); DestroyServicePanel() local
294 auto pipeline = PipelineContext::GetCurrentContext(); CreateServicePanel() local
343 auto pipeline = PipelineContext::GetCurrentContext(); GetAppBarRect() local
[all...]

Completed in 12 milliseconds

12345678910>>...25