| /third_party/rust/crates/tracing/tracing-core/tests/common/ |
| D | mod.rs | 8 fn new_span(&self, _: &span::Attributes<'_>) -> span::Id { in new_span() 11 fn record(&self, _: &span::Id, _: &span::Record<'_>) {} in record() argument 12 fn record_follows_from(&self, _: &span::Id, _: &span::Id) {} in record_follows_from() 14 fn enter(&self, _: &span::Id) {} in enter() 15 fn exit(&self, _: &span::Id) {} in exit() 22 fn new_span(&self, _: &span::Attributes<'_>) -> span::Id { in new_span() 25 fn record(&self, _: &span::Id, _: &span::Record<'_>) {} in record() argument 26 fn record_follows_from(&self, _: &span::Id, _: &span::Id) {} in record_follows_from() 28 fn enter(&self, _: &span::Id) {} in enter() 29 fn exit(&self, _: &span::Id) {} in exit()
|
| /third_party/rust/crates/clap/src/util/ |
| D | id.rs | 9 pub struct Id(Str); struct 11 impl Id { implementation 30 impl From<&'_ Id> for Id { implementation 36 impl From<Str> for Id { implementation 42 impl From<&'_ Str> for Id { implementation 49 impl From<std::string::String> for Id { implementation 56 impl From<&'_ std::string::String> for Id { implementation 62 impl From<&'static str> for Id { implementation 68 impl From<&'_ &'static str> for Id { implementation 86 impl std::fmt::Display for Id { implementation [all …]
|
| /third_party/rust/crates/tracing/tracing-core/src/ |
| D | subscriber.rs | 258 fn new_span(&self, span: &span::Attributes<'_>) -> span::Id; in new_span() 298 fn record(&self, span: &span::Id, values: &span::Record<'_>); in record() 318 fn record_follows_from(&self, span: &span::Id, follows: &span::Id); in record_follows_from() 359 fn enter(&self, span: &span::Id); in enter() 371 fn exit(&self, span: &span::Id); in exit() 393 fn clone_span(&self, id: &span::Id) -> span::Id { in clone_span() 407 fn drop_span(&self, _id: span::Id) {} in drop_span() 683 fn new_span(&self, _: &span::Attributes<'_>) -> span::Id { in new_span() 689 fn record(&self, _span: &span::Id, _values: &span::Record<'_>) {} in record() 691 fn record_follows_from(&self, _span: &span::Id, _follows: &span::Id) {} in record_follows_from() [all …]
|
| D | dispatcher.rs | 532 pub fn new_span(&self, span: &span::Attributes<'_>) -> span::Id { in new_span() 544 pub fn record(&self, span: &span::Id, values: &span::Record<'_>) { in record() 557 pub fn record_follows_from(&self, span: &span::Id, follows: &span::Id) { in record_follows_from() 597 pub fn enter(&self, span: &span::Id) { in enter() 608 pub fn exit(&self, span: &span::Id) { in exit() 627 pub fn clone_span(&self, id: &span::Id) -> span::Id { in clone_span() 655 pub fn drop_span(&self, id: span::Id) { in drop_span() 897 fn new_span(&self, _: &span::Attributes<'_>) -> span::Id { in events_dont_infinite_loop() 901 fn record(&self, _: &span::Id, _: &span::Record<'_>) {} in events_dont_infinite_loop() argument 903 fn record_follows_from(&self, _: &span::Id, _: &span::Id) {} in events_dont_infinite_loop() [all …]
|
| D | span.rs | 16 pub struct Id(NonZeroU64); struct 60 impl Id { impl 129 parent: Id, in child_of() 171 pub fn parent(&self) -> Option<&Id> { in parent() 252 pub fn new(id: Id, metadata: &'static Metadata<'static>) -> Self { in new() 292 pub fn into_inner(self) -> Option<(Id, &'static Metadata<'static>)> { in into_inner() 300 pub fn id(&self) -> Option<&Id> { in id()
|
| /third_party/rust/crates/tracing/tracing/tests/ |
| D | register_callsite_deadlock.rs | 22 fn new_span(&self, _: &span::Attributes<'_>) -> span::Id { in register_callsite_doesnt_deadlock() 25 fn record(&self, _: &span::Id, _: &span::Record<'_>) {} in register_callsite_doesnt_deadlock() argument 26 fn record_follows_from(&self, _: &span::Id, _: &span::Id) {} in register_callsite_doesnt_deadlock() 28 fn enter(&self, _: &span::Id) {} in register_callsite_doesnt_deadlock() 29 fn exit(&self, _: &span::Id) {} in register_callsite_doesnt_deadlock()
|
| D | subscriber.rs | 36 fn new_span(&self, _: &Attributes<'_>) -> Id { in event_macros_dont_infinite_loop() 40 fn record(&self, _: &Id, _: &Record<'_>) {} in event_macros_dont_infinite_loop() argument 42 fn record_follows_from(&self, _: &Id, _: &Id) {} in event_macros_dont_infinite_loop() 49 fn enter(&self, _: &Id) {} in event_macros_dont_infinite_loop() 51 fn exit(&self, _: &Id) {} in event_macros_dont_infinite_loop()
|
| /third_party/rust/crates/tracing/tracing/test-log-support/tests/ |
| D | log_with_trace.rs | 10 fn new_span(&self, _: &tracing::span::Attributes) -> tracing::span::Id { in new_span() 15 fn record(&self, _: &tracing::span::Id, _: &tracing::span::Record) {} in record() 16 fn record_follows_from(&self, _: &tracing::span::Id, _: &tracing::span::Id) {} in record_follows_from() 18 fn enter(&self, _: &tracing::span::Id) {} in enter() 19 fn exit(&self, _: &tracing::span::Id) {} in exit()
|
| /third_party/rust/crates/clap/src/parser/ |
| D | arg_matcher.rs | 47 pub(crate) fn propagate_globals(&mut self, global_arg_vec: &[Id]) { in propagate_globals() 58 global_arg_vec: &[Id], in fill_in_global_values() 59 vals_map: &mut FlatMap<Id, MatchedArg>, in fill_in_global_values() 112 pub(crate) fn arg_ids(&self) -> std::slice::Iter<'_, Id> { in arg_ids() argument 116 pub(crate) fn args(&self) -> crate::util::flat_map::Iter<'_, Id, MatchedArg> { in args() argument 120 pub(crate) fn entry(&mut self, arg: Id) -> crate::util::Entry<Id, MatchedArg> { in entry() 132 pub(crate) fn check_explicit(&self, arg: &Id, predicate: &ArgPredicate) -> bool { in check_explicit() 148 pub(crate) fn start_custom_group(&mut self, id: Id, source: ValueSource) { in start_custom_group() 175 pub(crate) fn add_val_to(&mut self, arg: &Id, val: AnyValue, raw_val: OsString) { in add_val_to() 180 pub(crate) fn add_index_to(&mut self, arg: &Id, idx: usize) { in add_index_to() [all …]
|
| D | validator.rs | 154 name: &Id, in build_conflict_err() 155 conflict_ids: &[Id], in build_conflict_err() 194 conflicting_keys: &[Id], in build_conflict_err_usage() 400 raw_req_args: Vec<Id>, in missing_required_error() 482 fn gather_conflicts(&self, cmd: &Command, arg_id: &Id) -> Vec<Id> { in gather_conflicts() 511 fn get_direct_conflicts(&self, arg_id: &Id) -> Option<&[Id]> { in get_direct_conflicts() 516 fn gather_direct_conflicts(cmd: &Command, id: &Id) -> Vec<Id> { in gather_direct_conflicts() 532 fn gather_arg_direct_conflicts(cmd: &Command, arg: &Arg) -> Vec<Id> { in gather_arg_direct_conflicts() 552 fn gather_group_direct_conflicts(group: &ArgGroup) -> Vec<Id> { in gather_group_direct_conflicts()
|
| /third_party/rust/crates/tracing/tracing/benches/ |
| D | shared.rs | 93 fn new_span(&self, span: &span::Attributes<'_>) -> Id { in new_span() 99 fn record(&self, _span: &Id, values: &span::Record<'_>) { in record() 109 fn record_follows_from(&self, span: &Id, follows: &Id) { in record_follows_from() 118 fn enter(&self, span: &Id) { in enter() 122 fn exit(&self, span: &Id) { in exit() 131 fn new_span(&self, span: &span::Attributes<'_>) -> Id { in new_span() 140 fn record(&self, span: &Id, values: &span::Record<'_>) { in record() 144 fn record_follows_from(&self, span: &Id, follows: &Id) { in record_follows_from() 153 fn enter(&self, span: &Id) { in enter() 157 fn exit(&self, span: &Id) { in exit()
|
| /third_party/rust/crates/tracing/examples/examples/ |
| D | serde-yak-shave.rs | 31 fn new_span(&self, attrs: &Attributes<'_>) -> Id { in new_span() 43 fn record(&self, span: &Id, values: &Record<'_>) { in record() 52 fn record_follows_from(&self, span: &Id, follows: &Id) { in record_follows_from() 68 fn enter(&self, span: &Id) { in enter() 75 fn exit(&self, span: &Id) { in exit()
|
| D | counters.rs | 79 fn new_span(&self, new_span: &span::Attributes<'_>) -> Id { in new_span() method 85 fn record_follows_from(&self, _span: &Id, _follows: &Id) { in record_follows_from() 89 fn record(&self, _: &Id, values: &span::Record<'_>) { in record() argument 101 fn enter(&self, _span: &Id) {} in enter() 102 fn exit(&self, _span: &Id) {} in exit()
|
| /third_party/rust/crates/tracing/tracing-subscriber/src/layer/ |
| D | layered.rs | 125 fn new_span(&self, span: &span::Attributes<'_>) -> span::Id { in new_span() 131 fn record(&self, span: &span::Id, values: &span::Record<'_>) { in record() 136 fn record_follows_from(&self, span: &span::Id, follows: &span::Id) { in record_follows_from() 156 fn enter(&self, span: &span::Id) { in enter() 161 fn exit(&self, span: &span::Id) { in exit() 166 fn clone_span(&self, old: &span::Id) -> span::Id { in clone_span() 175 fn drop_span(&self, id: span::Id) { in drop_span() 282 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() 288 fn on_record(&self, span: &span::Id, values: &span::Record<'_>, ctx: Context<'_, S>) { in on_record() 294 fn on_follows_from(&self, span: &span::Id, follows: &span::Id, ctx: Context<'_, S>) { in on_follows_from() [all …]
|
| D | mod.rs | 857 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() 874 fn on_record(&self, _span: &span::Id, _values: &span::Record<'_>, _ctx: Context<'_, S>) {} in on_record() 881 fn on_follows_from(&self, _span: &span::Id, _follows: &span::Id, _ctx: Context<'_, S>) {} in on_follows_from() 912 fn on_enter(&self, _id: &span::Id, _ctx: Context<'_, S>) {} in on_enter() 915 fn on_exit(&self, _id: &span::Id, _ctx: Context<'_, S>) {} in on_exit() 918 fn on_close(&self, _id: span::Id, _ctx: Context<'_, S>) {} in on_close() 922 fn on_id_change(&self, _old: &span::Id, _new: &span::Id, _ctx: Context<'_, S>) {} in on_id_change() 1553 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() 1588 fn on_record(&self, span: &span::Id, values: &span::Record<'_>, ctx: Context<'_, S>) { in on_record() 1595 fn on_follows_from(&self, span: &span::Id, follows: &span::Id, ctx: Context<'_, S>) { in on_follows_from() [all …]
|
| /third_party/rust/crates/tracing/tracing/test_static_max_level_features/tests/ |
| D | test.rs | 26 fn new_span(&self, span: &Attributes) -> Id { in new_span() 31 fn record(&self, _span: &Id, _values: &Record) {} in record() 33 fn record_follows_from(&self, _span: &Id, _follows: &Id) {} in record_follows_from() 39 fn enter(&self, _span: &Id) {} in enter() 41 fn exit(&self, _span: &Id) {} in exit()
|
| /third_party/rust/crates/cxx/tests/ui/ |
| D | raw_ident_namespace.rs | 7 type Id = type_id!("org::r#box::implementation::QuotedRaw"); typedef 15 type Id = type_id!("org::box::implementation::QuotedKeyword"); typedef 23 type Id = type_id!(org::r#box::implementation::UnquotedRaw); typedef 31 type Id = type_id!(org::box::implementation::UnquotedKeyword); typedef
|
| /third_party/rust/crates/tracing/tracing-log/tests/ |
| D | log_tracer.rs | 33 fn new_span(&self, _span: &Attributes<'_>) -> span::Id { in new_span() 37 fn record(&self, _span: &span::Id, _values: &Record<'_>) {} in record() 39 fn record_follows_from(&self, _span: &span::Id, _follows: &span::Id) {} in record_follows_from() 56 fn enter(&self, _span: &span::Id) {} in enter() 58 fn exit(&self, _span: &span::Id) {} in exit()
|
| /third_party/rust/crates/tracing/tracing-subscriber/src/ |
| D | reload.rs | 138 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: layer::Context<'_, S>) { in on_new_span() 143 fn on_record(&self, span: &span::Id, values: &span::Record<'_>, ctx: layer::Context<'_, S>) { in on_record() 148 fn on_follows_from(&self, span: &span::Id, follows: &span::Id, ctx: layer::Context<'_, S>) { in on_follows_from() 163 fn on_enter(&self, id: &span::Id, ctx: layer::Context<'_, S>) { in on_enter() 168 fn on_exit(&self, id: &span::Id, ctx: layer::Context<'_, S>) { in on_exit() 173 fn on_close(&self, id: span::Id, ctx: layer::Context<'_, S>) { in on_close() 178 fn on_id_change(&self, old: &span::Id, new: &span::Id, ctx: layer::Context<'_, S>) { in on_id_change() 227 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: layer::Context<'_, S>) { in on_new_span() 232 fn on_record(&self, span: &span::Id, values: &span::Record<'_>, ctx: layer::Context<'_, S>) { in on_record() 237 fn on_enter(&self, id: &span::Id, ctx: layer::Context<'_, S>) { in on_enter() [all …]
|
| /third_party/rust/crates/tracing/tracing-subscriber/src/filter/layer_filters/ |
| D | combinator.rs | 146 fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) { in on_new_span() 152 fn on_record(&self, id: &Id, values: &Record<'_>, ctx: Context<'_, S>) { in on_record() 158 fn on_enter(&self, id: &Id, ctx: Context<'_, S>) { in on_enter() 164 fn on_exit(&self, id: &Id, ctx: Context<'_, S>) { in on_exit() 170 fn on_close(&self, id: Id, ctx: Context<'_, S>) { in on_close() 338 fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>) { in on_new_span() 344 fn on_record(&self, id: &Id, values: &Record<'_>, ctx: Context<'_, S>) { in on_record() 350 fn on_enter(&self, id: &Id, ctx: Context<'_, S>) { in on_enter() 356 fn on_exit(&self, id: &Id, ctx: Context<'_, S>) { in on_exit() 362 fn on_close(&self, id: Id, ctx: Context<'_, S>) { in on_close() [all …]
|
| /third_party/rust/crates/tracing/tracing-subscriber/src/filter/env/ |
| D | mod.rs | 548 pub fn on_new_span<S>(&self, attrs: &span::Attributes<'_>, id: &span::Id, _: Context<'_, S>) { in on_new_span() 561 pub fn on_enter<S>(&self, id: &span::Id, _: Context<'_, S>) { in on_enter() 575 pub fn on_exit<S>(&self, id: &span::Id, _: Context<'_, S>) { in on_exit() 586 pub fn on_close<S>(&self, id: span::Id, _: Context<'_, S>) { in on_close() 602 pub fn on_record<S>(&self, id: &span::Id, values: &span::Record<'_>, _: Context<'_, S>) { in on_record() 659 fn on_new_span(&self, attrs: &span::Attributes<'_>, id: &span::Id, ctx: Context<'_, S>) { in on_new_span() 664 fn on_record(&self, id: &span::Id, values: &span::Record<'_>, ctx: Context<'_, S>) { in on_record() 669 fn on_enter(&self, id: &span::Id, ctx: Context<'_, S>) { in on_enter() 674 fn on_exit(&self, id: &span::Id, ctx: Context<'_, S>) { in on_exit() 679 fn on_close(&self, id: span::Id, ctx: Context<'_, S>) { in on_close() [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
| D | RemoteObjectLayer.h | 137 RemoteSymbolId Id) in RemoteSymbolMaterializer() 162 RemoteSymbolId Id; variable 185 Error badRemoteSymbolIdError(RemoteSymbolId Id) { in badRemoteSymbolIdError() 197 auto Id = SymbolIdMgr.getNext(); in jitSymbolToRemote() local 230 void releaseRemoteSymbol(RemoteSymbolId Id) { in releaseRemoteSymbol() 237 Expected<JITTargetAddress> materializeRemoteSymbol(RemoteSymbolId Id) { in materializeRemoteSymbol() 242 Error handleReleaseRemoteSymbol(RemoteSymbolId Id) { in handleReleaseRemoteSymbol() 253 Expected<JITTargetAddress> handleMaterializeRemoteSymbol(RemoteSymbolId Id) { in handleMaterializeRemoteSymbol() 459 JITSymbol lookup(ObjHandleT Id, const std::string &Name) { in lookup() 464 JITSymbol lookupInLogicalDylib(ObjHandleT Id, const std::string &Name) { in lookupInLogicalDylib() [all …]
|
| /third_party/rust/crates/tracing/examples/examples/sloggish/ |
| D | sloggish_subscriber.rs | 48 pub fn id(&self) -> Option<Id> { in id() 53 pub fn enter(&self, span: Id) { in enter() 103 fn new(parent: Option<Id>, attrs: &tracing::span::Attributes<'_>) -> Self { in new() 201 fn new_span(&self, span: &tracing::span::Attributes<'_>) -> tracing::Id { in new_span() 209 fn record(&self, span: &tracing::Id, values: &tracing::span::Record<'_>) { in record() 216 fn record_follows_from(&self, _span: &tracing::Id, _follows: &tracing::Id) { in record_follows_from() 220 fn enter(&self, span_id: &tracing::Id) { in enter() 270 fn exit(&self, _span: &tracing::Id) { in exit()
|
| /third_party/rust/crates/tracing/tracing-subscriber/tests/ |
| D | support.rs | 206 fn on_record(&self, _: &Id, _: &Record<'_>, _: Context<'_, S>) { in on_record() argument 265 fn on_follows_from(&self, _span: &Id, _follows: &Id, _: Context<'_, S>) { in on_follows_from() 269 fn on_new_span(&self, span: &Attributes<'_>, id: &Id, cx: Context<'_, S>) { in on_new_span() 293 fn on_enter(&self, id: &Id, cx: Context<'_, S>) { in on_enter() 308 fn on_exit(&self, id: &Id, cx: Context<'_, S>) { in on_exit() 337 fn on_close(&self, id: Id, cx: Context<'_, S>) { in on_close() 383 fn on_id_change(&self, _old: &Id, _new: &Id, _ctx: Context<'_, S>) { in on_id_change()
|
| /third_party/rust/crates/tracing/tracing-subscriber/benches/ |
| D | filter.rs | 13 fn new_span(&self, span: &span::Attributes<'_>) -> Id { in new_span() 22 fn record(&self, span: &Id, values: &span::Record<'_>) { in record() 26 fn record_follows_from(&self, span: &Id, follows: &Id) { in record_follows_from() 35 fn enter(&self, span: &Id) { in enter() 39 fn exit(&self, span: &Id) { in exit()
|