Home
last modified time | relevance | path

Searched refs:node (Results 2076 - 2100 of 2348) sorted by relevance

1...<<81828384858687888990>>...94

/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_clock/
H A Dtext_clock_pattern.cpp804 auto node = BuildContentModifierNode(); in FireBuilder() local
805 if (contentModifierNode_ == node) { in FireBuilder()
809 contentModifierNode_ = node; in FireBuilder()
/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/
H A Dtext_field_controller_test.cpp193 * @tc.steps: Create Text filed node with default attrs in HWTEST_F()
580 * @tc.steps: Initialize text filed node in HWTEST_F()
611 * @tc.steps: Initialize text field node in HWTEST_F()
639 * @tc.steps: Initialize text field node in HWTEST_F()
666 * @tc.steps: Initialize text filed node in HWTEST_F()
686 * @tc.steps: Initialize text filed node in HWTEST_F()
706 * @tc.steps: Initialize textarea node. in HWTEST_F()
710 auto node = AceType::RawPtr(frameNode); in HWTEST_F() local
716 TextFieldModelNG::SetJSTextEditableController(node, jsController); in HWTEST_F()
717 auto getController = TextFieldModelNG::GetJSTextEditableController(node); in HWTEST_F()
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/waterflow/
H A Dwater_flow_segment_common_test.cpp814 auto node = AceType::DynamicCast<FrameNode>(child); in HWTEST_F() local
815 node->GetGeometryNode()->SetFrameSize({}); in HWTEST_F()
816 node->GetLayoutProperty()->UpdateUserDefinedIdealSize({ CalcLength(50.0f), CalcLength(50.0f) }); in HWTEST_F()
/foundation/communication/dsoftbus/core/common/dfx/hidumper_adapter/
H A Dsoftbus_hidumper_util.c701 const char *key = (const char *)it->node->key; in GenerateTransSuccessRateString()
708 TransStatsSuccessRateDetail *quantity = (TransStatsSuccessRateDetail *)it->node->value; in GenerateTransSuccessRateString()
742 if (it == NULL || it->node->value == NULL) { in FillTransSuccessRateDetail()
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/smp/
H A Dsmp_tool.c910 void *SMP_ListGetNodeData(const ListNode *node) in SMP_ListGetNodeData() argument
914 if (node != NULL) { in SMP_ListGetNodeData()
915 data = ListGetNodeData(node); in SMP_ListGetNodeData()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_richeditor.cpp588 auto onCut = [execCtx = info.GetExecutionContext(), func = std::move(jsTextFunc), node = targetNode]( in SetOnCut()
592 PipelineContext::SetCallBackNode(node); in SetOnCut()
604 auto onCopy = [execCtx = info.GetExecutionContext(), func = std::move(jsTextFunc), node = targetNode]( in SetOnCopy()
608 PipelineContext::SetCallBackNode(node); in SetOnCopy()
1033 auto onPaste = [execCtx = info.GetExecutionContext(), func = std::move(jsTextFunc), node = targetNode]( in SetOnPaste()
1037 PipelineContext::SetCallBackNode(node); in SetOnPaste()
1246 auto callback = [execCtx = info.GetExecutionContext(), func = std::move(jsTextFunc), node = targetNode]( in CreateJsRichEditorCommonEvent()
1250 PipelineContext::SetCallBackNode(node); in CreateJsRichEditorCommonEvent()
1475 node = AceType::WeakClaim(targetNode)](BaseEventInfo* info) { in ParseUserGesture()
1479 PipelineContext::SetCallBackNode(node); in ParseUserGesture()
[all...]
H A Djs_tab_content.cpp544 auto* node = nodeptr->GetLocalHandle()->ToNativePointer(vm)->Value(); in SetBuilderNode() local
545 auto* frameNode = reinterpret_cast<NG::FrameNode*>(node); in SetBuilderNode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/
H A Dswiper_pattern.cpp113 void SwiperPattern::OnDetachFromFrameNode(FrameNode* node) in OnDetachFromFrameNode() argument
120 pipeline->RemoveWindowStateChangedCallback(node->GetId()); in OnDetachFromFrameNode()
700 if (!item.second.node) { in IsFocusNodeInItemPosition()
703 auto focusHub = item.second.node->GetFirstFocusHubChild(); in IsFocusNodeInItemPosition()
3067 if ((animationItem.second.node && animationItem.second.finalOffset != offset) || in NeedStartNewAnimation()
3163 auto frameNode = item.second.node; in UpdateFinalTranslateForSwiperItem()
3179 auto frameNode = item.second.node; in UpdateTranslateForSwiperItem()
3353 : itemPositionInAnimation_.begin()->second.node
3354 ? itemPositionInAnimation_.begin()->second.node->GetRenderContext()->GetTranslateXYProperty()
3380 auto frameNode = iter->second.node;
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dui_node.h51 NORMAL_NODE = 0, // Indicates it is a normal node;
74 // atomic node is like button, image, custom node and so on.
75 // In ets UI compiler, the atomic node does not Add Pop function, only have Create function.
134 // of the node with given id and type
136 // boolean first - indication of node is found
137 // int32_t second - index of the node
192 // the corresponding LayoutWrapper tree node at this time like add self wrapper to wrapper tree.
249 // TODO: SetHostRootId step on create node.
315 // In the request to re-layout the scene, needs to obtain the changed state of the child node fo
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/list/
H A Dlist_element.cpp46 RefPtr<RenderNode> node = ComponentGroupElement::CreateRenderNode(); in CreateRenderNode() local
47 renderList_ = AceType::DynamicCast<RenderList>(node); in CreateRenderNode()
347 LOGW("no render node in this recycled element"); in BuildListComponent()
438 LOGW("Proxy node is null."); in ReleaseRecycledListItem()
442 // RemoveChild will reset render node in this element. in ReleaseRecycledListItem()
443 // Here we save and restore its render node for recycling. in ReleaseRecycledListItem()
455 // Hidden the release node for stop it's layout and paint. in ReleaseRecycledListItem()
/foundation/arkui/ace_engine/frameworks/core/components/wrap/
H A Drender_wrap.cpp614 void RenderWrap::PlaceItemAndLog(const RefPtr<RenderNode>& node, const Offset& position, const std::string& align) const in PlaceItemAndLog() argument
616 node->SetPosition(position); in PlaceItemAndLog()
/foundation/arkui/ace_engine/frameworks/core/components/dialog_tween/
H A Drender_dialog_tween.cpp617 // no new accessibility node is created with DialogTween in JS app in RemoveAccessibilityNode()
622 auto node = accessibilityManager->GetAccessibilityNodeById(customDialogId_); in RemoveAccessibilityNode() local
623 accessibilityManager->ClearNodeRectInfo(node, true); in RemoveAccessibilityNode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.h789 /* Manipulation on node-tree is forbidden in operation. */
876 void SetDefaultFocusNode(const WeakPtr<FocusHub>& node) in SetDefaultFocusNode() argument
881 focusCallbackEvents_->defaultFocusNode_ = node; in SetDefaultFocusNode()
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_toggle_bridge.cpp145 auto* node = nodeptr->ToNativePointer(vm)->Value(); in SetContentModifierBuilder()
146 auto* frameNode = reinterpret_cast<FrameNode*>(node); in SetContentModifierBuilder()
/foundation/arkui/ace_engine/frameworks/core/event/
H A Dtouch_event.cpp637 void TouchEventTarget::AttachFrameNode(const WeakPtr<NG::FrameNode>& node) in AttachFrameNode() argument
642 node_ = node; in AttachFrameNode()
/foundation/arkui/ace_engine/frameworks/core/pipeline/
H A Dpipeline_base.cpp95 void PipelineBase::SetCallBackNode(const WeakPtr<NG::FrameNode>& node) in SetCallBackNode() argument
99 pipelineContext->UpdateCurrentActiveNode(node); in SetCallBackNode()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/platform/ohos/
H A Drs_system_properties.cpp792 bool RSSystemProperties::FindNodeInTargetList(std::string node) in FindNodeInTargetList() argument
819 bool res = std::find(targetVec.begin(), targetVec.end(), node) != targetVec.end(); in FindNodeInTargetList()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/property/
H A Drs_properties_test2.cpp457 std::shared_ptr<RSRenderNode> node = std::make_shared<RSRenderNode>(1); in HWTEST_F() local
458 properties.backref_ = node; in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_base_render_engine.cpp387 void RSBaseRenderEngine::DrawDisplayNodeWithParams(RSPaintFilterCanvas& canvas, RSDisplayRenderNode& node, in DrawDisplayNodeWithParams() argument
393 auto drawable = node.GetRenderDrawable(); in DrawDisplayNodeWithParams()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/pipeline/
H A Drs_canvas_drawing_render_node_test.cpp32 explicit RSCanvasDrawingRenderNodeDrawableAdapterTest(std::shared_ptr<const RSRenderNode> node) in RSCanvasDrawingRenderNodeDrawableAdapterTest() argument
33 : RSRenderNodeDrawableAdapter(std::move(node)) in RSCanvasDrawingRenderNodeDrawableAdapterTest()
/foundation/distributeddatamgr/data_share/frameworks/js/napi/common/src/
H A Ddatashare_js_utils.cpp528 PredicateTemplateNode node(keyStr, valueStr); in UnwrapTemplatePredicates()
529 predicates.emplace_back(node); in UnwrapTemplatePredicates()
/foundation/window/window_manager/wmserver/test/unittest/
H A Davoid_area_controller_test.cpp554 sptr<WindowNode> node = nullptr; in HWTEST_F() local
555 avoidAreaController->UpdateAvoidAreaListener(node, true); in HWTEST_F()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar_picker/
H A Dcalendar_dialog_pattern.cpp1178 auto node = weak.Upgrade(); in HandleEntryLayoutChange()
1179 CHECK_NULL_VOID(node); in HandleEntryLayoutChange()
1182 node->dialogOffset_ = pattern->CalculateDialogOffset(); in HandleEntryLayoutChange()
1185 dialogLayoutProp->UpdateDialogOffset(DimensionOffset(node->dialogOffset_)); in HandleEntryLayoutChange()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/
H A Dspan_node.cpp183 void SpanNode::RequestTextFlushDirty(const RefPtr<UINode>& node) in RequestTextFlushDirty() argument
185 CHECK_NULL_VOID(node); in RequestTextFlushDirty()
186 auto parent = node->GetParent(); in RequestTextFlushDirty()
194 textNode->GetTag().c_str(), node->GetId()); in RequestTextFlushDirty()
/foundation/graphic/graphic_2d/rosen/modules/render_service/core/drawable/
H A Drs_display_render_node_drawable.cpp203 RSDisplayRenderNodeDrawable::RSDisplayRenderNodeDrawable(std::shared_ptr<const RSRenderNode>&& node) in RSDisplayRenderNodeDrawable() argument
204 : RSRenderNodeDrawable(std::move(node)), surfaceHandler_(std::make_shared<RSSurfaceHandler>(nodeId_)), in RSDisplayRenderNodeDrawable()
208 RSRenderNodeDrawable::Ptr RSDisplayRenderNodeDrawable::OnGenerate(std::shared_ptr<const RSRenderNode> node) in OnGenerate() argument
210 return new RSDisplayRenderNodeDrawable(std::move(node)); in OnGenerate()
453 RS_LOGD("CheckFilterCacheFullyCovered filter node drawable is nullptr, Name[%{public}s]," in CheckFilterCacheFullyCovered()
464 // 1.The filter node global alpha equals 1; in CheckFilterCacheFullyCovered()
465 // 2.There is no invalid filter cache node below, which should take snapshot; in CheckFilterCacheFullyCovered()
466 // 3.The filter node has no global corner; in CheckFilterCacheFullyCovered()
467 // 4.The node type is not EFFECT_NODE; in CheckFilterCacheFullyCovered()
577 RS_LOGD("RSDisplayRenderNodeDrawable::OnDraw node in OnDraw()
[all...]

Completed in 43 milliseconds

1...<<81828384858687888990>>...94