| /third_party/node/deps/openssl/openssl/include/openssl/ |
| H A D | macros.h | 39 * MSVC supports __declspec(deprecated) since MSVC 2003 (13.10), 40 * and __declspec(deprecated(message)) since MSVC 2005 (14.00) 44 __declspec(deprecated("Since OpenSSL " # since)) 46 __declspec(deprecated("Since OpenSSL " # since ";" message)) 48 # define OSSL_DEPRECATED(since) __declspec(deprecated) 49 # define OSSL_DEPRECATED_FOR(since, message) __declspec(deprecated) 58 __attribute__((deprecated("Since OpenSSL " # since))) 60 __attribute__((deprecated("Since OpenSSL " # since ";" message))) 62 # define OSSL_DEPRECATED(since) __attribute__((deprecated)) 63 # define OSSL_DEPRECATED_FOR(since, message) __attribute__((deprecated)) [all...] |
| /third_party/openssl/include/openssl/ |
| H A D | macros.h | 39 * MSVC supports __declspec(deprecated) since MSVC 2003 (13.10), 40 * and __declspec(deprecated(message)) since MSVC 2005 (14.00) 44 __declspec(deprecated("Since OpenSSL " # since)) 46 __declspec(deprecated("Since OpenSSL " # since ";" message)) 48 # define OSSL_DEPRECATED(since) __declspec(deprecated) 49 # define OSSL_DEPRECATED_FOR(since, message) __declspec(deprecated) 58 __attribute__((deprecated("Since OpenSSL " # since))) 60 __attribute__((deprecated("Since OpenSSL " # since ";" message))) 62 # define OSSL_DEPRECATED(since) __attribute__((deprecated)) 63 # define OSSL_DEPRECATED_FOR(since, message) __attribute__((deprecated)) [all...] |
| /third_party/rust/crates/libc/src/ |
| H A D | fixed_width_ints.rs | 3 //! These aliases are deprecated: use the Rust types instead. 5 #[deprecated(since = "0.2.55", note = "Use i8 instead.")] 7 #[deprecated(since = "0.2.55", note = "Use i16 instead.")] 9 #[deprecated(since = "0.2.55", note = "Use i32 instead.")] 11 #[deprecated(since = "0.2.55", note = "Use i64 instead.")] 13 #[deprecated(since = "0.2.55", note = "Use u8 instead.")] 15 #[deprecated(since = "0.2.55", note = "Use u16 instead.")] 17 #[deprecated(since = "0.2.55", note = "Use u32 instead.")] 19 #[deprecated(since = "0.2.55", note = "Use u64 instead.")]
|
| H A D | macros.rs | 75 #[allow(deprecated)] 79 #[allow(deprecated)] 81 #[allow(deprecated)] 114 #[allow(deprecated)] 116 #[allow(deprecated)] 300 #[deprecated( 304 #[allow(deprecated)] 315 #[deprecated( 319 #[allow(deprecated)]
|
| /third_party/python/Lib/importlib/resources/ |
| H A D | _legacy.py | 15 def deprecated(func): function 19 f"{func.__name__} is deprecated. Use files() instead. " 43 @deprecated 49 @deprecated 55 @deprecated 68 @deprecated 84 @deprecated 95 @deprecated 108 @deprecated
|
| /third_party/protobuf/php/src/Google/Protobuf/Internal/ |
| H A D | ServiceOptions.php | 19 * Is this service deprecated? 24 * Generated from protobuf field <code>optional bool deprecated = 33 [default = false];</code> 26 protected $deprecated = null; variable 40 * @type bool $deprecated 41 * Is this service deprecated? 55 * Is this service deprecated? 60 * Generated from protobuf field <code>optional bool deprecated = 33 [default = false];</code> 65 return isset($this->deprecated) ? $this->deprecated : false; 70 return isset($this->deprecated); 91 $this->deprecated = $var; global() variable [all...] |
| H A D | EnumOptions.php | 26 * Is this enum deprecated? 31 * Generated from protobuf field <code>optional bool deprecated = 3 [default = false];</code> 33 protected $deprecated = null; variable 50 * @type bool $deprecated 51 * Is this enum deprecated? 103 * Is this enum deprecated? 108 * Generated from protobuf field <code>optional bool deprecated = 3 [default = false];</code> 113 return isset($this->deprecated) ? $this->deprecated : false; 118 return isset($this->deprecated); 139 $this->deprecated = $var; global() variable [all...] |
| H A D | EnumValueOptions.php | 19 * Is this enum value deprecated? 24 * Generated from protobuf field <code>optional bool deprecated = 1 [default = false];</code> 26 protected $deprecated = null; variable 40 * @type bool $deprecated 41 * Is this enum value deprecated? 55 * Is this enum value deprecated? 60 * Generated from protobuf field <code>optional bool deprecated = 1 [default = false];</code> 65 return isset($this->deprecated) ? $this->deprecated : false; 70 return isset($this->deprecated); 91 $this->deprecated = $var; global() variable [all...] |
| H A D | MethodOptions.php | 19 * Is this method deprecated? 24 * Generated from protobuf field <code>optional bool deprecated = 33 [default = false];</code> 26 protected $deprecated = null; variable 44 * @type bool $deprecated 45 * Is this method deprecated? 60 * Is this method deprecated? 65 * Generated from protobuf field <code>optional bool deprecated = 33 [default = false];</code> 70 return isset($this->deprecated) ? $this->deprecated : false; 75 return isset($this->deprecated); 96 $this->deprecated = $var; global() variable [all...] |
| H A D | MessageOptions.php | 47 * Is this message deprecated? 52 * Generated from protobuf field <code>optional bool deprecated = 3 [default = false];</code> 54 protected $deprecated = null; variable 111 * @type bool $deprecated 112 * Is this message deprecated? 249 * Is this message deprecated? 254 * Generated from protobuf field <code>optional bool deprecated = 3 [default = false];</code> 259 return isset($this->deprecated) ? $this->deprecated : false; 264 return isset($this->deprecated); 285 $this->deprecated = $var; global() variable [all...] |
| H A D | FieldOptions.php | 82 * Is this field deprecated? 87 * Generated from protobuf field <code>optional bool deprecated = 3 [default = false];</code> 89 protected $deprecated = null; variable 156 * @type bool $deprecated 157 * Is this field deprecated? 395 * Is this field deprecated? 400 * Generated from protobuf field <code>optional bool deprecated = 3 [default = false];</code> 405 return isset($this->deprecated) ? $this->deprecated : false; 410 return isset($this->deprecated); 431 $this->deprecated = $var; global() variable [all...] |
| /third_party/rust/crates/nix/src/sys/ |
| H A D | uio.rs | 153 #[deprecated( 165 #[allow(deprecated)] 168 #[deprecated( 182 #[allow(deprecated)] 185 #[deprecated(since = "0.24.0", note = "Use `IoSlice::new` instead")] 197 #[allow(deprecated)] 200 #[deprecated(since = "0.24.0", note = "Use `IoSliceMut::new` instead")] 214 #[allow(deprecated)] 216 #[allow(deprecated)]
|
| /third_party/rust/crates/rust-openssl/openssl-sys/src/ |
| H A D | bio.rs | 36 #[deprecated(note = "use BIO_meth_set_write__fixed_rust instead")] 42 #[deprecated(note = "use BIO_meth_set_read__fixed_rust instead")] 48 #[deprecated(note = "use BIO_meth_set_puts__fixed_rust instead")] 54 #[deprecated(note = "use BIO_meth_set_ctrl__fixed_rust instead")] 60 #[deprecated(note = "use BIO_meth_set_create__fixed_rust instead")] 66 #[deprecated(note = "use BIO_meth_set_destroy__fixed_rust instead")]
|
| /third_party/rust/crates/io-lifetimes/src/ |
| H A D | lib.rs | 51 #[allow(deprecated)] 54 #[allow(deprecated)] 93 #[allow(deprecated)] 102 #[allow(deprecated)] 115 #[allow(deprecated)] 124 #[allow(deprecated)] 137 #[allow(deprecated)] 146 #[allow(deprecated)]
|
| H A D | traits.rs | 67 #[deprecated( in as_socket() 91 #[deprecated( 115 #[deprecated( 142 #[deprecated( 188 #[deprecated( 221 #[deprecated(
|
| /third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/ |
| H A D | descriptor.js | 30 * Group type is deprecated and not supported in proto3. However, Proto3 815 deprecated: false, 843 deprecated: isSet(object.deprecated) ? Boolean(object.deprecated) : false, 871 message.deprecated !== undefined && (obj.deprecated = message.deprecated); 893 deprecated: false, 905 deprecated [all...] |
| /third_party/eudev/export_include/ |
| H A D | libudev.h | 44 const char *format, va_list args)) __attribute__ ((deprecated)); 45 int udev_get_log_priority(struct udev *udev) __attribute__ ((deprecated)); 46 void udev_set_log_priority(struct udev *udev, int priority) __attribute__ ((deprecated)); 174 unsigned long long int udev_queue_get_kernel_seqnum(struct udev_queue *udev_queue) __attribute__ ((deprecated)); 175 unsigned long long int udev_queue_get_udev_seqnum(struct udev_queue *udev_queue) __attribute__ ((deprecated)); 178 int udev_queue_get_seqnum_is_finished(struct udev_queue *udev_queue, unsigned long long int seqnum) __attribute__ ((deprecated)); 180 unsigned long long int start, unsigned long long int end) __attribute__ ((deprecated)); 183 struct udev_list_entry *udev_queue_get_queued_list_entry(struct udev_queue *udev_queue) __attribute__ ((deprecated));
|
| /third_party/eudev/src/libudev/ |
| H A D | libudev.h | 44 const char *format, va_list args)) __attribute__ ((deprecated)); 45 int udev_get_log_priority(struct udev *udev) __attribute__ ((deprecated)); 46 void udev_set_log_priority(struct udev *udev, int priority) __attribute__ ((deprecated)); 174 unsigned long long int udev_queue_get_kernel_seqnum(struct udev_queue *udev_queue) __attribute__ ((deprecated)); 175 unsigned long long int udev_queue_get_udev_seqnum(struct udev_queue *udev_queue) __attribute__ ((deprecated)); 178 int udev_queue_get_seqnum_is_finished(struct udev_queue *udev_queue, unsigned long long int seqnum) __attribute__ ((deprecated)); 180 unsigned long long int start, unsigned long long int end) __attribute__ ((deprecated)); 183 struct udev_list_entry *udev_queue_get_queued_list_entry(struct udev_queue *udev_queue) __attribute__ ((deprecated));
|
| /third_party/selinux/libselinux/include/selinux/ |
| H A D | selinux.h | 19 __attribute__ ((deprecated)) 263 * These interfaces are deprecated. Use get_ordered_context_list() or 341 __attribute__ ((deprecated)) 481 __attribute__ ((deprecated("Use selabel_open with backend SELABEL_CTX_FILE"))) 492 __attribute__ ((deprecated("Use selabel_close"))) 510 __attribute__ ((deprecated("Use selabel_lookup instead"))) 607 __attribute__ ((deprecated)) 614 __attribute__ ((deprecated)) 646 __attribute__ ((deprecated("Use selinux_check_access"))) 652 __attribute__ ((deprecated("Us [all...] |
| /third_party/skia/third_party/externals/spirv-cross/ |
| H A D | spirv_cross_error_handling.hpp | 84 #define SPIRV_CROSS_DEPRECATED(reason) [[deprecated(reason)]] 86 #define SPIRV_CROSS_DEPRECATED(reason) __attribute__((deprecated)) 88 #define SPIRV_CROSS_DEPRECATED(reason) __declspec(deprecated(reason))
|
| /third_party/protobuf/objectivec/ |
| H A D | GPBBootstrap.h | 98 #define GPB_DEPRECATED __attribute__((deprecated)) 106 #define GPB_DEPRECATED_MSG(msg) __attribute__((deprecated(msg))) 108 #define GPB_DEPRECATED_MSG(msg) __attribute__((deprecated))
|
| /third_party/alsa-lib/include/ |
| H A D | pcm.h | 743 int snd_pcm_hw_params_supports_audio_wallclock_ts(const snd_pcm_hw_params_t *params); /* deprecated, use audio_ts_type */ 1382 const char *snd_pcm_start_mode_name(snd_pcm_start_t mode) __attribute__((deprecated)); 1383 const char *snd_pcm_xrun_mode_name(snd_pcm_xrun_t mode) __attribute__((deprecated)); 1384 int snd_pcm_sw_params_set_start_mode(snd_pcm_t *pcm, snd_pcm_sw_params_t *params, snd_pcm_start_t val) __attribute__((deprecated)); 1385 snd_pcm_start_t snd_pcm_sw_params_get_start_mode(const snd_pcm_sw_params_t *params) __attribute__((deprecated)); 1386 int snd_pcm_sw_params_set_xrun_mode(snd_pcm_t *pcm, snd_pcm_sw_params_t *params, snd_pcm_xrun_t val) __attribute__((deprecated)); 1387 snd_pcm_xrun_t snd_pcm_sw_params_get_xrun_mode(const snd_pcm_sw_params_t *params) __attribute__((deprecated)); 1389 int snd_pcm_sw_params_set_xfer_align(snd_pcm_t *pcm, snd_pcm_sw_params_t *params, snd_pcm_uframes_t val) __attribute__((deprecated)); 1390 int snd_pcm_sw_params_get_xfer_align(const snd_pcm_sw_params_t *params, snd_pcm_uframes_t *val) __attribute__((deprecated)); 1391 int snd_pcm_sw_params_set_sleep_min(snd_pcm_t *pcm, snd_pcm_sw_params_t *params, unsigned int val) __attribute__((deprecated)); [all...] |
| /third_party/node/lib/internal/ |
| H A D | util.js | 111 code, msg, deprecated, useEmitSync, 123 emitWarning(msg, 'DeprecationWarning', code, deprecated); 127 process.emitWarning(msg, 'DeprecationWarning', deprecated); 143 code, msg, deprecated, false, isPendingDeprecation, 145 function deprecated(...args) { 149 return deprecated; 168 code, msg, deprecated, useEmitSync, 171 function deprecated(...args) { 180 ObjectSetPrototypeOf(deprecated, fn); 185 deprecated 181 deprecated.prototype = fn.prototype; global() class [all...] |
| /third_party/skia/third_party/externals/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/ |
| H A D | json-forwards.h | 156 /// Indicates that the following function is deprecated. 157 #define JSONCPP_DEPRECATED(message) __declspec(deprecated(message)) 160 #define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message))) 163 #define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/ |
| H A D | json-forwards.h | 156 /// Indicates that the following function is deprecated. 157 #define JSONCPP_DEPRECATED(message) __declspec(deprecated(message)) 160 #define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message))) 163 #define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
|