Home
last modified time | relevance | path

Searched refs:set_method (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/test/
Dtest_bdb.py365 set_method = getattr(self, 'set_' + set_type)
369 set_method()
372 set_method(self.frame)
379 set_method(self.frame, lineno)
391 set_method(*args)
393 set_method(*args)
395 set_method()
/third_party/cef/libcef_dll/ctocpp/
Drequest_ctocpp.cc98 if (CEF_MEMBER_MISSING(_struct, set_method)) in SetMethod()
109 _struct->set_method(_struct, method.GetStruct()); in SetMethod()
/third_party/cef/include/capi/
Dcef_request_capi.h89 void(CEF_CALLBACK* set_method)(struct _cef_request_t* self,
/third_party/cef/libcef_dll/cpptoc/
Drequest_cpptoc.cc414 GetStruct()->set_method = request_set_method; in CefRequestCppToC()
/third_party/libinput/src/
Dlibinput-private.h263 enum libinput_config_status (*set_method)(struct libinput_device *device, member
279 enum libinput_config_status (*set_method)(struct libinput_device *device, member
Devdev-mt-touchpad-buttons.c974 tp->buttons.config_method.set_method = tp_button_config_click_set_method; in tp_init_buttons()
Dlibinput.c4274 return device->config.click_method->set_method(device, method); in libinput_device_config_click_set_method()
4380 return device->config.scroll_method->set_method(device, method); in libinput_device_config_scroll_set_method()
Devdev.c878 device->scroll.config.set_method = evdev_scroll_set_method; in evdev_init_button_scroll()
Devdev-mt-touchpad.c3137 tp->scroll.config_method.set_method = tp_scroll_config_scroll_method_set_method; in tp_init_scroll()
/third_party/rust/crates/rust-openssl/openssl/
DCHANGELOG.md34 * Added `SslRef::set_method`, `SslRef::set_private_key_file`, `SslRef::set_private_key`, `SslRef::s…
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
Dmod.rs1433 assert!(ssl.set_method(SslMethod::tls()).is_ok()); in set_ssl_certificate_key_related_api()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/
Dmod.rs3142 pub fn set_method(&mut self, method: SslMethod) -> Result<(), ErrorStack> { in set_method() method