Home
last modified time | relevance | path

Searched refs:method_name (Results 1 – 25 of 141) sorted by relevance

123456

/third_party/boost/libs/context/doc/
Dcontext.qbk39 [template member_heading[class_name method_name]
40 [operator_heading [class_name]..[method_name]..[method_name]]
42 [template member_link[class_name method_name] [operator_link [class_name]..[method_name]..[method_n…
44 [template operator_heading[class_name method_name method_text]
45 [hding [class_name]_[method_name]..Member function [`[method_text]]()]
47 [template operator_link[class_name method_name method_text] [dblink [class_name]_[method_name]..[`[…
49 [template template_member_heading[class_name method_name]
50 [hding [class_name]_[method_name]..Templated member function [`[method_name]]()]
52 [template template_member_link[class_name method_name] [member_link [class_name]..[method_name]]]
54 [template static_member_heading[class_name method_name]
[all …]
/third_party/boost/libs/fiber/doc/
Dfibers.qbk42 [template member_heading[class_name method_name]
43 [operator_heading [class_name]..[method_name]..[method_name]]
45 [template member_link[class_name method_name][operator_link [class_name]..[method_name]..[method_na…
47 [template operator_heading[class_name method_name method_text]
48 [hding [class_name]_[method_name]..Member function [`[method_text]]()]
50 [template operator_link[class_name method_name method_text][dblink [class_name]_[method_name]..[`[c…
52 [template template_member_heading[class_name method_name]
53 [hding [class_name]_[method_name]..Templated member function [`[method_name]]()]
55 [template template_member_link[class_name method_name][member_link [class_name]..[method_name]]]
57 [template static_member_heading[class_name method_name]
[all …]
/third_party/python/Lib/lib2to3/fixes/
Dfix_dict.py59 method_name = method.value
60 isiter = method_name.startswith("iter")
61 isview = method_name.startswith("view")
63 method_name = method_name[4:]
64 assert method_name in ("keys", "items", "values"), repr(method)
70 Name(method_name,
/third_party/libsoup/tests/
Dxmlrpc-server.php14 function sum ($method_name, $params, $app_data) argument
29 function countBools ($method_name, $params, $app_data) argument
41 function md5sum ($method_name, $params, $app_data) argument
48 function dateChange ($method_name, $params, $app_data) argument
67 function echo_ ($method_name, $params, $app_data) argument
72 function ping ($method_name, $params, $app_data) argument
Dxmlrpc-server-test.c199 char *method_name; in server_callback() local
210 method_name = soup_xmlrpc_parse_request (msg->request_body->data, in server_callback()
213 if (!method_name) { in server_callback()
220 if (!strcmp (method_name, "sum")) in server_callback()
222 else if (!strcmp (method_name, "countBools")) in server_callback()
224 else if (!strcmp (method_name, "md5sum")) in server_callback()
226 else if (!strcmp (method_name, "dateChange")) in server_callback()
228 else if (!strcmp (method_name, "echo")) in server_callback()
230 else if (!strcmp (method_name, "ping")) in server_callback()
234 "Unknown method %s", method_name); in server_callback()
[all …]
Dxmlrpc-old-server-test.c202 char *method_name; in server_callback() local
214 &method_name, &params)) { in server_callback()
220 if (!strcmp (method_name, "sum")) in server_callback()
222 else if (!strcmp (method_name, "countBools")) in server_callback()
224 else if (!strcmp (method_name, "md5sum")) in server_callback()
226 else if (!strcmp (method_name, "dateChange")) in server_callback()
228 else if (!strcmp (method_name, "echo")) in server_callback()
230 else if (!strcmp (method_name, "ping")) in server_callback()
234 "Unknown method %s", method_name); in server_callback()
237 g_free (method_name); in server_callback()
Dxmlrpc-test.c539 char *method_name; in verify_deserialization() local
545 method_name = soup_xmlrpc_parse_request (body, strlen (body), in verify_deserialization()
549 g_assert_cmpstr (method_name, ==, "MyMethod"); in verify_deserialization()
570 g_free (method_name); in verify_deserialization()
579 char *method_name; in verify_deserialization_fail() local
585 method_name = soup_xmlrpc_parse_request (body, strlen (body), in verify_deserialization_fail()
589 g_assert_cmpstr (method_name, ==, "MyMethod"); in verify_deserialization_fail()
596 g_free (method_name); in verify_deserialization_fail()
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/
Dmethod_call_unittests.cc15 const std::string method_name("method_name"); in TEST() local
17 MethodCall<int> method_call(method_name, std::make_unique<int>(argument)); in TEST()
18 EXPECT_EQ(method_call.method_name(), method_name); in TEST()
Djson_method_codec.cc40 std::string method_name(method_name_iter->value.GetString()); in DecodeMethodCallInternal() local
59 method_name, std::move(arguments)); in DecodeMethodCallInternal()
79 rapidjson::Value name(method_call.method_name(), allocator); in EncodeMethodCallInternal()
88 message[kMessageMethodKey] = method_call.method_name(); in EncodeMethodCallInternal()
/third_party/glib/gio/tests/
Dgdbus-example-subtree.c47 const gchar *method_name, in manager_method_call() argument
56 g_assert_cmpstr (method_name, ==, "Hello"); in manager_method_call()
62 method_name, in manager_method_call()
85 const gchar *method_name, in block_method_call() argument
92 if (g_strcmp0 (method_name, "Hello") == 0) in block_method_call()
101 method_name, in block_method_call()
109 else if (g_strcmp0 (method_name, "DoStuff") == 0) in block_method_call()
199 const gchar *method_name, in partition_method_call() argument
208 g_assert_cmpstr (method_name, ==, "Hello"); in partition_method_call()
214 method_name, in partition_method_call()
Dgdbus-testserver.c215 const gchar *method_name, in handle_method_call() argument
220 if (g_strcmp0 (method_name, "HelloWorld") == 0) in handle_method_call()
240 else if (g_strcmp0 (method_name, "DoubleHelloWorld") == 0) in handle_method_call()
253 else if (g_strcmp0 (method_name, "PairReturn") == 0) in handle_method_call()
258 else if (g_strcmp0 (method_name, "TestPrimitiveTypes") == 0) in handle_method_call()
313 else if (g_strcmp0 (method_name, "TestArrayOfPrimitiveTypes") == 0) in handle_method_call()
414 else if (g_strcmp0 (method_name, "TestArrayOfStringTypes") == 0) in handle_method_call()
464 else if (g_strcmp0 (method_name, "TestHashTables") == 0) in handle_method_call()
602 else if (g_strcmp0 (method_name, "TestStructureTypes") == 0) in handle_method_call()
644 else if (g_strcmp0 (method_name, "TestVariant") == 0) in handle_method_call()
[all …]
Dgdbus-example-server.c59 const gchar *method_name, in handle_method_call() argument
64 if (g_strcmp0 (method_name, "HelloWorld") == 0) in handle_method_call()
99 else if (g_strcmp0 (method_name, "EmitSignal") == 0) in handle_method_call()
123 else if (g_strcmp0 (method_name, "GimmeStdout") == 0) in handle_method_call()
/third_party/grpc/test/cpp/util/
Dgrpc_tool.cc188 void ReadResponse(CliCall* call, const std::string& method_name, in ReadResponse() argument
202 method_name, serialized_response_proto, false /* is_request */, in ReadResponse()
379 std::string method_name; in ListServices() local
394 method_name = argv[2]; in ListServices()
397 std::getline(ss, method_name); in ListServices()
404 if (method_name.empty()) { in ListServices()
407 method_name.insert(0, 1, '.'); in ListServices()
408 method_name.insert(0, service_name); in ListServices()
410 desc_pool.FindMethodByName(method_name); in ListServices()
415 method_name.c_str(), service_name.c_str()); in ListServices()
[all …]
/third_party/glib/gio/
Dgdbusmethodinvocation.c86 gchar *method_name; member
105 g_free (invocation->method_name); in G_DEFINE_TYPE()
249 return invocation->method_name; in g_dbus_method_invocation_get_method_name()
351 const gchar *method_name, in _g_dbus_method_invocation_new() argument
364 g_return_val_if_fail (g_dbus_is_member_name (method_name), NULL); in _g_dbus_method_invocation_new()
373 invocation->method_name = g_strdup (method_name); in _g_dbus_method_invocation_new()
438 if (g_str_equal (invocation->method_name, "Get")) in g_dbus_method_invocation_return_value_internal()
464 else if (g_str_equal (invocation->method_name, "GetAll")) in g_dbus_method_invocation_return_value_internal()
479 else if (g_str_equal (invocation->method_name, "Set")) in g_dbus_method_invocation_return_value_internal()
503 invocation->interface_name, invocation->method_name, in g_dbus_method_invocation_return_value_internal()
[all …]
Dgdbusproxy.h166 const gchar *method_name,
179 const gchar *method_name,
188 const gchar *method_name,
203 const gchar *method_name,
/third_party/libsoup/libsoup/
Dsoup-xmlrpc-old.h16 char *soup_xmlrpc_build_method_call (const char *method_name,
22 const char *method_name,
43 char **method_name,
49 char **method_name,
Dsoup-xmlrpc-old.c156 soup_xmlrpc_build_method_call (const char *method_name, in soup_xmlrpc_build_method_call() argument
172 (const xmlChar *)method_name); in soup_xmlrpc_build_method_call()
192 soup_xmlrpc_request_newv (const char *uri, const char *method_name, va_list args) in soup_xmlrpc_request_newv() argument
202 body = soup_xmlrpc_build_method_call (method_name, params->values, in soup_xmlrpc_request_newv()
234 soup_xmlrpc_request_new (const char *uri, const char *method_name, ...) in soup_xmlrpc_request_new() argument
239 va_start (args, method_name); in soup_xmlrpc_request_new()
240 msg = soup_xmlrpc_request_newv (uri, method_name, args); in soup_xmlrpc_request_new()
504 char **method_name, GValueArray **params) in soup_xmlrpc_parse_method_call() argument
549 *method_name = g_strdup ((char *)xmlMethodName); in soup_xmlrpc_parse_method_call()
582 char **method_name, ...) in soup_xmlrpc_extract_method_call() argument
[all …]
/third_party/grpc/src/core/lib/security/transport/
Dclient_auth_filter.cc129 to->method_name = gpr_strdup(from->method_name); in grpc_auth_metadata_context_copy()
138 if (auth_md_context->method_name != nullptr) { in grpc_auth_metadata_context_reset()
139 gpr_free(const_cast<char*>(auth_md_context->method_name)); in grpc_auth_metadata_context_reset()
140 auth_md_context->method_name = nullptr; in grpc_auth_metadata_context_reset()
194 char* method_name = nullptr; in grpc_auth_metadata_context_build() local
200 method_name = gpr_strdup(""); in grpc_auth_metadata_context_build()
202 method_name = gpr_strdup(""); in grpc_auth_metadata_context_build()
205 method_name = gpr_strdup(last_slash + 1); in grpc_auth_metadata_context_build()
218 auth_md_context->method_name = method_name; in grpc_auth_metadata_context_build()
/third_party/python/Lib/xmlrpc/
Dserver.py303 def system_methodSignature(self, method_name): argument
316 def system_methodHelp(self, method_name): argument
322 if method_name in self.funcs:
323 method = self.funcs[method_name]
327 return self.instance._methodHelp(method_name)
334 method_name,
359 method_name = call['methodName']
365 results.append([self._dispatch(method_name, params)])
862 for method_name in self.system_listMethods():
863 if method_name in self.funcs:
[all …]
/third_party/flutter/engine/flutter/shell/platform/common/cpp/client_wrapper/include/flutter/
Dmethod_call.h19 MethodCall(const std::string& method_name, std::unique_ptr<T> arguments) in MethodCall() argument
20 : method_name_(method_name), arguments_(std::move(arguments)) {} in MethodCall()
29 const std::string& method_name() const { return method_name_; } in method_name() function
/third_party/cef/libcef/common/extensions/api/
DBUILD.gn9 method_name = "AddCEFAPIFeatures"
17 method_name = "AddCEFPermissionFeatures"
25 method_name = "AddCEFManifestFeatures"
/third_party/mindspore/mindspore/_extends/parse/
Dparser.py103 method_name = None
105 method_name = parse_method
108 method_name = "_hook_construct"
110 method_name = "construct"
111 if method_name is not None:
112 if hasattr(obj, method_name):
113 method = getattr(obj, method_name)
130 method_name = "bprop"
131 if hasattr(obj, method_name):
132 method = getattr(obj, method_name)
[all …]
/third_party/grpc/src/core/ext/filters/client_channel/
Dservice_config.cc177 const std::string* method_name = nullptr; in ParseJsonMethodName() local
188 method_name = &it->second.string_value(); in ParseJsonMethodName()
194 if (method_name != nullptr) { in ParseJsonMethodName()
202 method_name == nullptr ? "" : *method_name); in ParseJsonMethodName()
/third_party/grpc/src/php/lib/Grpc/
DRpcServer.php107 $method_name = $method->getName();
108 $full_path = $base_path . "/" . ucfirst($method_name);
122 'method' => $method_name,
/third_party/boost/libs/math/test/
Dtest_classify.cpp23 const char* method_name(const boost::math::detail::native_tag&) in method_name() function
28 const char* method_name(const boost::math::detail::generic_tag<true>&) in method_name() function
33 const char* method_name(const boost::math::detail::generic_tag<false>&) in method_name() function
38 const char* method_name(const boost::math::detail::ieee_tag&) in method_name() function
43 const char* method_name(const boost::math::detail::ieee_copy_all_bits_tag&) in method_name() function
48 const char* method_name(const boost::math::detail::ieee_copy_leading_bits_tag&) in method_name() function
61 std::cout << "Evaluation method = " << method_name(method()) << std::endl; in test_classify()

123456