Searched defs:Invoke (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium/base/win/
H A Dscoped_variant_unittest.cc56 STDMETHOD(Invoke)(DISPID, REFIID, LCID, WORD, DISPPARAMS*, VARIANT*, function in class:base::win::__anon1839::FakeComObject
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-more-actions.h46 // Implements the Invoke(f) action. The template argument
48 // function pointer or a functor. Invoke(f) can be used as an
61 return InvokeHelper<Result, ArgumentTuple>::Invoke(function_impl_, args);
70 // Implements the Invoke(object_ptr, &Class::Method) action.
92 // Various overloads for Invoke().
97 PolymorphicAction<internal::InvokeAction<FunctionImpl> > Invoke( function in namespace:testing
106 PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke( function in namespace:testing
H A Dgmock-generated-actions.h57 static R Invoke(Function function, const ::std::tr1::tuple<>&) { function in class:testing::internal::InvokeHelper
73 static R Invoke(Function function, const ::std::tr1::tuple<A1>& args) { function in class:testing::internal::InvokeHelper
91 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2>& args) { function in class:testing::internal::InvokeHelper
109 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, function in class:testing::internal::InvokeHelper
128 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, function in class:testing::internal::InvokeHelper
149 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4, function in class:testing::internal::InvokeHelper
171 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4, function in class:testing::internal::InvokeHelper
193 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4, function in class:testing::internal::InvokeHelper
216 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4, function in class:testing::internal::InvokeHelper
239 static R Invoke(Functio function in class:testing::internal::InvokeHelper
265 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2, A3, A4, function in class:testing::internal::InvokeHelper
[all...]
H A Dgmock-generated-function-mockers.h71 R Invoke() { function in class:testing::internal::FunctionMocker
92 R Invoke(A1 a1) { function in class:testing::internal::FunctionMocker
113 R Invoke(A1 a1, A2 a2) { function in class:testing::internal::FunctionMocker
135 R Invoke(A1 a1, A2 a2, A3 a3) { function in class:testing::internal::FunctionMocker
157 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4) { function in class:testing::internal::FunctionMocker
181 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) { function in class:testing::internal::FunctionMocker
206 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) { function in class:testing::internal::FunctionMocker
231 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7) { function in class:testing::internal::FunctionMocker
256 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8) { function in class:testing::internal::FunctionMocker
282 R Invoke(A function in class:testing::internal::FunctionMocker
309 R Invoke(A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9, function in class:testing::internal::FunctionMocker
[all...]
/external/chromium_org/base/win/
H A Dscoped_variant_unittest.cc56 STDMETHOD(Invoke)(DISPID, REFIID, LCID, WORD, DISPPARAMS*, VARIANT*, function in class:base::win::__anon4032::FakeComObject
/external/chromium_org/ppapi/native_client/src/trusted/weak_ref/
H A Dcall_on_main_thread.h166 void Invoke(int32_t err) { function in class:plugin::WeakRefMemberFuncBinder
168 ("WeakRefMemberFuncBinder: Invoke obj 0x%" NACL_PRIxPTR
188 binder->Invoke(err);
/external/chromium/webkit/glue/
H A Dcpp_variant.cc250 bool CppVariant::Invoke(const std::string& method, const CppVariant* args, function in class:CppVariant
H A Dcpp_bound_class.cc8 // - Something calls our NPObject with a function like "Invoke".
10 // CppBoundClass's Invoke() method.
11 // - CppBoundClass has then overridden Invoke() to look up the function
159 return obj->bound_class->Invoke(ident, args, arg_count, result);
202 bool CppBoundClass::Invoke(NPIdentifier ident, function in class:CppBoundClass
/external/chromium_org/chrome_frame/
H A Dcom_message_event.cc104 STDMETHODIMP ComMessageEvent::Invoke(DISPID dispid, REFIID iid, LCID lcid, function in class:ComMessageEvent
138 hr = basic_event_->Invoke(dispid, iid, lcid, flags, params, result,
H A Dcom_type_info_holder.cc94 HRESULT TypeInfoNameCache::Invoke(IDispatch* p, DISPID dispid, WORD flags, function in class:com_util::TypeInfoNameCache
98 HRESULT hr = type_info_->Invoke(p, dispid, flags, params, result, excepinfo,
H A Dcom_type_info_holder.h39 // to dispids. Also offers an Invoke method that simply forwards the call
40 // to ITypeInfo::Invoke.
51 // Calls ITypeInfo::Invoke.
52 HRESULT Invoke(IDispatch* p, DISPID dispid, WORD flags, DISPPARAMS* params,
122 HRESULT Invoke(IDispatch* p, DISPID dispid, REFIID riid, LCID lcid, function in class:com_util::TypeInfoHolder
128 return type_info_->Invoke(p, dispid, flags, params, result, excepinfo,
157 STDMETHOD(Invoke)(DISPID dispid, REFIID riid, LCID lcid, WORD flags, function in class:com_util::IDispatchImpl
160 return type_info_.Invoke(static_cast<IDispatch*>(this), dispid, riid, lcid,
/external/chromium_org/chrome_frame/test/
H A Dcom_message_event_unittest.cc98 STDMETHOD(Invoke)(DISPID id, REFIID iid, LCID lcid, WORD flags, function in class:MockSmartContainer
310 // Invoke function handled by ComMessageEvent.
H A Die_event_sink.cc714 STDMETHODIMP IEEventSink::Invoke(DISPID dispid, REFIID riid, LCID lcid, function in class:chrome_frame_test::IEEventSink
719 return DispEventsImpl::Invoke(dispid, riid, lcid, flags, params, result,
763 EXPECT_HRESULT_SUCCEEDED(param->pdispVal->Invoke(ids[0], IID_NULL,
766 EXPECT_HRESULT_SUCCEEDED(param->pdispVal->Invoke(ids[1], IID_NULL,
769 EXPECT_HRESULT_SUCCEEDED(param->pdispVal->Invoke(ids[2], IID_NULL,
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Dsrpc_client.cc161 bool SrpcClient::Invoke(const nacl::string& method_name, SrpcParams* params) { function in class:plugin::SrpcClient
163 // case. However, there are calls to Invoke from within the plugin itself,
166 PLUGIN_PRINTF(("SrpcClient::Invoke (this=%p, method_name='%s', params=%p)\n",
171 // Ensure Invoke was called with a method name that has a binding.
173 PLUGIN_PRINTF(("SrpcClient::Invoke (ident not in methods_)\n"));
177 PLUGIN_PRINTF(("SrpcClient::Invoke (sending the rpc)\n"));
183 PLUGIN_PRINTF(("SrpcClient::Invoke (response=%d)\n", last_error_));
185 PLUGIN_PRINTF(("SrpcClient::Invoke (err='%s', return 0)\n",
190 PLUGIN_PRINTF(("SrpcClient::Invoke (return 1)\n"));
/external/chromium_org/remoting/base/
H A Ddispatch_win.h25 // IDispatch::Invoke(). The latter accepts parameters as an array of
26 // |VARIANTARG| structures. The calling convention of IDispatch::Invoke() is:
28 // - [out] parameters are initialized by IDispatch::Invoke(). It is up to
53 // that they can be passed to IDispatch::Invoke.
64 // IDispatch::Invoke().
103 // Invoke() is a convenience wrapper for IDispatch::Invoke. It takes care of
119 HRESULT Invoke(IDispatch* object, function in namespace:remoting::dispatch
137 // Invoke the method passing the parameters via the DISPPARAMS structure.
148 hr = object->Invoke(disp_i
163 HRESULT Invoke(IDispatch* object, function in namespace:remoting::dispatch
215 HRESULT Invoke(IDispatch* object, function in namespace:remoting::dispatch
272 HRESULT Invoke(IDispatch* object, function in namespace:remoting::dispatch
334 HRESULT Invoke(IDispatch* object, function in namespace:remoting::dispatch
401 HRESULT Invoke(IDispatch* object, function in namespace:remoting::dispatch
474 HRESULT Invoke(IDispatch* object, function in namespace:remoting::dispatch
552 HRESULT Invoke(IDispatch* object, function in namespace:remoting::dispatch
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dproxy.h66 void Invoke(C* c, M m) { r_ = (c->*m)(); } function in class:webrtc::ReturnType
68 void Invoke(C* c, M m, T1 a1) { r_ = (c->*m)(a1); } function in class:webrtc::ReturnType
70 void Invoke(C* c, M m, T1 a1, T2 a2) { r_ = (c->*m)(a1, a2); } function in class:webrtc::ReturnType
72 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3) { r_ = (c->*m)(a1, a2, a3); } function in class:webrtc::ReturnType
84 void Invoke(C* c, M m) { (c->*m)(); } function in class:webrtc::ReturnType
86 void Invoke(C* c, M m, T1 a1) { (c->*m)(a1); } function in class:webrtc::ReturnType
88 void Invoke(C* c, M m, T1 a1, T2 a2) { (c->*m)(a1, a2); } function in class:webrtc::ReturnType
90 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3) { (c->*m)(a1, a2, a3); } function in class:webrtc::ReturnType
108 void OnMessage(talk_base::Message*) { r_.Invoke(c_, m_);}
128 void OnMessage(talk_base::Message*) { r_.Invoke(c
[all...]
/external/chromium_org/webkit/renderer/
H A Dcpp_variant.cc252 bool CppVariant::Invoke(const std::string& method, const CppVariant* args, function in class:webkit_glue::CppVariant
H A Dcpp_bound_class.cc8 // - Something calls our NPObject with a function like "Invoke".
10 // CppBoundClass's Invoke() method.
11 // - CppBoundClass has then overridden Invoke() to look up the function
163 return obj->bound_class->Invoke(ident, args, arg_count, result);
202 bool CppBoundClass::Invoke(NPIdentifier ident, function in class:webkit_glue::CppBoundClass
/external/chromium_org/win8/metro_driver/
H A Dmetro_dialog_box.cc137 HRESULT STDMETHODCALLTYPE MetroDialogBox::Invoke( function in class:MetroDialogBox
/external/chromium_org/chromeos/network/
H A Dmanaged_network_configuration_handler_unittest.cc27 using ::testing::Invoke;
174 .WillByDefault(Invoke(&profiles_stub_, variable
178 .WillByDefault(Invoke(&profiles_stub_, variable
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dthread.h167 // Ex: bool result = thread.Invoke<bool>(&MyFunctionReturningBool);
169 ReturnT Invoke(const FunctorT& functor) { function in class:talk_base::Thread
/external/chromium/base/
H A Dstring_number_conversions.cc145 static bool Invoke(char c) { function in class:base::__anon1760::WhitespaceHelper
152 static bool Invoke(char16 c) { function in class:base::__anon1760::WhitespaceHelper
158 return WhitespaceHelper<CHAR>::Invoke(c);
176 static bool Invoke(const_iterator begin, function in class:base::__anon1760::IteratorRangeToNumber
187 if (!Negative::Invoke(begin + 1, end, output)) {
194 if (!Positive::Invoke(begin, end, output)) {
211 static bool Invoke(const_iterator begin, const_iterator end, function in class:base::__anon1760::IteratorRangeToNumber::Base
392 return IteratorRangeToNumber<IteratorRangeToIntTraits>::Invoke(input.begin(),
401 return IteratorRangeToNumber<IteratorRangeToIntTraits>::Invoke(begin,
408 return IteratorRangeToNumber<CharBufferToIntTraits>::Invoke(begi
[all...]
/external/chromium_org/base/strings/
H A Dstring_number_conversions.cc148 static bool Invoke(char c) { function in class:base::__anon3888::WhitespaceHelper
155 static bool Invoke(char16 c) { function in class:base::__anon3888::WhitespaceHelper
161 return WhitespaceHelper<CHAR>::Invoke(c);
179 static bool Invoke(const_iterator begin, function in class:base::__anon3888::IteratorRangeToNumber
192 } else if (!Negative::Invoke(begin + 1, end, output)) {
199 if (!Positive::Invoke(begin, end, output)) {
216 static bool Invoke(const_iterator begin, const_iterator end, function in class:base::__anon3888::IteratorRangeToNumber::Base
348 return IteratorRangeToNumber<StringPieceToNumberTraits<VALUE, 10> >::Invoke(
361 return IteratorRangeToNumber<StringPiece16ToNumberTraits<VALUE, 10> >::Invoke(
498 return IteratorRangeToNumber<HexIteratorRangeToIntTraits>::Invoke(
[all...]
/external/chromium_org/content/browser/renderer_host/java/
H A Djava_bound_object.cc61 static bool Invoke(NPObject* np_object, NPIdentifier np_identifier,
75 JavaNPObject::Invoke,
100 bool JavaNPObject::Invoke(NPObject* np_object, NPIdentifier np_identifier, function in class:content::__anon7711::JavaNPObject
105 return obj->bound_object->Invoke(name, args, arg_count, result);
832 bool JavaBoundObject::Invoke(const std::string& name, const NPVariant* args, function in class:content::JavaBoundObject
/external/chromium_org/remoting/host/plugin/
H A Dhost_plugin.cc161 &Invoke,
277 static bool Invoke(NPObject* obj, function in class:__anon9764::HostNPPlugin
282 VLOG(2) << "static Invoke";
289 return scriptable->Invoke(method_name_string, args, argCount, result);

Completed in 1790 milliseconds

12