HomeSort by relevance Sort by last modified time
    Searched defs:Invoke (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/tools/cr/cr/actions/
gdb.py 20 def Invoke(self, context, targets, arguments):
debugger.py 13 Implementations must override the Invoke and Attach methods.
33 Defaults to a Kill Invoke sequence.
36 self.Invoke(context, targets, arguments)
44 def Invoke(self, context, targets, arguments):
45 """Invoke the program within a debugger."""
runner.py 50 def Invoke(self, context, targets, arguments):
51 """Invoke a target.
65 Default implementation is to do a Kill Invoke sequence.
69 self.Invoke(context, targets, arguments)
  /external/chromium/testing/gmock/include/gmock/
gmock-more-actions.h 46 // 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(
106 PolymorphicAction<internal::InvokeMethodAction<Class, MethodPtr> > Invoke(
  /external/chromium_org/chrome_frame/
com_message_event.cc 104 STDMETHODIMP ComMessageEvent::Invoke(DISPID dispid, REFIID iid, LCID lcid,
138 hr = basic_event_->Invoke(dispid, iid, lcid, flags, params, result,
com_type_info_holder.cc 94 HRESULT TypeInfoNameCache::Invoke(IDispatch* p, DISPID dispid, WORD flags,
98 HRESULT hr = type_info_->Invoke(p, dispid, flags, params, result, excepinfo,
com_type_info_holder.h 39 // 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,
128 return type_info_->Invoke(p, dispid, flags, params, result, excepinfo,
157 STDMETHOD(Invoke)(DISPID dispid, REFIID riid, LCID lcid, WORD flags,
160 return type_info_.Invoke(static_cast<IDispatch*>(this), dispid, riid, lcid,
  /frameworks/rs/
rsScriptIntrinsic.cpp 70 void ScriptIntrinsic::Invoke(Context *rsc, uint32_t slot, const void *data, size_t len) {
rsScriptC.cpp 193 void ScriptC::Invoke(Context *rsc, uint32_t slot, const void *data, size_t len) {
197 rsc->setError(RS_ERROR_BAD_SCRIPT, "Calling invoke on bad script");
203 ALOGV("%p ScriptC::Invoke invoking slot %i, ptr %p", rsc, slot, this);
  /external/chromium_org/ppapi/native_client/src/trusted/weak_ref/
call_on_main_thread.h 166 void Invoke(int32_t err) {
168 ("WeakRefMemberFuncBinder: Invoke obj 0x%" NACL_PRIxPTR
188 binder->Invoke(err);
  /external/chromium_org/remoting/base/
dispatch_win.h 25 // 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,
137 // Invoke the method passing the parameters via the DISPPARAMS structure.
148 hr = object->Invoke(disp_id, IID_NULL, LOCALE_USER_DEFAULT, flags
    [all...]
  /external/chromium/base/win/
scoped_variant_unittest.cc 56 STDMETHOD(Invoke)(DISPID, REFIID, LCID, WORD, DISPPARAMS*, VARIANT*,
  /external/chromium_org/base/win/
scoped_variant_unittest.cc 56 STDMETHOD(Invoke)(DISPID, REFIID, LCID, WORD, DISPPARAMS*, VARIANT*,
  /external/chromium_org/chrome_frame/test/
com_message_event_unittest.cc 98 STDMETHOD(Invoke)(DISPID id, REFIID iid, LCID lcid, WORD flags,
310 // Invoke function handled by ComMessageEvent.
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
proxy.h 66 void Invoke(C* c, M m) { r_ = (c->*m)(); }
68 void Invoke(C* c, M m, T1 a1) { r_ = (c->*m)(a1); }
70 void Invoke(C* c, M m, T1 a1, T2 a2) { r_ = (c->*m)(a1, a2); }
72 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3) { r_ = (c->*m)(a1, a2, a3); }
84 void Invoke(C* c, M m) { (c->*m)(); }
86 void Invoke(C* c, M m, T1 a1) { (c->*m)(a1); }
88 void Invoke(C* c, M m, T1 a1, T2 a2) { (c->*m)(a1, a2); }
90 void Invoke(C* c, M m, T1 a1, T2 a2, T3 a3) { (c->*m)(a1, a2, a3); }
108 void OnMessage(talk_base::Message*) { r_.Invoke(c_, m_);}
128 void OnMessage(talk_base::Message*) { r_.Invoke(c_, m_);
    [all...]
  /external/chromium_org/win8/metro_driver/
metro_dialog_box.cc 137 HRESULT STDMETHODCALLTYPE MetroDialogBox::Invoke(
155 // The dialog box is destroyed once we return from invoke. Go ahead and
  /external/chromium/webkit/glue/
cpp_bound_class.cc 8 // - Something calls our NPObject with a function like "Invoke".
9 // - CppNPObject's static invoke() function forwards it to its attached
10 // CppBoundClass's Invoke() method.
11 // - CppBoundClass has then overridden Invoke() to look up the function
98 static bool invoke(NPObject *obj, NPIdentifier ident,
123 CppNPObject::invoke,
155 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident, function in class:CppNPObject
159 return obj->bound_class->Invoke(ident, args, arg_count, result);
202 bool CppBoundClass::Invoke(NPIdentifier ident,
cpp_variant.cc 250 bool CppVariant::Invoke(const std::string& method, const CppVariant* args,
257 bool status = WebBindings::invoke(NULL, np_object, method_name, args, arg_count, &r);
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
srpc_client.cc 161 bool SrpcClient::Invoke(const nacl::string& method_name, SrpcParams* params) {
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/webkit/renderer/
cpp_bound_class.cc 8 // - Something calls our NPObject with a function like "Invoke".
9 // - CppNPObject's static invoke() function forwards it to its attached
10 // CppBoundClass's Invoke() method.
11 // - CppBoundClass has then overridden Invoke() to look up the function
102 static bool invoke(NPObject *obj, NPIdentifier ident,
127 CppNPObject::invoke,
159 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident, function in class:webkit_glue::CppNPObject
163 return obj->bound_class->Invoke(ident, args, arg_count, result);
202 bool CppBoundClass::Invoke(NPIdentifier ident,
cpp_variant.cc 252 bool CppVariant::Invoke(const std::string& method, const CppVariant* args,
260 WebBindings::invoke(NULL, np_object, method_name, args, arg_count, &r);
  /art/runtime/mirror/
art_method.cc 246 void ArtMethod::Invoke(Thread* self, uint32_t* args, uint32_t args_size, JValue* result,
258 // Call the invoke stub, passing everything as arguments.
  /external/chromium_org/remoting/host/plugin/
host_plugin.cc 161 &Invoke,
277 static bool Invoke(NPObject* obj,
282 VLOG(2) << "static Invoke";
289 return scriptable->Invoke(method_name_string, args, argCount, result);
  /external/chromium_org/third_party/libjingle/source/talk/base/
thread.h 169 // Convenience method to invoke a functor on another thread. Caller must
173 // Ex: bool result = thread.Invoke<bool>(&MyFunctionReturningBool);
175 ReturnT Invoke(const FunctorT& functor) {
  /external/chromium/base/
string_number_conversions.cc 145 static bool Invoke(char c) {
152 static bool Invoke(char16 c) {
158 return WhitespaceHelper<CHAR>::Invoke(c);
176 static bool Invoke(const_iterator begin,
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,
392 return IteratorRangeToNumber<IteratorRangeToIntTraits>::Invoke(input.begin(),
401 return IteratorRangeToNumber<IteratorRangeToIntTraits>::Invoke(begin,
408 return IteratorRangeToNumber<CharBufferToIntTraits>::Invoke(begin
    [all...]

Completed in 4020 milliseconds

1 2