Lines Matching full:name
48 const util::StringView &Name() const in DECLARATION_KINDS()
112 explicit Decl(util::StringView name) : name_(name) {} in DECLARATION_KINDS()
122 explicit MultiDecl(ArenaAllocator *allocator, util::StringView name) in MultiDecl() argument
123 : Decl(name), declarations_(allocator->Adapter()) in MultiDecl()
143 explicit EnumLiteralDecl(util::StringView name, bool isConst) : Decl(name), isConst_(isConst) {} in EnumLiteralDecl() argument
172 …cit InterfaceDecl(ArenaAllocator *allocator, util::StringView name) : MultiDecl(allocator, name) {} in InterfaceDecl() argument
182 explicit FunctionDecl(ArenaAllocator *allocator, util::StringView name, const ir::AstNode *node) in FunctionDecl() argument
183 : MultiDecl(allocator, name) in FunctionDecl()
196 explicit TypeParameterDecl(util::StringView name, const ir::AstNode *node);
206 explicit PropertyDecl(util::StringView name) : Decl(name) {} in PropertyDecl() argument
216 explicit MethodDecl(util::StringView name) : Decl(name) {} in MethodDecl() argument
226 explicit EnumDecl(util::StringView name) : Decl(name) {} in EnumDecl() argument
236 explicit TypeAliasDecl(util::StringView name) : Decl(name) {} in TypeAliasDecl() argument
246 explicit NamespaceDecl(ArenaAllocator *allocator, util::StringView name) in NamespaceDecl() argument
247 : MultiDecl(allocator, name) in NamespaceDecl()
259 explicit VarDecl(util::StringView name) : Decl(name) {} in VarDecl() argument
269 explicit LetDecl(util::StringView name) : Decl(name) {} in LetDecl() argument
279 explicit ConstDecl(util::StringView name) : Decl(name) {} in ConstDecl() argument
289 explicit ClassDecl(util::StringView name) : Decl(name) {} in ClassDecl() argument
299 explicit ParameterDecl(util::StringView name) : Decl(name) {} in ParameterDecl() argument
309 explicit ImportEqualsDecl(util::StringView name) : Decl(name) {} in ImportEqualsDecl() argument