Home
last modified time | relevance | path

Searched refs:since (Results 1 - 25 of 330) sorted by relevance

12345678910>>...14

/third_party/rust/crates/rustix/src/net/
H A Dip.rs36 #[cfg_attr(staged_api, stable(feature = "ip_addr", since = "1.7.0"))]
40 #[cfg_attr(staged_api, stable(feature = "ip_addr", since = "1.7.0"))]
41 V4(#[cfg_attr(staged_api, stable(feature = "ip_addr", since = "1.7.0"))] Ipv4Addr),
43 #[cfg_attr(staged_api, stable(feature = "ip_addr", since = "1.7.0"))]
44 V6(#[cfg_attr(staged_api, stable(feature = "ip_addr", since = "1.7.0"))] Ipv6Addr),
79 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
161 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
237 rustc_const_stable(feature = "const_ip_50", since = "1.50.0")
239 #[cfg_attr(staged_api, stable(feature = "ip_shared", since = "1.12.0"))]
264 rustc_const_stable(feature = "const_ip_50", since
[all...]
H A Daddr.rs39 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
42 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
43 V4(#[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))] SocketAddrV4),
45 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
46 V6(#[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))] SocketAddrV6),
75 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
108 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
130 #[cfg_attr(staged_api, stable(feature = "ip_addr", since = "1.7.0"))]
154 #[cfg_attr(staged_api, stable(feature = "ip_addr", since = "1.7.0"))]
177 #[cfg_attr(staged_api, stable(feature = "sockaddr_setters", since
[all...]
/third_party/node/deps/openssl/openssl/include/openssl/
H A Dmacros.h39 * MSVC supports __declspec(deprecated) since MSVC 2003 (13.10),
40 * and __declspec(deprecated(message)) since MSVC 2005 (14.00)
43 # define OSSL_DEPRECATED(since) \
44 __declspec(deprecated("Since OpenSSL " # since))
45 # define OSSL_DEPRECATED_FOR(since, message) \
46 __declspec(deprecated("Since OpenSSL " # since ";" message))
48 # define OSSL_DEPRECATED(since) __declspec(deprecated)
49 # define OSSL_DEPRECATED_FOR(since, message) __declspec(deprecated)
57 # define OSSL_DEPRECATED(since) \
58 __attribute__((deprecated("Since OpenSSL " # since)))
[all...]
/third_party/openssl/include/openssl/
H A Dmacros.h39 * MSVC supports __declspec(deprecated) since MSVC 2003 (13.10),
40 * and __declspec(deprecated(message)) since MSVC 2005 (14.00)
43 # define OSSL_DEPRECATED(since) \
44 __declspec(deprecated("Since OpenSSL " # since))
45 # define OSSL_DEPRECATED_FOR(since, message) \
46 __declspec(deprecated("Since OpenSSL " # since ";" message))
48 # define OSSL_DEPRECATED(since) __declspec(deprecated)
49 # define OSSL_DEPRECATED_FOR(since, message) __declspec(deprecated)
57 # define OSSL_DEPRECATED(since) \
58 __attribute__((deprecated("Since OpenSSL " # since)))
[all...]
/third_party/rust/crates/rustix/src/io/fd/
H A Draw.rs7 #![cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
13 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
21 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
50 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
56 #[cfg_attr(staged_api, stable(feature = "from_raw_os", since = "1.1.0"))]
93 #[cfg_attr(staged_api, stable(feature = "from_raw_os", since = "1.1.0"))]
99 #[cfg_attr(staged_api, stable(feature = "into_raw_os", since = "1.4.0"))]
126 #[cfg_attr(staged_api, stable(feature = "into_raw_os", since = "1.4.0"))]
132 stable(feature = "raw_fd_reflexive_traits", since = "1.48.0")
142 stable(feature = "raw_fd_reflexive_traits", since
[all...]
/third_party/rust/crates/rustix/src/io/
H A Dseek_from.rs9 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
12 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
13 Start(#[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))] u64),
20 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
21 End(#[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))] i64),
28 #[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))]
29 Current(#[cfg_attr(staged_api, stable(feature = "rust1", since = "1.0.0"))] i64),
/third_party/rust/crates/libc/src/
H A Dfixed_width_ints.rs5 #[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.")]
/third_party/rust/crates/io-lifetimes/src/
H A Dtraits.rs68 since = "1.0.0", in as_socket()
92 since = "1.0.0",
116 since = "1.0.0",
143 since = "1.0.0",
189 since = "1.0.0",
222 since = "1.0.0",
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs2504 // assignment in `PeekMut`'s `DerefMut` implementation since in bench_peek_mut_deref_mut()
3399 // `Filter` is never `TrustedLen` since we don't in shared_from_iter_normal()
8289 // which is incorrect for fat pointers since `<*mut T>::is_null` only looks at the data component.
9152 // `Filter` is never `TrustedLen` since we don't in shared_from_iter_normal()
13733 // since it's a fuzzy test, run several tries. in panic_safe()
13915 #[stable(feature = "rust1", since = "1.0.0")]
13973 /// since `fmt::Write for String` never returns an error itself.
13983 #[stable(feature = "rust1", since = "1.0.0")]
14003 #![stable(feature = "alloc_module", since = "1.28.0")]
14013 #[stable(feature = "alloc_module", since
[all...]
/third_party/mbedtls/scripts/
H A Dcode_style.py38 We don't reformat generated files, since the result might be different
61 def get_src_files(since: Optional[str]) -> List[str]:
65 The optional argument since is a commit, indicating to only list files
66 that have changed since that commit. Without this argument, list all
78 if since:
79 # get all files changed in commits since the starting point
80 cmd = ["git", "log", since + "..HEAD", "--name-only", "--pretty=", "--"] + src_files
192 parser.add_argument('-s', '--since', metavar='COMMIT', const='development', nargs='?',
193 help=('only check files modified since the specified commit'
194 ' (e.g. --since
[all...]
/third_party/rust/crates/nix/src/sys/
H A Duio.rs154 since = "0.24.0",
169 since = "0.24.0",
185 #[deprecated(since = "0.24.0", note = "Use `IoSlice::new` instead")]
200 #[deprecated(since = "0.24.0", note = "Use `IoSliceMut::new` instead")]
/third_party/json/include/nlohmann/thirdparty/hedley/
H A Dhedley.hpp1028 #define JSON_HEDLEY_DEPRECATED(since) __declspec(deprecated("Since " # since))
1029 #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __declspec(deprecated("Since " #since "; use " #replacement))
1043 #define JSON_HEDLEY_DEPRECATED(since) __attribute__((__deprecated__("Since " #since)))
1044 #define JSON_HEDLEY_DEPRECATED_FOR(since, replacement) __attribute__((__deprecated__("Since " #since "; use " #replacement)))
1046 #define JSON_HEDLEY_DEPRECATED(since) JSON_HEDLEY_DIAGNOSTIC_DISABLE_CPP98_COMPAT_WRAP_([[deprecated("Since " #since)]])
[all...]
/third_party/rust/crates/minimal-lexical/src/
H A Dparse.rs45 // Can't overflow, since must be <= 19. in parse_number_fast()
103 // This can't wrap, since we have at most 20 digits. in parse_number()
/third_party/ffmpeg/libavcodec/arm/
H A Dvp9lpf_16bpp_neon.S432 @ matter for the flat8out part below, since we only update those pixels
728 @ outermost 2 pixels since they aren't changed.
972 @ we can't take advantage of q registers for the transpose, since
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
H A Dmod.rs889 /// busy time unaccounted for since this time
1945 #[deprecated(since = "0.2.64", note = "Not stable across OS versions")]
2043 since = "0.2.72",
2457 since = "0.2.54",
2471 #[deprecated(since = "0.2.54", note = "Use the portable `IFF_OACTIVE` instead")]
2722 since = "0.2.72",
2964 #[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")]
2967 #[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")]
2970 #[deprecated(since = "0.2.54", note = "Removed in FreeBSD 11")]
2973 #[deprecated(since
[all...]
/third_party/icu/icu4j/samples/src/com/ibm/icu/samples/util/timezone/
H A DBasicTimeZoneExample.java89 System.out.println("### Extracts time zone rules used by America/Los_Angeles since year 2005"); in timeZoneRulesExample()
93 long since = 1104537600000L; // 2005-01-01 0:00 UTC in timeZoneRulesExample()
94 TimeZoneRule[] rules = btz.getTimeZoneRules(since); in timeZoneRulesExample()
104 System.out.println("### Compare America/New_York and America/Detroit since year 1970"); in equivalentTransitionsExample()
112 // Compare these time zones every 10 years since year 1970 up to year 2009 in equivalentTransitionsExample()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/
H A Derrno.rs4 #[deprecated(since = "0.2.77", note = "Use `__errno_location()` instead")]
/third_party/rust/crates/clap/tests/
H A Dderive_ui.rs9 #[rustversion::attr(any(not(stable), before(1.64), since(1.65)), ignore)] // MSRV
/third_party/rust/crates/clap/src/builder/
H A Darg.rs1103 deprecated(since = "4.0.0", note = "Replaced with `Arg::num_args`")
1463 deprecated(since = "4.0.0", note = "Replaced with `Arg::value_delimiter`")
1660 deprecated(since = "4.0.0", note = "Replaced with `Arg::default_value`")
1683 deprecated(since = "4.0.0", note = "Replaced with `Arg::default_values`")
1990 deprecated(since = "4.0.0", note = "Replaced with `Arg::env`")
2768 deprecated(since = "4.0.0", note = "Replaced with `Arg::default_value_if`")
2881 deprecated(since = "4.0.0", note = "Replaced with `Arg::default_value_ifs`")
3506 deprecated(since = "4.0.0", note = "Replaced with `Arg::requires_ifs`")
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/crypto/bn/
H A Drsaz-avx512.s26 # "GNU" encoded with .byte, since .asciz isn't supported
/third_party/node/deps/openssl/config/archs/linux-x86_64/asm_avx2/crypto/bn/
H A Drsaz-avx512.s26 # "GNU" encoded with .byte, since .asciz isn't supported
/third_party/node/deps/openssl/config/archs/solaris64-x86_64-gcc/asm_avx2/crypto/bn/
H A Drsaz-avx512.s26 # "GNU" encoded with .byte, since .asciz isn't supported
/third_party/curl/tests/
H A Dtest1222.pl169 while($_ =~ /(?:deprecated|obsoleted?)\b\s*(?:in\b|since\b)?\s*(?:version\b|curl\b|libcurl\b)?\s*(\d[0-9.]*\d)?\b\s*(.*)$/i) {
212 while($_ =~ /(?:deprecated|obsoleted?)\b\s*(?:in\b|since\b)?\s*(?:version\b|curl\b|libcurl\b)?\s*(\d[0-9.]*\d)?\b\s*(.*)$/i) {
/third_party/rust/crates/log/tests/
H A Dmacros.rs164 #[rustversion::since(1.58)] in implicit_named_args()
193 #[rustversion::since(1.58)] in kv_implicit_named_args()
/third_party/mbedtls/tests/scripts/
H A Drun-metatests.sh9 Expected output: a lot of scary-looking error messages, since each

Completed in 54 milliseconds

12345678910>>...14