/external/libchrome/ipc/ |
D | ipc_message_templates_impl.h | 25 template <typename Meta, typename... Ins> 26 MessageT<Meta, std::tuple<Ins...>, void>::MessageT(Routing routing, in MessageT() 32 template <typename Meta, typename... Ins> 33 bool MessageT<Meta, std::tuple<Ins...>, void>::Read(const Message* msg, in Read() 39 template <typename Meta, typename... Ins> 40 void MessageT<Meta, std::tuple<Ins...>, void>::Log(std::string* name, in Log() 44 *name = Meta::kName; in Log() 52 template <typename Meta, typename... Ins, typename... Outs> 53 MessageT<Meta, std::tuple<Ins...>, std::tuple<Outs...>>::MessageT( in MessageT() 65 template <typename Meta, typename... Ins, typename... Outs> [all …]
|
D | ipc_message_templates.h | 107 template <typename Meta, 108 typename InTuple = typename Meta::InTuple, 109 typename OutTuple = typename Meta::OutTuple> 113 template <typename Meta, typename... Ins> 114 class MessageT<Meta, std::tuple<Ins...>, void> : public Message { 117 enum { ID = Meta::ID }; 123 IPC_MESSAGET_SFINAE(Meta::kKind == MessageKind::CONTROL) 125 DCHECK(Meta::kKind == MessageKind::CONTROL) << Meta::kName; in MessageT() 128 IPC_MESSAGET_SFINAE(Meta::kKind == MessageKind::ROUTED) 131 DCHECK(Meta::kKind == MessageKind::ROUTED) << Meta::kName; in MessageT() [all …]
|
/external/gwp_asan/gwp_asan/ |
D | guarded_pool_allocator.cpp | 123 const AllocationMetadata &Meta = Metadata[i]; in iterate() local 124 if (Meta.Addr && !Meta.IsDeallocated && Meta.Addr >= Start && in iterate() 125 Meta.Addr < Start + Size) in iterate() 126 Cb(Meta.Addr, Meta.Size, Arg); in iterate() 187 AllocationMetadata *Meta = addrToMetadata(Ptr); in allocate() local 195 Meta->RecordAllocation(Ptr, Size); in allocate() 196 Meta->AllocationTrace.RecordBacktrace(Backtrace); in allocate() 221 AllocationMetadata *Meta = addrToMetadata(UPtr); in deallocate() local 222 if (Meta->Addr != UPtr) { in deallocate() 232 if (Meta->IsDeallocated) { in deallocate() [all …]
|
D | crash_handler.cpp | 90 const AllocationMetadata *Meta = addrToMetadata(State, Metadata, ErrorPtr); in __gwp_asan_get_metadata() local 91 if (Meta->Addr == 0) in __gwp_asan_get_metadata() 94 return Meta; in __gwp_asan_get_metadata()
|
/external/gwp_asan/gwp_asan/tests/ |
D | crash_handler_api.cpp | 48 void setupBacktraces(AllocationMetadata *Meta) { in setupBacktraces() argument 49 Meta->AllocationTrace.TraceSize = gwp_asan::compression::pack( in setupBacktraces() 51 Meta->AllocationTrace.CompressedTrace, in setupBacktraces() 54 if (Meta->IsDeallocated) in setupBacktraces() 55 Meta->DeallocationTrace.TraceSize = gwp_asan::compression::pack( in setupBacktraces() 57 Meta->DeallocationTrace.CompressedTrace, in setupBacktraces() 61 void checkBacktrace(const AllocationMetadata *Meta, bool IsDeallocated) { in checkBacktrace() argument 65 Meta, Buffer, kNumBacktraceConstants)); in checkBacktrace() 71 __gwp_asan_get_deallocation_trace(Meta, Buffer, in checkBacktrace() 79 const AllocationMetadata *Meta = in checkMetadata() local [all …]
|
D | backtrace.cpp | 63 gwp_asan::AllocationMetadata Meta; in TEST() local 64 Meta.AllocationTrace.RecordBacktrace( in TEST() 71 EXPECT_EQ(2u, __gwp_asan_get_allocation_trace(&Meta, TraceOutput, 2)); in TEST() 77 gwp_asan::AllocationMetadata Meta; in TEST() local 78 Meta.AllocationTrace.RecordBacktrace( in TEST() 83 EXPECT_EQ(1u, __gwp_asan_get_allocation_trace(&Meta, &TraceOutput, 1)); in TEST()
|
/external/rust/crates/syn/0.15.42/src/ |
D | attr.rs | 139 pub fn interpret_meta(&self) -> Option<Meta> { in interpret_meta() argument 154 return Some(Meta::Word(name.clone())); in interpret_meta() 178 pub fn parse_meta(&self) -> Result<Meta> { in parse_meta() argument 224 fn extract_meta_list(ident: Ident, tt: &TokenTree) -> Option<Meta> { in extract_meta_list() argument 237 Some(Meta::List(MetaList { in extract_meta_list() 245 fn extract_name_value(ident: Ident, a: &TokenTree, b: &TokenTree) -> Option<Meta> { in extract_name_value() argument 259 Some(Meta::NameValue(MetaNameValue { in extract_name_value() 266 v @ "true" | v @ "false" => Some(Meta::NameValue(MetaNameValue { in extract_name_value() 298 return Some((NestedMeta::Meta(meta), &tts[3..])); in nested_meta_item_from_tokens() 304 return Some((NestedMeta::Meta(meta), &tts[2..])); in nested_meta_item_from_tokens() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_super.py | 150 class Meta(type): class 157 class A(metaclass=Meta): 168 class Meta(type): class 174 class A(metaclass=Meta): 188 class Meta(type): class 194 class A(metaclass=Meta): 203 class Meta(type): class 212 class WithoutClassRef(metaclass=Meta): 220 class WithClassRef(metaclass=Meta): 236 class Meta(type): class [all …]
|
D | test_genericclass.py | 118 class Meta(type): class 127 class D(c, metaclass=Meta): 129 self.assertEqual(meta_args[0], Meta) 136 self.assertEqual(D.__class__, Meta) 246 class Meta(type): class 249 self.assertEqual(Meta[int], 'Meta[int]') 252 class Meta(type): pass class 253 class C(metaclass=Meta): 259 class Meta(type): class 262 class C(metaclass=Meta):
|
/external/rust/crates/syn/0.15.42/tests/ |
D | test_meta.rs | 8 use syn::{Meta, MetaList, MetaNameValue, NestedMeta}; 14 snapshot!(input as Meta, @r###"Word("hello")"###); in test_parse_meta_item_word() 29 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value() 51 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value_with_keyword() 73 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value_with_bool() 97 snapshot!(meta as Meta, @r###" in test_parse_meta_item_list_lit() 137 snapshot!(meta as Meta, @r###" in test_parse_meta_item_multiple()
|
D | test_attribute.rs | 9 use syn::{Attribute, Meta}; 268 fn test(input: &str) -> (Meta, Meta) { in test() argument
|
/external/rust/crates/syn/1.0.7/tests/ |
D | test_meta.rs | 6 use syn::{Meta, MetaList, MetaNameValue, NestedMeta}; 12 snapshot!(input as Meta, @r###" in test_parse_meta_item_word() 43 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value() 79 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value_with_keyword() 115 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value_with_bool() 153 snapshot!(meta as Meta, @r###" in test_parse_meta_item_list_lit() 242 snapshot!(meta as Meta, @r###" in test_parse_meta_item_multiple()
|
/external/python/cpython2/Lib/idlelib/ |
D | config-keys.def | 17 close-window=<Alt-Key-F4> <Meta-Key-F4> 22 history-next=<Alt-Key-n> <Meta-Key-n> <Alt-Key-N> <Meta-Key-N> 23 history-previous=<Alt-Key-p> <Meta-Key-p> <Alt-Key-P> <Meta-Key-P> 27 open-class-browser=<Alt-Key-c> <Meta-Key-c> <Alt-Key-C> <Meta-Key-C> 28 open-module=<Alt-Key-m> <Meta-Key-m> <Alt-Key-M> <Meta-Key-M> 43 find-in-files=<Alt-Key-F3> <Meta-Key-F3> 46 goto-line=<Alt-Key-g> <Meta-Key-g> <Alt-Key-G> <Meta-Key-G> 52 comment-region=<Alt-Key-3> <Meta-Key-3> 53 uncomment-region=<Alt-Key-4> <Meta-Key-4> 54 tabify-region=<Alt-Key-5> <Meta-Key-5> [all …]
|
/external/markdown/markdown/extensions/ |
D | wikilinks.py | 139 if self.md.Meta.has_key('wiki_base_url'): 140 base_url = self.md.Meta['wiki_base_url'][0] 141 if self.md.Meta.has_key('wiki_end_url'): 142 end_url = self.md.Meta['wiki_end_url'][0] 143 if self.md.Meta.has_key('wiki_html_class'): 144 html_class = self.md.Meta['wiki_html_class'][0]
|
D | headerid.py | 129 if self.md.Meta.has_key('header_level'): 130 level = int(self.md.Meta['header_level'][0]) - 1 131 if self.md.Meta.has_key('header_forceid'): 132 force = self._str2bool(self.md.Meta['header_forceid'][0])
|
/external/markdown/docs/extensions/ |
D | Meta-Data.txt | 1 Meta-Data 8 a document. The Meta-Data extension is inspired by and follows the syntax of 10 way, but simply provides it as a `Meta` attribute of a markdown instance for 20 Meta-data consists of a series of keywords and values defined at the beginning 42 Accessing the Meta-Data 45 The meta-data is made available as a python Dict in the `Meta` attribute of an 50 >>> # Meta-data has been stripped from output 55 >>> print md.Meta 69 `Meta` attribute. 78 The following are extensions currently known to work with the Meta-Data
|
/external/rust/crates/syn/1.0.7/src/ |
D | attr.rs | 158 pub fn parse_meta(&self) -> Result<Meta> { in parse_meta() argument 349 pub enum Meta { 384 impl Meta { implementation 391 Meta::Path(path) => path, in path() 392 Meta::List(meta) => &meta.path, in path() 393 Meta::NameValue(meta) => &meta.path, in path() 406 Meta(Meta), 549 impl Parse for Meta { implementation 575 input.parse().map(NestedMeta::Meta) in parse() 582 pub fn parse_meta_after_path(path: Path, input: ParseStream) -> Result<Meta> { in parse_meta_after_path() argument [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | config-keys.def | 17 close-window=<Alt-Key-F4> <Meta-Key-F4> 22 history-next=<Alt-Key-n> <Meta-Key-n> <Alt-Key-N> <Meta-Key-N> 23 history-previous=<Alt-Key-p> <Meta-Key-p> <Alt-Key-P> <Meta-Key-P> 27 open-class-browser=<Alt-Key-c> <Meta-Key-c> <Alt-Key-C> <Meta-Key-C> 28 open-module=<Alt-Key-m> <Meta-Key-m> <Alt-Key-M> <Meta-Key-M> 43 find-in-files=<Alt-Key-F3> <Meta-Key-F3> 46 goto-line=<Alt-Key-g> <Meta-Key-g> <Alt-Key-G> <Meta-Key-G> 52 comment-region=<Alt-Key-3> <Meta-Key-3> 53 uncomment-region=<Alt-Key-4> <Meta-Key-4> 54 tabify-region=<Alt-Key-5> <Meta-Key-5> [all …]
|
/external/clang/test/CXX/temp/temp.param/ |
D | p11-0x.cpp | 57 template<template<int> class... Meta> struct X1tt; 58 template<template<int> class... Meta, template<int> class M> 59 struct X1tt<M, Meta...> { }; 67 template<template<int> class... Meta, template<int> class M> 68 void f1tt(X1tt<M, Meta...>);
|
/external/libxkbcommon/xkbcommon/test/data/compat/ |
D | misc | 3 virtual_modifiers Alt,Meta,Super,Hyper,ScrollLock; 35 // Sets the "Meta" virtual modifier. 39 virtualModifier= Meta; 44 action = SetMods(modifiers=Meta); 49 virtualModifier= Meta; 54 action = SetMods(modifiers=Meta);
|
/external/python/six/ |
D | test_six.py | 717 class Meta(type): class 719 class X(six.with_metaclass(Meta)): 721 assert type(X) is Meta 725 class X(six.with_metaclass(Meta, Base)): 727 assert type(X) is Meta 731 class X(six.with_metaclass(Meta, Base, Base2)): 733 assert type(X) is Meta 737 class X(six.with_metaclass(Meta)): 739 class MetaSub(Meta): 754 class Meta(type): class [all …]
|
/external/crosvm/enumn/src/ |
D | lib.rs | 114 use syn::{parse_macro_input, parse_quote, Data, DeriveInput, Fields, Meta, NestedMeta}; 136 if let Ok(Meta::List(list)) = attr.parse_meta() { in testable_derive() 138 if let Some(NestedMeta::Meta(Meta::Word(word))) = list.nested.into_iter().next() { in testable_derive()
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | metafunctions.cpp | 171 template<typename T, template<class> class ...Meta> 173 typedef tuple<typename Meta<T>::type...> type; 195 template<typename T, template<class> class ...Meta> 197 typedef typename apply_each<T, Meta...>::type type; 204 template<typename T, typename ...Meta> 206 typedef typename apply_each<T, Meta::template apply...>::type type;
|
/external/autotest/frontend/tko/ |
D | models.py | 131 class Meta: class in Machine 143 class Meta: class in Kernel 155 class Meta: class in Patch 165 class Meta: class in Status 184 class Meta: class in Job 195 class Meta: class in JobKeyval 235 class Meta: class in Test 249 class Meta: class in TestAttribute 265 class Meta: class in IterationAttribute 280 class Meta: class in IterationResult [all …]
|
/external/autotest/frontend/afe/ |
D | models.py | 96 class Meta: class in AtomicGroup 148 class Meta: class in Label 198 class Meta: class in StaticLabel 213 class Meta: class in ReplacedLabel 231 class Meta: class in Shard 260 class Meta: class in Drone 358 class Meta: class in DroneSet 469 class Meta: class in User 918 class Meta: class in Host 938 class Meta: class in HostAttribute [all …]
|