| /linux/rust/proc-macro2/ |
| H A D | wrapper.rs | 165 TokenTree::Group(tt) => proc_macro::TokenTree::Group(tt.inner.unwrap_nightly()), in into_compiler_token() 342 proc_macro::TokenTree::Group(tt) => { in next() 343 TokenTree::Group(crate::Group::_new(Group::Compiler(tt))) in next() 560 pub(crate) enum Group { enum 561 Compiler(proc_macro::Group), 562 Fallback(fallback::Group), 565 impl Group { impl 575 Group::Compiler(proc_macro::Group::new(delimiter, tts.into_token_stream())) in new() 578 Group::Fallback(fallback::Group::new(delimiter, stream)) in new() 585 Group::Compiler(g) => match g.delimiter() { in delimiter() [all …]
|
| H A D | lib.rs | 541 Group(Group), enumerator 555 TokenTree::Group(t) => t.span(), in span() 569 TokenTree::Group(t) => t.set_span(span), in set_span() 577 impl From<Group> for TokenTree { 578 fn from(g: Group) -> Self { in from() 579 TokenTree::Group(g) in from() 608 TokenTree::Group(t) => Display::fmt(t, f), in fmt() 622 TokenTree::Group(t) => Debug::fmt(t, f), in fmt() 640 pub struct Group { struct 641 inner: imp::Group, argument [all …]
|
| H A D | extra.rs | 101 pub(crate) fn new(group: &imp::Group) -> Self { in new() 104 imp::Group::Compiler(group) => DelimSpanEnum::Compiler { in new() 109 imp::Group::Fallback(group) => DelimSpanEnum::Fallback(group.span()), in new()
|
| H A D | fallback.rs | 140 TokenTree::Group(group) => group.inner, in drop() 145 crate::imp::Group::Fallback(group) => group, in drop() 146 crate::imp::Group::Compiler(_) => continue, in drop() 227 TokenTree::Group(tt) => Display::fmt(tt, f), in fmt() 698 pub(crate) struct Group { struct 704 impl Group { implementation 706 Group { in new() 738 impl Display for Group { implementation 765 impl Debug for Group { implementation
|
| /linux/rust/syn/ |
| H A D | buffer.rs | 12 use proc_macro2::{Delimiter, Group, Ident, Literal, Punct, Spacing, Span, TokenStream, TokenTree}; 22 Group(Group, usize), enumerator 47 TokenTree::Group(group) => { in recursive_new() 57 entries[group_start_index] = Entry::Group(group, group_offset); in recursive_new() 173 while let Entry::Group(group, _) = self.entry() { in ignore_none() 249 if let Entry::Group(group, end_offset) = self.entry() { in group() 265 if let Entry::Group(group, end_offset) = self.entry() { in any_group() 277 pub(crate) fn any_group_token(self) -> Option<(Group, Cursor<'a>)> { in any_group_token() argument 278 if let Entry::Group(group, end_offset) = self.entry() { in any_group_token() 308 Entry::Group(group, end_offset) => (group.clone().into(), *end_offset), in token_tree() [all …]
|
| H A D | token.rs | 186 impl_low_level_token!("group token" proc_macro2::Group any_group); 576 pub struct Group { struct 582 pub fn Group<S: IntoSpans<Span>>(span: S) -> Group { in Group() argument 583 Group { in Group() 588 impl std::default::Default for Group { implementation 590 Group { in default() 598 impl Copy for Group {} implementation 602 impl Clone for Group { implementation 610 impl Debug for Group { implementation 618 impl cmp::Eq for Group {} implementation [all …]
|
| H A D | group.rs | 39 pub struct Group<'a> { struct 41 pub token: token::Group, argument 74 pub(crate) fn parse_group<'a>(input: &ParseBuffer<'a>) -> Result<Group<'a>> { in parse_group() 75 parse_delimited(input, Delimiter::None).map(|(span, content)| Group { in parse_group() 76 token: token::Group(span.join()), in parse_group()
|
| H A D | classify.rs | 49 | Expr::Group(_) in requires_comma_to_be_match_arm() 96 | Type::Group(_) in trailing_unparameterized_path() 160 | Expr::Group(_) in expr_leading_label() 233 | Expr::Group(_) in expr_trailing_brace() 271 | Type::Group(_) in expr_trailing_brace() 307 if let Some(TokenTree::Group(last)) = tokens.clone().into_iter().last() { in expr_trailing_brace()
|
| H A D | tt.rs | 13 (TokenTree::Group(g1), TokenTree::Group(g2)) => { in eq() 55 TokenTree::Group(g) => { in hash()
|
| H A D | span.rs | 4 use proc_macro2::{Delimiter, Group, Span, TokenStream}; 55 let mut group = Group::new(Delimiter::None, TokenStream::new()); in into_spans()
|
| H A D | error.rs | 7 Delimiter, Group, Ident, LexError, Literal, Punct, Spacing, Span, TokenStream, TokenTree, 313 TokenTree::Group({ in to_compile_error() 314 let mut group = Group::new(Delimiter::Brace, { in to_compile_error()
|
| /linux/rust/macros/ |
| H A D | paste.rs | 3 use proc_macro2::{Delimiter, Group, Ident, Spacing, Span, TokenTree}; 49 Some(TokenTree::Group(group)) if group.delimiter() == Delimiter::None => { in concat_helper() 68 if let TokenTree::Group(group) = token { in expand() 83 let mut group = Group::new(delimiter, stream.into_iter().collect()); in expand() 85 *token = TokenTree::Group(group); in expand() 99 TokenTree::Group(group) if group.delimiter() == Delimiter::None => { in expand() 106 TokenTree::Group(group) if group.delimiter() == Delimiter::None => { in expand()
|
| H A D | quote.rs | |
| H A D | vtable.rs | |
| H A D | pin_data.rs | |
| H A D | helpers.rs | 70 expect_group(it: &mut token_stream::IntoIter) -> Group expect_group() argument
|
| /linux/rust/kernel/ |
| H A D | configfs.rs | 245 pub struct Group<Data> { 252 impl<Data> Group<Data> { 259 item_type: &'static ItemType<Group<Data>, Data>, in new() 277 // SAFETY: `Group<Data>` embeds a field of type `bindings::config_group` 279 unsafe impl<Data> HasGroup<Data> for Group<Data> { 302 /// `Group<Parent>`. 314 // `Group<Parent>`. in get_group_data() 315 unsafe { &(*Group::<Parent>::container_of(this)).data } in get_group_data() 336 /// `Group<Parent>`. 361 let child_group = <Arc<Group<Chil in make_group() 246 pub struct Group<Data> { global() struct 253 impl<Data> Group<Data> { global() implementation 280 unsafe impl<Data> HasGroup<Data> for Group<Data> { global() implementation [all...] |
| /linux/Documentation/filesystems/ext4/ |
| H A D | blocks.rst | 43 * - Blocks Per Block Group 48 * - Inodes Per Block Group 53 * - Block Group Size 105 * - Blocks Per Block Group 110 * - Inodes Per Block Group 115 * - Block Group Size
|
| /linux/Documentation/admin-guide/perf/ |
| H A D | alibaba_pmu.rst | 5 The Yitian 710, custom-built by Alibaba Group's chip development business, 26 - Group 0: PMU Cycle Counter. This group has one pair of counters 30 - Group 1: PMU Bandwidth Counters. This group has 8 counters that are used 35 - Group 2: PMU Retry Counters. This group has 10 counters, that intend to 38 - Group 3: PMU Common Counters. This group has 16 counters, that are used
|
| H A D | dwc_pcie_pmu.rst | 31 - Group#0: Percentage of time the controller stays in LTSSM states. 32 - Group#1: Amount of data processed (Units of 16 bytes). 40 - Group i 41 - Event j within the Group i
|
| /linux/Documentation/bpf/standardization/ |
| H A D | index.rst | 8 standardization effort with the IETF. See the `IETF BPF Working Group`_ page 18 .. _IETF BPF Working Group: https://datatracker.ietf.org/wg/bpf/about/
|
| /linux/scripts/package/ |
| H A D | kernel.spec | 11 Group: System Environment/Kernel 28 Group: Development/System 41 Group: System Environment/Kernel 51 Group: Development/Debug
|
| /linux/Documentation/admin-guide/gpio/ |
| H A D | gpio-sim.rst | 21 **Group:** ``/config/gpio-sim`` 25 **Group:** ``/config/gpio-sim/gpio-device`` 38 **Group:** ``/config/gpio-sim/gpio-device/gpio-bankX`` 49 **Group:** ``/config/gpio-sim/gpio-device/gpio-bankX/lineY``
|
| /linux/rust/quote/ |
| H A D | runtime.rs | 8 use proc_macro2::{Group, Ident, Punct, Spacing, TokenTree}; 253 tokens.append(Group::new(delimiter, inner)); in push_group() 263 let mut g = Group::new(delimiter, inner); in push_group_spanned() 283 TokenTree::Group(g) => { in respan_token_tree() 289 *g = Group::new(g.delimiter(), stream); in respan_token_tree()
|
| /linux/drivers/clk/starfive/ |
| H A D | Kconfig | 53 tristate "StarFive JH7110 System-Top-Group clock support" 57 Say yes here to support the System-Top-Group clock controller
|