Home
last modified time | relevance | path

Searched refs:operator_ (Results 1 - 20 of 20) sorted by relevance

/foundation/barrierfree/accessibility/services/test/mock/
H A Dmock_accessibility_element_operator_impl.cpp40 : windowId_(windowId), operatorCallback_(callback), operator_(operation) in MockAccessibilityElementOperatorImpl()
51 if (operator_) { in SearchElementInfoByAccessibilityId()
52 operator_->SearchElementInfoByAccessibilityId(elementId, mRequestId, operatorCallback_, mode); in SearchElementInfoByAccessibilityId()
63 if (operator_) { in SearchElementInfosByText()
64 operator_->SearchElementInfosByText(elementId, text, mRequestId, operatorCallback_); in SearchElementInfosByText()
75 if (operator_) { in FindFocusedElementInfo()
76 operator_->FindFocusedElementInfo(elementId, focusType, mRequestId, operatorCallback_); in FindFocusedElementInfo()
87 if (operator_) { in FocusMoveSearch()
88 operator_->FocusMoveSearch(elementId, direction, mRequestId, operatorCallback_); in FocusMoveSearch()
100 if (operator_) { in ExecuteAction()
[all...]
H A Dmock_accessibility_element_operator_impl.h216 std::shared_ptr<AccessibilityElementOperator> operator_ = nullptr; member in OHOS::Accessibility::MockAccessibilityElementOperatorImpl
/foundation/barrierfree/accessibility/frameworks/asacfwk/src/
H A Daccessibility_element_operator_impl.cpp30 : windowId_(windowId), operatorCallback_(callback), operator_(operation) in AccessibilityElementOperatorImpl()
48 if (operator_) { in SearchElementInfoByAccessibilityId()
49 operator_->SearchElementInfoByAccessibilityId(elementId, mRequestId, operatorCallback_, mode); in SearchElementInfoByAccessibilityId()
61 if (operator_) { in SearchElementInfosByText()
62 operator_->SearchElementInfosByText(elementId, text, mRequestId, operatorCallback_); in SearchElementInfosByText()
74 if (operator_) { in FindFocusedElementInfo()
75 operator_->FindFocusedElementInfo(elementId, focusType, mRequestId, operatorCallback_); in FindFocusedElementInfo()
87 if (operator_) { in FocusMoveSearch()
88 operator_->FocusMoveSearch(elementId, direction, mRequestId, operatorCallback_); in FocusMoveSearch()
101 if (operator_) { in ExecuteAction()
[all...]
/foundation/distributedhardware/distributed_camera/services/channel/test/unittest/common/channel/
H A Ddcamera_channel_sink_impl_test.cpp47 std::shared_ptr<ICameraOperator> operator_; member in OHOS::DistributedHardware::DCameraChannelSinkImplTest
72 operator_ = nullptr; in TearDown()
92 operator_ = std::make_shared<MockCameraOperator>(); in HWTEST_F()
93 output_ = std::make_shared<DCameraSinkOutput>(TEST_CAMERA_DH_ID_0, operator_); in HWTEST_F()
116 operator_ = std::make_shared<MockCameraOperator>(); in HWTEST_F()
117 output_ = std::make_shared<DCameraSinkOutput>(TEST_CAMERA_DH_ID_0, operator_); in HWTEST_F()
141 operator_ = std::make_shared<MockCameraOperator>(); in HWTEST_F()
142 output_ = std::make_shared<DCameraSinkOutput>(TEST_CAMERA_DH_ID_0, operator_); in HWTEST_F()
167 operator_ = std::make_shared<MockCameraOperator>(); in HWTEST_F()
168 output_ = std::make_shared<DCameraSinkOutput>(TEST_CAMERA_DH_ID_0, operator_); in HWTEST_F()
[all...]
H A Ddcamera_softbus_session_test.cpp47 std::shared_ptr<ICameraOperator> operator_; member in OHOS::DistributedHardware::DCameraSoftbusSessionTest
72 operator_ = std::make_shared<MockCameraOperator>(); in SetUp()
73 output_ = std::make_shared<DCameraSinkOutput>(TEST_CAMERA_DH_ID_0, operator_); in SetUp()
85 operator_ = nullptr; in TearDown()
/foundation/graphic/graphic_2d/frameworks/bootanimation/src/
H A Dboot_compatible_display_strategy.cpp49 operator_ = std::make_shared<BootAnimationOperation>(); in Display()
50 operator_->Init(config, screenWidth, screenHeight, duration); in Display()
51 operator_->GetThread().join(); in Display()
H A Dboot_associative_display_strategy.cpp55 operator_ = std::make_shared<BootAnimationOperation>(); in Display()
56 operator_->Init(config, screenWidth, screenHeight, duration); in Display()
57 operator_->GetThread().join(); in Display()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/src/distributedcameramgr/
H A Ddcamera_sink_controller.cpp98 if (operator_ == nullptr) { in StopCapture()
101 int32_t ret = operator_->StopCapture(); in StopCapture()
195 int32_t ret = operator_->UpdateSettings(settings); in UpdateSettings()
332 operator_ = std::make_shared<DCameraClient>(dhId_); in Init()
333 output_ = std::make_shared<DCameraSinkOutput>(dhId_, operator_); in Init()
342 operator_->SetStateCallback(stateCallback); in Init()
343 ret = operator_->Init(); in Init()
440 if (operator_ != nullptr) { in UnInit()
441 ret = operator_->UnInit(); in UnInit()
636 ret = operator_ in StartCaptureInner()
[all...]
H A Ddcamera_sink_output.cpp31 : dhId_(dhId), operator_(cameraOperator) in DCameraSinkOutput()
49 operator_->SetResultCallback(resultCallback); in Init()
/foundation/graphic/graphic_2d/frameworks/bootanimation/include/
H A Dboot_compatible_display_strategy.h32 std::shared_ptr<BootAnimationOperation> operator_; member in OHOS::BootCompatibleDisplayStrategy
H A Dboot_associative_display_strategy.h34 std::shared_ptr<BootAnimationOperation> operator_; member in OHOS::BootAssociativeDisplayStrategy
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_query.cpp64 if (operation.operator_ >= 0 && operation.operator_ < OPERATOR_MAX) { in MakeQuery()
65 (this->*HANDLES[operation.operator_])(operation); in MakeQuery()
89 if (operation.operator_ >= 0 && operation.operator_ < OPERATOR_MAX) { in MakeCloudQuery()
90 (this->*HANDLES[operation.operator_])(operation); in MakeCloudQuery()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/test/unittest/common/distributedcameramgr/
H A Ddcamera_sink_output_test.cpp47 std::shared_ptr<ICameraOperator> operator_; member in OHOS::DistributedHardware::DCameraSinkOutputTest
122 operator_ = std::make_shared<MockCameraOperator>(); in SetUp()
123 output_ = std::make_shared<DCameraSinkOutput>(cameras[0], operator_); in SetUp()
131 operator_ = nullptr; in TearDown()
H A Ddcamera_sink_controller_test.cpp138 controller_->operator_ = std::make_shared<MockCameraOperator>(); in SetUp()
139 controller_->output_ = std::make_shared<MockDCameraSinkOutput>(cameras[0], controller_->operator_); in SetUp()
673 controller_->operator_ = nullptr; in HWTEST_F()
692 controller_->operator_ = nullptr; in HWTEST_F()
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Drdb_types_util.cpp71 return ITypesUtil::Marshal(data, static_cast<int32_t>(input.operator_), input.field_, input.values_); in Marshalling()
79 output.operator_ = static_cast<decltype(output.operator_)>(option); in Unmarshalling()
/foundation/distributedhardware/distributed_camera/services/cameraservice/sinkservice/include/distributedcameramgr/
H A Ddcamera_sink_output.h60 std::shared_ptr<ICameraOperator> operator_; member in OHOS::DistributedHardware::DCameraSinkOutput
H A Ddcamera_sink_controller.h98 std::shared_ptr<ICameraOperator> operator_; member in OHOS::DistributedHardware::DCameraSinkController
/foundation/barrierfree/accessibility/frameworks/asacfwk/include/
H A Daccessibility_element_operator_impl.h228 std::shared_ptr<AccessibilityElementOperator> operator_ = nullptr; member in OHOS::Accessibility::AccessibilityElementOperatorImpl
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Drdb_types.h191 RdbPredicateOperator operator_; member
/foundation/distributeddatamgr/relational_store/test/native/rdb/unittest/
H A Drdb_predicates_test.cpp1788 EXPECT_EQ(distributedRdbPredicates.operations_[0].operator_, OHOS::DistributedRdb::EQUAL_TO); in HWTEST_F()

Completed in 14 milliseconds