Home
last modified time | relevance | path

Searched defs:Id (Results 1 – 25 of 369) sorted by relevance

12345678910>>...15

/external/clang/lib/Driver/
DTypes.cpp39 const char *types::getTypeName(ID Id) { in getTypeName()
43 types::ID types::getPreprocessedType(ID Id) { in getPreprocessedType()
47 const char *types::getTypeTempSuffix(ID Id, bool CLMode) { in getTypeTempSuffix()
57 bool types::onlyAssembleType(ID Id) { in onlyAssembleType()
61 bool types::onlyPrecompileType(ID Id) { in onlyPrecompileType()
65 bool types::canTypeBeUserSpecified(ID Id) { in canTypeBeUserSpecified()
69 bool types::appendSuffixForType(ID Id) { in appendSuffixForType()
73 bool types::canLipoType(ID Id) { in canLipoType()
80 bool types::isAcceptedByClang(ID Id) { in isAcceptedByClang()
104 bool types::isObjC(ID Id) { in isObjC()
[all …]
/external/rust/crates/clap/3.2.23/src/util/
Did.rs11 pub(crate) struct Id { struct
19 impl Id { argument
40 impl Id { implementation
50 impl Debug for Id { implementation
61 impl Deref for Id { implementation
69 impl<T: Key> From<T> for Id { implementation
79 impl Hash for Id { implementation
88 impl PartialEq for Id { implementation
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSValVisitor.h38 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id); in Visit() argument
42 #define LOC_SVAL(Id, Parent) \ in Visit() argument
49 #define NONLOC_SVAL(Id, Parent) \ in Visit() argument
58 #define BASIC_SVAL(Id, Parent) \ argument
60 #define ABSTRACT_SVAL(Id, Parent) \ argument
62 #define LOC_SVAL(Id, Parent) \ argument
64 #define NONLOC_SVAL(Id, Parent) \ argument
85 #define SYMBOL(Id, Parent) \ in Visit() argument
94 #define SYMBOL(Id, Parent) RetTy Visit ## Id(const Id *S) { DISPATCH(Parent); } argument
95 #define ABSTRACT_SYMBOL(Id, Parent) SYMBOL(Id, Parent) argument
[all …]
/external/rust/crates/tracing-core/tests/common/
Dmod.rs8 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()
/external/rust/crates/clap/src/util/
Did.rs9 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 …]
/external/rust/crates/tracing-core/src/
Dsubscriber.rs258 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 …]
Ddispatcher.rs532 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 …]
Dspan.rs16 pub struct Id(NonZeroU64); struct
60 impl Id { implementation
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()
/external/perfetto/src/trace_processor/containers/
Dstring_pool.h40 struct Id { struct
64 static Id LargeString(size_t index) { in LargeString() argument
70 static Id BlockString(size_t index, uint32_t offset) { in BlockString() argument
78 static constexpr Id Raw(uint32_t raw) { return Id(raw); } in Raw() argument
80 static constexpr Id Null() { return Id(0u); } in Null() argument
83 constexpr Id(uint32_t i) : id(i) {} in Id() function
97 Id StringId(); argument
/external/rust/crates/clap/3.2.23/src/parser/
Darg_matcher.rs54 pub(crate) fn propagate_globals(&mut self, global_arg_vec: &[Id]) { in propagate_globals()
65 global_arg_vec: &[Id], in fill_in_global_values()
66 vals_map: &mut HashMap<Id, MatchedArg>, in fill_in_global_values()
111 pub(crate) fn remove(&mut self, arg: &Id) { in remove()
119 pub(crate) fn arg_ids(&self) -> indexmap::map::Keys<Id, MatchedArg> { in arg_ids()
123 pub(crate) fn entry(&mut self, arg: &Id) -> indexmap::map::Entry<Id, MatchedArg> { in entry()
135 pub(crate) fn iter(&self) -> indexmap::map::Iter<Id, MatchedArg> { in iter()
139 pub(crate) fn check_explicit<'a>(&self, arg: &Id, predicate: ArgPredicate<'a>) -> bool { in check_explicit()
155 pub(crate) fn start_custom_group(&mut self, id: &Id, source: ValueSource) { in start_custom_group()
177 pub(crate) fn start_occurrence_of_group(&mut self, id: &Id) { in start_occurrence_of_group()
[all …]
/external/rust/crates/tracing/tests/
Dregister_callsite_deadlock.rs22 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()
Dsubscriber.rs36 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()
/external/rust/crates/tracing/benches/
Dshared.rs93 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()
/external/rust/crates/clap/src/parser/
Darg_matcher.rs47 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 …]
Dvalidator.rs154 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()
529 fn gather_arg_direct_conflicts(cmd: &Command, arg: &Arg) -> Vec<Id> { in gather_arg_direct_conflicts()
549 fn gather_group_direct_conflicts(group: &ArgGroup) -> Vec<Id> { in gather_group_direct_conflicts()
/external/rust/crates/tokio/src/runtime/task/
Did.rs27 pub struct Id(u64); struct
69 impl fmt::Display for Id { implementation
75 impl Id { impl
/external/rust/cxx/tests/ui/
Draw_ident_namespace.rs7 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
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DRemoteObjectLayer.h137 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 …]
DOrcRemoteTargetServer.h206 Error handleCreateRemoteAllocator(ResourceIdMgr::ResourceId Id) { in handleCreateRemoteAllocator()
216 Error handleCreateIndirectStubsOwner(ResourceIdMgr::ResourceId Id) { in handleCreateIndirectStubsOwner()
235 Error handleDestroyRemoteAllocator(ResourceIdMgr::ResourceId Id) { in handleDestroyRemoteAllocator()
245 Error handleDestroyIndirectStubsOwner(ResourceIdMgr::ResourceId Id) { in handleDestroyIndirectStubsOwner()
255 handleEmitIndirectStubs(ResourceIdMgr::ResourceId Id, in handleEmitIndirectStubs()
376 Expected<JITTargetAddress> handleReserveMem(ResourceIdMgr::ResourceId Id, in handleReserveMem()
397 Error handleSetProtections(ResourceIdMgr::ResourceId Id, in handleSetProtections()
/external/grpc-grpc/examples/csharp/HelloworldXamarin/Droid/Resources/
DResource.designer.cs44 public partial class Id class in HelloworldXamarin.Droid.Resource
50 static Id() in Id() method in HelloworldXamarin.Droid.Resource.Id
55 private Id() in Id() method in HelloworldXamarin.Droid.Resource.Id
/external/rust/crates/tokio/src/future/
Dtrace.rs4 fn id(&self) -> Option<tracing::Id>; in id()
8 fn id(&self) -> Option<tracing::Id> { in id()
/external/rust/cxx/src/
Dextern_type.rs113 type Id; typedef
184 pub fn verify_extern_type<T: ExternType<Id = Id>, Id>() {} in verify_extern_type() argument
/external/rust/crates/clap/examples/
Dfind.rs34 pub fn from_matches(matches: &ArgMatches) -> Vec<(clap::Id, Self)> { in from_matches()
61 id: &clap::Id, in extract()
62 output: &mut BTreeMap<usize, (clap::Id, Self)>, in extract()
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetServer.h59 Error handleKnownFunction(JITFuncId Id) { in handleKnownFunction()
226 Error handleCreateRemoteAllocator(ResourceIdMgr::ResourceId Id) { in handleCreateRemoteAllocator()
235 Error handleCreateIndirectStubsOwner(ResourceIdMgr::ResourceId Id) { in handleCreateIndirectStubsOwner()
252 Error handleDestroyRemoteAllocator(ResourceIdMgr::ResourceId Id) { in handleDestroyRemoteAllocator()
261 Error handleDestroyIndirectStubsOwner(ResourceIdMgr::ResourceId Id) { in handleDestroyIndirectStubsOwner()
270 handleEmitIndirectStubs(ResourceIdMgr::ResourceId Id, in handleEmitIndirectStubs()
387 Expected<TargetAddress> handleReserveMem(ResourceIdMgr::ResourceId Id, in handleReserveMem()
406 Error handleSetProtections(ResourceIdMgr::ResourceId Id, TargetAddress Addr, in handleSetProtections()
DOrcRemoteTargetClient.h59 RCMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id) in RCMemoryManager()
433 ResourceIdMgr::ResourceId Id; variable
443 ResourceIdMgr::ResourceId Id) in RCIndirectStubsManager()
509 ResourceIdMgr::ResourceId Id; variable
639 auto Id = AllocatorIds.getNext(); in createRemoteMemoryManager() local
650 auto Id = IndirectStubOwnerIds.getNext(); in createIndirectStubsManager() local
705 void destroyRemoteAllocator(ResourceIdMgr::ResourceId Id) { in destroyRemoteAllocator()
714 Error destroyIndirectStubsManager(ResourceIdMgr::ResourceId Id) { in destroyIndirectStubsManager()
720 emitIndirectStubs(ResourceIdMgr::ResourceId Id, uint32_t NumStubsRequired) { in emitIndirectStubs()
738 Error listenForCompileRequests(RPCChannel &C, uint32_t &Id) { in listenForCompileRequests()
[all …]

12345678910>>...15