/third_party/python/Lib/logging/ |
H A D | handlers.py | 976 ident = '' # prepended to all messages variable in SysLogHandler 988 if self.ident: 989 msg = self.ident + msg
|
/third_party/rust/crates/syn/src/ |
H A D | expr.rs | 748 fn from(ident: Ident) -> Member { in from() 749 Member::Named(ident) in from() 1436 // <atom> . <ident> (..<args>) ... 1437 // <atom> . <ident> ... 2253 $expr_type:ty, $variant:ident, $msg:expr, 2631 } else if let Member::Named(ident) = &member { in parse() 2635 path: Path::from(ident.clone()), in parse() 3490 Member::Named(ident) => ident.to_tokens(tokens), in to_tokens()
|
H A D | ty.rs | 814 last_lifetime_span = Some(lifetime.ident.span()); in parse_bounds() 854 last_lifetime_span = Some(lifetime.ident.span());
|
/third_party/rust/crates/bindgen/bindgen/ |
H A D | lib.rs | 43 ($m:ident, $doc_mod_name:ident) => { 2266 ($($field:ident $(: $value:expr)?,)* --default-fields-- $($default_field:ident,)*) => { in default()
|
/test/testfwk/xdevice/plugins/devicetest/core/ |
H A D | variables.py | 489 return threading.current_thread().ident
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd13/ |
H A D | mod.rs | 24 pub ident: ::uintptr_t,
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd14/ |
H A D | mod.rs | 24 pub ident: ::uintptr_t,
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd12/ |
H A D | mod.rs | 21 pub ident: ::uintptr_t,
|
/third_party/python/Lib/ |
H A D | selectors.py | 565 fd = kev.ident
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/intrinsic-gen/parser/ |
H A D | parser.go | 269 func (p *parser) ident(use string) string {
|
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd11/ |
H A D | mod.rs | 12 pub ident: ::uintptr_t,
|
/third_party/rust/crates/nix/src/sys/ |
H A D | aio.rs | 390 ($func:ident) => {
|
/third_party/rust/crates/serde/serde/src/de/ |
H A D | mod.rs | 141 (Error: Sized $(+ $($supertrait:ident)::+)*) => {
|
/third_party/node/deps/openssl/openssl/crypto/sha/asm/ |
H A D | sha512-ia64.pl | 123 .ident \"$output, version 2.0\" 124 .ident \"IA-64 ISA artwork by Andy Polyakov <appro\@openssl.org>\"
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_futures.py | 482 res, ident = self.loop.run_until_complete(f2) 485 self.assertNotEqual(ident, threading.get_ident())
|
/third_party/openssl/crypto/sha/asm/ |
H A D | sha512-ia64.pl | 123 .ident \"$output, version 2.0\" 124 .ident \"IA-64 ISA artwork by Andy Polyakov <appro\@openssl.org>\"
|
/third_party/rust/crates/nix/test/ |
H A D | test_unistd.rs | 304 ($test_name:ident, $syscall:ident, $exe: expr $(, $pathname:expr, $flags:expr)*) => (
|
/third_party/rust/crates/nix/src/sys/socket/ |
H A D | addr.rs | 701 ($($num:ident),*) => { 707 ($slf:ident, $($first:expr, $second:expr),*) => { 1652 $fname:ident, 1653 $fname_mut:ident, 1657 $field:ident) => {
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | bn.rs | 1249 ($t:ident, $m:ident) => {
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 272 ($s:ident, $code:expr, $name:ident, $str:expr, $iters:expr) => { 287 ($name:ident, $s:ident, $code:expr) => { 290 ($name:ident, $s:ident, $code:expr, $iters:expr) => { 963 ($($fname:ident, $type:ty, $count:expr, $init:expr);*) => { 1304 ($name: ident, $n: expr, $map: ident) => { 1329 ($name: ident, [all...] |
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | tests.rs | 415 ($function:ident, $header:expr) => {
|
/third_party/rust/crates/libc/src/unix/bsd/apple/ |
H A D | mod.rs | 406 pub ident: u64, 1034 pub ident: ::uintptr_t, 1386 self.ident == other.ident in eq() 1397 let ident = self.ident; in fmt() 1404 .field("ident", &ident) in fmt() 1415 let ident = self.ident; in hash() [all...] |
/third_party/rust/crates/memchr/bench/src/memchr/ |
H A D | mod.rs | 777 ($name:expr, $kind:ident) => { in define_memchr_input1() 801 ($name:expr, $kind:ident) => { in define_memchr_input2() 825 ($name:expr, $kind:ident) => { in define_memchr_input3()
|
/third_party/python/Lib/test/ |
H A D | test_subprocess.py | 3067 ident = id(p) 3077 self.assertIn(ident, [id(o) for o in subprocess._active]) 3092 ident = id(p) 3104 self.assertIn(ident, [id(o) for o in subprocess._active]) 3120 self.assertNotIn(ident, [id(o) for o in subprocess._active])
|
H A D | test_concurrent_futures.py | 966 def log_n_wait(ident): 967 log.append(f"{ident=} started") 971 log.append(f"{ident=} stopped") 975 fut = pool.submit(log_n_wait, ident="first") 985 # ident='second' is cancelled as a result of raising a TimeoutError 986 # ident='third' is cancelled because it remained in the collection of futures 987 self.assertListEqual(log, ["ident='first' started", "ident='first' stopped"])
|