Home
last modified time | relevance | path

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

123

/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/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()
Dstandard_method_codec_unittests.cc18 if (a.method_name() != b.method_name()) { in MethodCallsAreEqual()
Dstandard_codec.cc313 EncodableValue method_name = serializer.ReadValue(&stream); in DecodeMethodCallInternal() local
314 if (!method_name.IsString()) { in DecodeMethodCallInternal()
321 return std::make_unique<MethodCall<EncodableValue>>(method_name.StringValue(), in DecodeMethodCallInternal()
331 serializer.WriteValue(EncodableValue(method_call.method_name()), &stream); in EncodeMethodCallInternal()
/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/flutter/skia/third_party/externals/dawn/generator/
Ddawn_json_generator.py411 def as_cMethod(type_name, method_name): argument
412 assert(not type_name.native and not method_name.native)
413 return 'dawn' + type_name.CamelCase() + method_name.CamelCase()
415 def as_MethodSuffix(type_name, method_name): argument
416 assert(not type_name.native and not method_name.native)
417 return type_name.CamelCase() + method_name.CamelCase()
419 def as_cProc(type_name, method_name): argument
420 assert(not type_name.native and not method_name.native)
421 return 'Dawn' + 'Proc' + type_name.CamelCase() + method_name.CamelCase()
/third_party/python/Tools/peg_generator/pegen/
Dparser.py25 method_name = method.__name__
45 method_name = method.__name__
49 key = mark, method_name, args
82 method_name = method.__name__
86 key = mark, method_name, ()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.h157 char* method_name; member
182 char* method_name; member
/third_party/skia/third_party/externals/dawn/generator/
Ddawn_json_generator.py619 def as_MethodSuffix(type_name, method_name): argument
620 assert not type_name.native and not method_name.native
621 return type_name.CamelCase() + method_name.CamelCase()
678 def as_cMethod(type_name, method_name): argument
683 assert not method_name.native
684 c_method += method_name.CamelCase()
687 def as_cProc(type_name, method_name): argument
692 assert not method_name.native
693 c_proc += method_name.CamelCase()
/third_party/flutter/engine/flutter/lib/ui/
Ddart_runtime_hooks.cc76 Dart_Handle method_name = Dart_NewStringFromCString("_setupHooks"); in InitDartInternal() local
77 result = Dart_Invoke(builtin_library, method_name, 0, NULL); in InitDartInternal()
109 Dart_Handle method_name = in InitDartAsync() local
111 schedule_microtask = Dart_Invoke(isolate_lib, method_name, 0, NULL); in InitDartAsync()
/third_party/googletest/docs/reference/
Dmocking.md13 `MOCK_METHOD(`*`return_type`*`,`*`method_name`*`, (`*`args...`*`));` \
14 `MOCK_METHOD(`*`return_type`*`,`*`method_name`*`, (`*`args...`*`),
17 Defines a mock method *`method_name`* with arguments `(`*`args...`*`)` and
61 `EXPECT_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
64 method *`method_name`* of the object *`mock_object`* is called with arguments
70 correspond to each argument of the method *`method_name`*. The expectation will
71 apply only to calls of *`method_name`* whose arguments match all of the
80 EXPECT_CALL(mock_object, method_name(matchers...))
321 `ON_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
323 Defines what happens when the method *`method_name`* of the object
[all …]
/third_party/protobuf/python/
Dmox.py278 def __getattr__(self, method_name): argument
293 return self._CreateMockMethod(method_name)
295 def _CreateMockMethod(self, method_name): argument
306 return MockMethod(method_name, self._expected_calls_queue,
519 def __init__(self, method_name, call_queue, replay_mode): argument
533 self._name = method_name
/third_party/protobuf/ruby/compatibility_tests/v3.0.0/tests/
Drepeated_field_test.rb10 (Enumerable.instance_methods - TestMessage.new.repeated_string.methods).each do |method_name|
11 … assert m.repeated_string.respond_to?(method_name) == true, "does not respond to #{method_name}"
24 arr_methods.each do |method_name|
25 … assert m.repeated_string.respond_to?(method_name) == true, "does not respond to #{method_name}"
/third_party/protobuf/ruby/tests/
Drepeated_field_test.rb10 (Enumerable.instance_methods - TestMessage.new.repeated_string.methods).each do |method_name|
11 … assert m.repeated_string.respond_to?(method_name) == true, "does not respond to #{method_name}"
24 arr_methods.each do |method_name|
25 … assert m.repeated_string.respond_to?(method_name) == true, "does not respond to #{method_name}"
/third_party/flutter/skia/platform_tools/android/apps/arcore/src/main/cpp/
Djni_interface.cc23 #define JNI_METHOD(return_type, method_name) \ argument
25 Java_org_skia_arcore_JniInterface_##method_name
/third_party/protobuf/python/google/protobuf/
Dservice_reflection.py234 def _NonImplementedMethod(self, method_name, rpc_controller, callback): argument
242 rpc_controller.SetFailed('Method %s not implemented.' % method_name)
/third_party/pulseaudio/src/pulsecore/
Dprotocol-dbus.c203 pa_strbuf_printf(buf, " <method name=\"%s\">\n", method_handler->method_name); in update_introspection()
643 pa_xfree((char *) h->method_name); in method_handler_free()
666 h->method_name = pa_xstrdup(info->method_handlers[i].method_name); in create_method_handlers()
671 pa_hashmap_put(handlers, (char *) h->method_name, h); in create_method_handlers()
696 … pa_hashmap_put(signatures, (char *) handler->method_name, pa_strbuf_to_string_free(sig_buf)); in extract_method_signatures()
/third_party/lwip/src/netif/ppp/
Dccp.c225 static const char *method_name (ccp_options *, ccp_options *);
1388 static const char *method_name(ccp_options *opt, ccp_options *opt2) { in method_name() function
1469 ppp_notice("%s compression enabled", method_name(go, ho)); in ccp_up()
1471 ppp_strlcpy(method1, method_name(go, NULL), sizeof(method1)); in ccp_up()
1473 method1, method_name(ho, NULL)); in ccp_up()
1476 ppp_notice("%s receive compression enabled", method_name(go, NULL)); in ccp_up()
1478 ppp_notice("%s transmit compression enabled", method_name(ho, NULL)); in ccp_up()
/third_party/pulseaudio/src/modules/dbus/
Diface-client.c91 .method_name = "Kill",
96 .method_name = "UpdateProperties",
101 .method_name = "RemoveProperties",
Diface-sample.c100 .method_name = "Play",
105 .method_name = "PlayToSink",
110 .method_name = "Remove",
/third_party/python/Lib/idlelib/
Dsqueezer.py194 for label, method_name in self.rmenu_specs:
195 rmenu.add_command(label=label, command=getattr(self, method_name))
/third_party/flutter/engine/flutter/shell/platform/glfw/
Dplatform_handler.cc43 const std::string& method = method_call.method_name(); in HandleMethodCall()

123