Home
last modified time | relevance | path

Searched refs:function_ (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view_common_def.h68 : context_(context), function_(jsFunction), paramCollector_(std::move(paramCollector)),
81 JSRef<JSFunc> function_; variable
95 : context_(context), function_(jsFunction), resultConvertor_(std::move(resultConvertor))
101 return resultConvertor_(function_->Call(JSRef<JSObject>())); in operator()
106 JSRef<JSFunc> function_; variable
119 : context_(context), function_(jsFunction), paramCollector_(std::move(paramCollector))
126 function_->Call(JSRef<JSObject>(), params.size(), params.data()); in operator()
131 JSRef<JSFunc> function_; variable
141 : context_(context), function_(jsFunction) in JsEventCallback()
147 function_->Call(JSRef<JSObject>()); in operator()
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/threading/
H A Dtask_queue_factory.cpp230 ITask::Ptr function_; member
236 : function_(move(function)), state_(CORE_NS::move(state)) in Task()
238 CORE_ASSERT(this->function_ && this->state_); in Task()
240 explicit Task(ITask::Ptr&& function) : function_(move(function)) in Task()
242 CORE_ASSERT(this->function_); in Task()
251 (*function_)(); in operator ()()
/ohos5.0/base/customization/enterprise_device_management/interfaces/inner_api/plugin_kits/include/
H A Diplugin_template.h313 Function function_ = nullptr; member
323 : handlePolicy_(std::move(handlePolicy)), function_(function) {} in HandlePolicyFunc()
H A Diplugin_template.tpp74 if (entry == handlePolicyFuncMap_.end() || entry->second.function_ == nullptr) {
77 ErrCode result = (instance_.get()->*(entry->second.function_))(handleData);
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/mock/include/
H A Drdb_store_config.h110 ScalarFunctionInfo(ScalarFunction function, int argc) : function_(function), argc_(argc) {} in ScalarFunctionInfo()
111 ScalarFunction function_; member
/ohos5.0/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Drdb_store_config.h200 ScalarFunctionInfo(ScalarFunction function, int argc) : function_(function), argc_(argc) {} in ScalarFunctionInfo()
201 ScalarFunction function_; member
/ohos5.0/base/msdp/device_status/test/unittest/intention/services/src/
H A Dintention_service_test.cpp216 …explicit TestStartDragListener(std::function<void(const DragNotifyMsg&)> function) : function_(fun… in TestStartDragListener()
221 if (function_ != nullptr) { in OnDragEndMessage()
222 function_(msg); in OnDragEndMessage()
232 std::function<void(const DragNotifyMsg&)> function_; member in OHOS::Msdp::DeviceStatus::TestStartDragListener
/ohos5.0/base/msdp/device_status/test/unittest/frameworks/src/
H A Dinteraction_drag_drawing_test.cpp123 …explicit TestStartDragListener(std::function<void(const DragNotifyMsg&)> function) : function_(fun… in TestStartDragListener()
128 if (function_ != nullptr) { in OnDragEndMessage()
129 function_(msg); in OnDragEndMessage()
139 std::function<void(const DragNotifyMsg&)> function_; member in OHOS::Msdp::DeviceStatus::TestStartDragListener
H A Dinteraction_manager_test.cpp247 …TestStartDragListener(std::function<void(const DragNotifyMsg&)> function) : function_(function) { } in UnitTestStartDragListener()
252 if (function_ != nullptr) { in OnDragEndMessage()
253 function_(msg); in OnDragEndMessage()
263 std::function<void(const DragNotifyMsg&)> function_; member in OHOS::Msdp::DeviceStatus::UnitTestStartDragListener
/ohos5.0/base/msdp/device_status/test/unittest/intention/drag/src/
H A Ddrag_server_test.cpp253 …explicit TestStartDragListener(std::function<void(const DragNotifyMsg&)> function) : function_(fun… in TestStartDragListener()
258 if (function_ != nullptr) { in OnDragEndMessage()
259 function_(msg); in OnDragEndMessage()
269 std::function<void(const DragNotifyMsg&)> function_; member in OHOS::Msdp::DeviceStatus::TestStartDragListener
H A Ddrag_manager_test.cpp135 …explicit TestStartDragListener(std::function<void(const DragNotifyMsg&)> function) : function_(fun… in TestStartDragListener()
140 if (function_ != nullptr) { in OnDragEndMessage()
141 function_(msg); in OnDragEndMessage()
151 std::function<void(const DragNotifyMsg&)> function_; member in OHOS::Msdp::DeviceStatus::TestStartDragListener
/ohos5.0/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dsqlite_connection.cpp293 int errCode = SetCustomScalarFunction(it.first, it.second.argc_, &it.second.function_); in SetCustomFunctions()