Lines Matching defs:param
89 std::tuple<ErrorCode, Action> State::Execute(Intent intent, const Plugin::Any& param)
91 return DispatchIntent(intent, param);
101 std::tuple<ErrorCode, Action> State::SetSource(const Plugin::Any& param)
103 (void)param;
132 std::tuple<ErrorCode, Action> State::Seek(const Plugin::Any& param)
134 (void)param;
145 std::tuple<ErrorCode, Action> State::OnError(const Plugin::Any& param)
148 if (Plugin::Any::IsSameTypeWith<ErrorCode>(param)) {
149 errorCode = Plugin::AnyCast<ErrorCode>(param);
158 std::tuple<ErrorCode, Action> State::DispatchIntent(Intent intent, const Plugin::Any& param)
164 std::tie(rtv, nextAction) = SetSource(param);
170 std::tie(rtv, nextAction) = Seek(param);
197 std::tie(rtv, nextAction) = OnError(param);