Home
last modified time | relevance | path

Searched refs:Meta (Results 1 – 25 of 209) sorted by relevance

123456789

/external/libchrome/ipc/
Dipc_message_templates_impl.h25 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 …]
Dipc_message_templates.h107 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/llvm-project/compiler-rt/lib/gwp_asan/tests/
Dbacktrace.cpp64 gwp_asan::AllocationMetadata Meta; in TEST() local
65 Meta.AllocationTrace.RecordBacktrace( in TEST()
72 EXPECT_EQ(2u, __gwp_asan_get_allocation_trace(&Meta, TraceOutput, 2)); in TEST()
78 gwp_asan::AllocationMetadata Meta; in TEST() local
79 Meta.AllocationTrace.RecordBacktrace( in TEST()
91 __gwp_asan_get_allocation_trace(&Meta, &TraceOutput, 1)); in TEST()
95 gwp_asan::AllocationMetadata Meta; in TEST() local
97 Meta.AllocationTrace.RecordBacktrace( in TEST()
106 __gwp_asan_get_allocation_trace(&Meta, &TraceOutput, 1)); in TEST()
110 gwp_asan::AllocationMetadata Meta; in TEST() local
[all …]
Dcrash_handler_api.cpp48 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 …]
/external/gwp_asan/gwp_asan/tests/
Dbacktrace.cpp64 gwp_asan::AllocationMetadata Meta; in TEST() local
65 Meta.AllocationTrace.RecordBacktrace( in TEST()
72 EXPECT_EQ(2u, __gwp_asan_get_allocation_trace(&Meta, TraceOutput, 2)); in TEST()
78 gwp_asan::AllocationMetadata Meta; in TEST() local
79 Meta.AllocationTrace.RecordBacktrace( in TEST()
91 __gwp_asan_get_allocation_trace(&Meta, &TraceOutput, 1)); in TEST()
95 gwp_asan::AllocationMetadata Meta; in TEST() local
97 Meta.AllocationTrace.RecordBacktrace( in TEST()
106 __gwp_asan_get_allocation_trace(&Meta, &TraceOutput, 1)); in TEST()
110 gwp_asan::AllocationMetadata Meta; in TEST() local
[all …]
Dcrash_handler_api.cpp48 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 …]
/external/llvm-project/compiler-rt/lib/gwp_asan/
Dguarded_pool_allocator.cpp126 const AllocationMetadata &Meta = Metadata[i]; in iterate() local
127 if (Meta.Addr && !Meta.IsDeallocated && Meta.Addr >= Start && in iterate()
128 Meta.Addr < Start + Size) in iterate()
129 Cb(Meta.Addr, Meta.Size, Arg); in iterate()
190 AllocationMetadata *Meta = addrToMetadata(Ptr); in allocate() local
199 Meta->RecordAllocation(Ptr, Size); in allocate()
200 Meta->AllocationTrace.RecordBacktrace(Backtrace); in allocate()
225 AllocationMetadata *Meta = addrToMetadata(UPtr); in deallocate() local
226 if (Meta->Addr != UPtr) { in deallocate()
236 if (Meta->IsDeallocated) { in deallocate()
[all …]
/external/gwp_asan/gwp_asan/
Dguarded_pool_allocator.cpp120 const AllocationMetadata &Meta = Metadata[i]; in iterate() local
121 if (Meta.Addr && !Meta.IsDeallocated && Meta.Addr >= Start && in iterate()
122 Meta.Addr < Start + Size) in iterate()
123 Cb(Meta.Addr, Meta.RequestedSize, Arg); in iterate()
224 AllocationMetadata *Meta = addrToMetadata(SlotStart); in allocate() local
245 Meta->RecordAllocation(UserPtr, Size); in allocate()
248 Meta->AllocationTrace.RecordBacktrace(Backtrace); in allocate()
274 AllocationMetadata *Meta = addrToMetadata(UPtr); in deallocate() local
275 if (Meta->Addr != UPtr) { in deallocate()
285 if (Meta->IsDeallocated) { in deallocate()
[all …]
/external/rust/crates/syn/tests/
Dtest_meta.rs4 use syn::{Meta, MetaList, MetaNameValue, NestedMeta};
10 snapshot!(input as Meta, @r###" in test_parse_meta_item_word()
41 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value()
77 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value_with_keyword()
113 snapshot!(meta as Meta, @r###" in test_parse_meta_name_value_with_bool()
151 snapshot!(meta as Meta, @r###" in test_parse_meta_item_list_lit()
240 snapshot!(meta as Meta, @r###" in test_parse_meta_item_multiple()
344 snapshot!(input as Meta, @r###" in test_parse_path()
/external/python/cpython3/Lib/test/
Dtest_super.py150 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 …]
Dtest_genericclass.py118 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/python/cpython2/Lib/idlelib/
Dconfig-keys.def17 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/
Dwikilinks.py139 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]
/external/rust/crates/serde_derive/src/internals/
Dattr.rs12 use syn::Meta::{List, NameValue, Path};
13 use syn::NestedMeta::{Lit, Meta};
320 Meta(NameValue(m)) if m.path == RENAME => { in from_ast()
328 Meta(List(m)) if m.path == RENAME => { in from_ast()
336 Meta(NameValue(m)) if m.path == RENAME_ALL => { in from_ast()
349 Meta(List(m)) if m.path == RENAME_ALL => { in from_ast()
367 Meta(Path(word)) if word == TRANSPARENT => { in from_ast()
372 Meta(Path(word)) if word == DENY_UNKNOWN_FIELDS => { in from_ast()
377 Meta(Path(word)) if word == DEFAULT => match &item.data { in from_ast()
398 Meta(NameValue(m)) if m.path == DEFAULT => { in from_ast()
[all …]
/external/markdown/docs/extensions/
DMeta-Data.txt1 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/clang/test/CXX/temp/temp.param/
Dp11-0x.cpp57 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/llvm-project/clang/test/CXX/temp/temp.param/
Dp11-0x.cpp57 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/python/cpython3/Lib/idlelib/
Dconfig-keys.def17 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/rust/crates/syn/src/
Dattr.rs165 pub fn parse_meta(&self) -> Result<Meta> { in parse_meta() argument
362 pub enum Meta {
399 impl Meta { impl
406 Meta::Path(path) => path, in path()
407 Meta::List(meta) => &meta.path, in path()
408 Meta::NameValue(meta) => &meta.path, in path()
422 Meta(Meta),
566 impl Parse for Meta { implementation
597 input.parse().map(NestedMeta::Meta) in parse()
604 pub fn parse_meta_after_path(path: Path, input: ParseStream) -> Result<Meta> { in parse_meta_after_path() argument
[all …]
/external/libxkbcommon/test/data/compat/
Dmisc3 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/adhd/cros_alsa/cros_alsa_derive/src/
Dcommon.rs8 use syn::{Lit, Meta, NestedMeta, Result};
40 NestedMeta::Meta(Meta::NameValue(m)) if m.path.is_ident(PATH) => { in try_from()
74 Ok(Meta::List(meta)) => Ok(meta.nested.into_iter().collect()), in get_cros_alsa_meta_items()
/external/python/six/
Dtest_six.py717 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/clang/test/CXX/temp/temp.decls/temp.variadic/
Dmetafunctions.cpp171 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/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
Dmetafunctions.cpp171 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/crosvm/enumn/src/
Dlib.rs112 use syn::{parse_macro_input, parse_quote, Data, DeriveInput, Fields, Meta, NestedMeta};
134 if let Ok(Meta::List(list)) = attr.parse_meta() { in testable_derive()
136 if let Some(NestedMeta::Meta(Meta::Path(word))) = list.nested.into_iter().next() { in testable_derive()

123456789