/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/calendar/ |
H A D | focusable_grid.cpp | 25 constexpr bool FORWARD = false; variable 35 { HORIZONTAL, { { FORWARD, KeyDirection::RIGHT }, { REVERSE, KeyDirection::LEFT } } }, 36 { VERTICAL, { { FORWARD, KeyDirection::DOWN }, { REVERSE, KeyDirection::UP } } }
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-universal-attributes-on-child-touch-test.md | 67 …id是可选的;当strategy是TouchTestStrategy.FORWARD_COMPETITION或TouchTestStrategy.FORWARD时,id是必需的(如果没有返回id,… 83 | FORWARD | 应用指定分发事件到某个子节点,系统不再处理分发事件到其他兄弟节点。 | 161 ### 示例2(设置事件派发策略为FORWARD) 224 return { id: info.id, strategy: TouchTestStrategy.FORWARD }
|
H A D | ts-text-common.md | 318 | FORWARD | 1 | 向前删除。 |
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid/ |
H A D | render_grid.cpp | 35 constexpr bool FORWARD = false; variable 47 { HORIZONTAL, { { FORWARD, KeyDirection::DOWN }, { REVERSE, KeyDirection::UP } } }, 48 { VERTICAL, { { FORWARD, KeyDirection::RIGHT }, { REVERSE, KeyDirection::LEFT } } } 53 { HORIZONTAL, { { FORWARD, KeyDirection::RIGHT }, { REVERSE, KeyDirection::LEFT } } }, 54 { VERTICAL, { { FORWARD, KeyDirection::DOWN }, { REVERSE, KeyDirection::UP } } } 59 { HORIZONTAL, { { FORWARD, KeyDirection::UP }, { REVERSE, KeyDirection::DOWN } } }, 60 { VERTICAL, { { FORWARD, KeyDirection::RIGHT }, { REVERSE, KeyDirection::LEFT } } } 65 { HORIZONTAL, { { FORWARD, KeyDirection::RIGHT }, { REVERSE, KeyDirection::LEFT } } }, 66 { VERTICAL, { { FORWARD, KeyDirection::UP }, { REVERSE, KeyDirection::DOWN } } }
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/ecs/components/ |
H A D | camera_component.h | 113 FORWARD = 1, enumerator 130 …Y(RenderingPipeline, renderingPipeline, "Rendering Pipeline", 0, VALUE(RenderingPipeline::FORWARD))
|
/ohos5.0/foundation/multimodalinput/input/frameworks/napi/mouse_event/src/ |
H A D | js_mouse_event.cpp | 46 FORWARD = 5, enumerator 126 … DECLARE_NAPI_STATIC_PROPERTY("FORWARD", GetNapiInt32(env, static_cast<int32_t>(Button::FORWARD))), in Export()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-input-kit/ |
H A D | js-apis-mouseevent.md | 46 | FORWARD | 5 | 鼠标前进键 |
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-universal-attributes-on-child-touch-test.md | 67 … set to **TouchTestStrategy.FORWARD_COMPETITION** or **TouchTestStrategy.FORWARD**, **id** is mand… 83 | FORWARD | The specified event is forwarded to a particular child node, and the system no longer d… 221 return { id: info.id, strategy: TouchTestStrategy.FORWARD }
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/api/3d/render/ |
H A D | render_data_defines_3d.h | 388 FORWARD = 1, enumerator 535 RenderPipelineType renderPipelineType { RenderPipelineType::FORWARD };
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/render/node/ |
H A D | render_node_default_camera_controller.h | 97 RenderCamera::RenderPipelineType pipelineType { RenderCamera::RenderPipelineType::FORWARD };
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/components/ |
H A D | camera_component_manager.cpp | 52 DECL_ENUM(CameraComponent::RenderingPipeline, FORWARD, "Forward")
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_pattern.h | 95 enum class MoveDirection { FORWARD, BACKWARD }; enumerator 116 {{ HandleType::FIRST, SelectorAdjustPolicy::EXCLUDE }, MoveDirection::FORWARD }, 117 {{ HandleType::SECOND, SelectorAdjustPolicy::INCLUDE }, MoveDirection::FORWARD }, 1195 …RichEditorDeleteDirection direction = RichEditorDeleteDirection::FORWARD, bool isResetSelection = … 1381 MoveDirection moveDirection_ = MoveDirection::FORWARD;
|
H A D | rich_editor_event_hub.h | 199 enum class RichEditorDeleteDirection { BACKWARD = 0, FORWARD }; enumerator
|
H A D | rich_editor_pattern.cpp | 5303 moveDirection_ = MoveDirection::FORWARD; in AfterInsertValue() 5582 info.SetRichEditorDeleteDirection(RichEditorDeleteDirection::FORWARD); in DeleteForwardOperation() 6555 case MoveDirection::FORWARD: in OnBackPressed() 9253 info.SetRichEditorDeleteDirection(RichEditorDeleteDirection::FORWARD); in OnBackPressed() 9897 RichEditorDeleteDirection::FORWARD); in OnBackPressed() 9921 RichEditorDeleteDirection::FORWARD); in OnBackPressed() 9926 RichEditorDeleteDirection::FORWARD); in OnBackPressed() 9931 RichEditorDeleteDirection::FORWARD); in OnBackPressed() 9958 GetDeletedSpan(changeValue, innerPosition, length, RichEditorDeleteDirection::FORWARD); in OnBackPressed() 9964 GetDeletedSpan(changeValue, innerPosition, length, RichEditorDeleteDirection::FORWARD); in OnBackPressed() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/ |
H A D | text_input_update_test.cpp | 1146 EXPECT_EQ(direction, TextDeleteDirection::FORWARD); 1149 EXPECT_EQ(didDirection, TextDeleteDirection::FORWARD);
|
/ohos5.0/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/ |
H A D | accessibility_def.h | 210 FORWARD = 0x00000010, enumerator
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/ |
H A D | text_field_event_hub.h | 29 enum class TextDeleteDirection { BACKWARD = 0, FORWARD = 1 }; enumerator
|
H A D | text_field_pattern.cpp | 5400 auto isDelete = BeforeIMEDeleteValue(value, TextDeleteDirection::FORWARD, caretIndex); in DeleteForwardOperation() 5407 AfterIMEDeleteValue(value, TextDeleteDirection::FORWARD); in DeleteForwardOperation() 5419 auto isDelete = BeforeIMEDeleteValue(value, TextDeleteDirection::FORWARD, start); in DeleteForward() 5423 AfterIMEDeleteValue(value, TextDeleteDirection::FORWARD); in DeleteForward() 5431 auto isDelete = BeforeIMEDeleteValue("", TextDeleteDirection::FORWARD, contentLength); in DeleteForward() 5433 AfterIMEDeleteValue("", TextDeleteDirection::FORWARD); in DeleteForward() 8784 auto isDelete = BeforeIMEDeleteValue(value, TextDeleteDirection::FORWARD, start); in OnBackPressed() 8789 AfterIMEDeleteValue(value, TextDeleteDirection::FORWARD); in OnBackPressed() 8909 BeforeIMEDeleteValue(value, TextDeleteDirection::FORWARD, start); in OnBackPressed() 8912 AfterIMEDeleteValue(value, TextDeleteDirection::FORWARD); in OnBackPressed()
|
/ohos5.0/docs/zh-cn/design/ |
H A D | OpenHarmony-API-quality.md | 332 FORWARD,
|
/ohos5.0/docs/en/application-dev/reference/apis-input-kit/ |
H A D | js-apis-mouseevent.md | 46 | FORWARD | 5 | Forward button on the mouse.|
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/ecs/systems/ |
H A D | render_system.h | 294 … RenderCamera::RenderPipelineType renderPipelineType { RenderCamera::RenderPipelineType::FORWARD };
|
H A D | render_system.cpp | 261 RenderCamera::RenderPipelineType pipelineType(RenderCamera::RenderPipelineType::FORWARD); in GetRenderCameraRenderPipelineTypeFromComponent() 264 } else if (cameraRenderPipelineType == CameraComponent::RenderingPipeline::FORWARD) { in GetRenderCameraRenderPipelineTypeFromComponent() 265 pipelineType = RenderCamera::RenderPipelineType::FORWARD; in GetRenderCameraRenderPipelineTypeFromComponent() 391 renderCamera.renderPipelineType = RenderCamera::RenderPipelineType::FORWARD; in FillRenderCameraBaseFromCameraComponent()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_layout_algorithm.h | 75 FORWARD, enumerator
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/ |
H A D | render_grid_layout.cpp | 30 constexpr bool FORWARD = false; variable 62 { { HORIZONTAL, { { FORWARD, KeyDirection::RIGHT }, { REVERSE, KeyDirection::LEFT } } }, 63 { VERTICAL, { { FORWARD, KeyDirection::DOWN }, { REVERSE, KeyDirection::UP } } } } }, 65 { { HORIZONTAL, { { FORWARD, KeyDirection::LEFT }, { REVERSE, KeyDirection::RIGHT } } }, 66 { VERTICAL, { { FORWARD, KeyDirection::DOWN }, { REVERSE, KeyDirection::UP } } } } }
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/ |
H A D | gesture_event_hub.h | 97 FORWARD enumerator
|