Home
last modified time | relevance | path

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

12345678

/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/gwp_asan/gwp_asan/
Dguarded_pool_allocator.cpp123 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 …]
Dcrash_handler.cpp90 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/
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 …]
Dbacktrace.cpp63 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/
Dattr.rs139 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/
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/rust/crates/syn/0.15.42/tests/
Dtest_meta.rs8 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()
Dtest_attribute.rs9 use syn::{Attribute, Meta};
268 fn test(input: &str) -> (Meta, Meta) { in test() argument
/external/rust/crates/syn/1.0.7/tests/
Dtest_meta.rs6 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/
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]
Dheaderid.py129 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/
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/rust/crates/syn/1.0.7/src/
Dattr.rs158 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/
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/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/libxkbcommon/xkbcommon/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/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/crosvm/enumn/src/
Dlib.rs114 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/
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/autotest/frontend/tko/
Dmodels.py131 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/
Dmodels.py96 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 …]

12345678