HomeSort by relevance Sort by last modified time
    Searched refs:method_name (Results 26 - 50 of 118) sorted by null

12 3 4 5

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 170 the _get_method_argstring(method_name) method to provide the
172 _methodHelp(method_name) method to provide the help text used
177 for method_name in self.system_listMethods():
178 if method_name in self.funcs:
179 method = self.funcs[method_name]
183 method_info[0] = self.instance._get_method_argstring(method_name)
185 method_info[1] = self.instance._methodHelp(method_name)
194 method_name
204 methods[method_name] = method
SimpleXMLRPCServer.py 301 def system_methodSignature(self, method_name):
314 def system_methodHelp(self, method_name):
320 if method_name in self.funcs:
321 method = self.funcs[method_name]
325 return self.instance._methodHelp(method_name)
332 method_name,
358 method_name = call['methodName']
364 results.append([self._dispatch(method_name, params)])
  /external/chromium_org/chrome/browser/chromeos/dbus/
printer_service_provider.cc 120 const std::string& method_name,
124 << method_name; local
126 DVLOG(1) << "Method exported: " << interface_name << "." << method_name; local
display_power_service_provider.cc 42 const std::string& method_name,
46 << method_name; local
proxy_resolution_service_provider.h 100 const std::string& method_name,
service_provider_test_helper.h 64 const std::string& method_name,
service_provider_test_helper.cc 111 const std::string& method_name,
115 on_exported_callback.Run(interface_name, method_name, true);
  /external/chromium_org/remoting/host/plugin/
host_script_object.cc 713 bool HostNPScriptObject::HasMethod(const std::string& method_name) {
714 VLOG(2) << "HasMethod " << method_name;
716 return (method_name == kFuncNameConnect ||
717 method_name == kFuncNameDisconnect ||
718 method_name == kFuncNameLocalize ||
719 method_name == kFuncNameClearPairedClients ||
720 method_name == kFuncNameDeletePairedClient ||
721 method_name == kFuncNameGetHostName ||
722 method_name == kFuncNameGetPinHash ||
723 method_name == kFuncNameGenerateKeyPair |
    [all...]
  /art/runtime/mirror/
stack_trace_element.h 53 String* method_name,
  /external/chromium_org/android_webview/buildbot/
deps_whitelist.py 161 def execute_method(self, method_name, deps_file_path):
169 if not method_name in methods:
171 (method_name, methods.keys()))
172 return methods[method_name](deps_file_path)
  /external/chromium_org/ppapi/c/dev/
ppp_class_deprecated.h 112 struct PP_Var method_name,
ppb_var_deprecated.h 164 * Invoke the function |method_name| on the given object. If |method_name|
168 * Unless it is type Null, |method_name| must be a string. Unlike other
181 struct PP_Var method_name,
  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.h 65 // method_name is guaranteed to be either a string or an integer.
69 virtual Var Call(const Var& method_name,
  /external/chromium_org/ppapi/proxy/
ppb_var_deprecated_proxy.h 66 SerializedVarReceiveInput method_name,
71 SerializedVarReceiveInput method_name,
  /external/oprofile/agents/jvmti/
libjvmti_oprofile.c 121 char * method_name = NULL; local
163 err = (*jvmti)->GetMethodName(jvmti, method, &method_name,
171 declaring_class, class_signature, method_name,
176 int cnt = strlen(method_name) + strlen(class_signature) +
180 strncat(buf, method_name, cnt - strlen(buf) - 1);
196 (*jvmti)->Deallocate(jvmti, (unsigned char *)method_name);
  /external/chromium_org/content/renderer/pepper/
ppb_var_deprecated_impl.cc 273 PP_Var method_name,
278 if (method_name.type == PP_VARTYPE_UNDEFINED) {
280 } else if (method_name.type == PP_VARTYPE_STRING) {
282 identifier = PPVarToNPIdentifier(method_name);
327 PP_Var method_name,
338 return InternalCallDeprecated(&accessor, method_name, argc, argv,
341 return InternalCallDeprecated(&accessor, method_name, argc, argv, exception);
  /external/chromium_org/chrome/installer/util/
wmi.cc 54 const std::wstring& method_name,
59 base::win::ScopedBstr b_method_name(method_name.c_str());
102 const wchar_t method_name[] = L"Create"; local
104 if (!WMI::CreateClassMethodObject(wmi_local, class_name, method_name,
115 base::win::ScopedBstr(method_name),
  /external/oprofile/agents/jvmpi/
jvmpi_oprofile.cpp 64 passed_methods->method_name;
109 char const * method_name = ((string)method_it->second).c_str(); local
122 << method_name << ", method signature = "
129 int cnt = strlen(method_name) + strlen(class_signature.c_str()) +
133 strncat(buf, method_name, cnt - strlen(buf) - 1);
  /external/chromium_org/chrome/renderer/extensions/
module_system.h 80 // equivalent to calling require('module_name').method_name() from JS.
82 const std::string& method_name);
85 const std::string& method_name,
89 const std::string& method_name,
module_system.cc 265 const std::string& method_name) {
268 return CallModuleMethod(module_name, method_name, 0, &no_args);
273 const std::string& method_name,
276 module_name, method_name, args->size(), vector_as_array(args));
281 const std::string& method_name,
286 "method_name", method_name);
300 "Failed to get module " + module_name + " to call " + method_name);
306 v8::String::New(method_name.c_str()));
308 Fatal(context_, module_name + "." + method_name + " is not a function")
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
tracing_backend_unittest.py 43 def __init__(self, method_name):
45 super(TracingResultImplTest, self).__init__(method_name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleXMLRPCServer.py 301 def system_methodSignature(self, method_name):
314 def system_methodHelp(self, method_name):
320 if method_name in self.funcs:
321 method = self.funcs[method_name]
325 return self.instance._methodHelp(method_name)
332 method_name,
358 method_name = call['methodName']
364 results.append([self._dispatch(method_name, params)])
  /external/chromium_org/chromeos/dbus/ibus/
ibus_input_context_client.cc 183 const std::string& method_name) {
188 method_name),
190 method_name));
194 static void DefaultCallback(const std::string& method_name,
197 LOG(ERROR) << "Failed to call method: " << method_name;
203 static void DefaultErrorCallback(const std::string& method_name,
205 LOG(ERROR) << "Failed to call method: " << method_name;
ibus_engine_factory_service.cc 105 const std::string& method_name,
108 << interface_name << "." << method_name; local
  /art/compiler/jni/
jni_compiler_test.cc 49 const char* method_name, const char* method_sig) {
56 method = c->FindDirectMethod(method_name, method_sig);
58 method = c->FindVirtualMethod(method_name, method_sig);
60 ASSERT_TRUE(method != NULL) << method_name << " " << method_sig;
65 ASSERT_TRUE(method->GetEntryPointFromCompiledCode() != NULL) << method_name << " " << method_sig;
68 void SetUpForTest(bool direct, const char* method_name, const char* method_sig,
76 CompileForTest(class_loader_, direct, method_name, method_sig);
85 ASSERT_TRUE(jklass_ != NULL) << method_name << " " << method_sig;
88 jmethod_ = env_->GetStaticMethodID(jklass_, method_name, method_sig);
90 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig)
    [all...]

Completed in 1331 milliseconds

12 3 4 5