Home
last modified time | relevance | path

Searched refs:NamedType (Results 1 – 8 of 8) sorted by relevance

/third_party/rust/crates/cxx/syntax/
Dnames.rs2 use crate::syntax::{Lifetimes, NamedType, Pair, Symbol};
26 impl NamedType { impl
33 NamedType { rust, generics } in new()
Dresolve.rs2 use crate::syntax::{Lifetimes, NamedType, Pair, Types};
36 impl UnresolvedName for NamedType { implementation
Dinstantiate.rs1 use crate::syntax::{NamedType, Ty1, Type};
71 fn new(outer: &Ty1, inner: &'a NamedType) -> Self { in new()
Dmod.rs210 pub ty: NamedType,
227 Ident(NamedType),
303 pub struct NamedType { struct
Dtokens.rs3 Array, Atom, Derive, Enum, EnumRepr, ExternFn, ExternType, Impl, Lifetimes, NamedType, Ptr,
302 impl ToTokens for NamedType { implementation
304 let NamedType { rust, generics } = self; in to_tokens() localVariable
Dtrivial.rs3 use crate::syntax::{Api, Enum, ExternFn, NamedType, Pair, Struct, Type};
27 let mut insist_extern_types_are_trivial = |ident: &'a NamedType, reason| { in required_trivial_reasons()
Dparse.rs9 Include, IncludeKind, Lang, Lifetimes, NamedType, Namespace, Pair, Ptr, Receiver, Ref,
252 let repr_type = Type::Ident(NamedType::new(repr_ident)); in parse_enum()
607 ty: NamedType::new(Ident::new("Self", arg.self_token.span)), in parse_extern_fn()
1225 PathArguments::None => return Ok(Type::Ident(NamedType::new(ident))), in parse_type_path()
1314 return Ok(Type::Ident(NamedType { in parse_type_path()
Dcheck.rs6 NamedType, Ptr, Receiver, Ref, Signature, SliceRef, Struct, Trait, Ty1, Type, TypeAlias, Types,
82 fn check_type_ident(cx: &mut Check, name: &NamedType) { in check_type_ident() argument