Lines Matching refs:BaseCommand
85 struct BaseCommand { struct
86 BaseCommand(int k) : kind(k) {} in BaseCommand() argument
91 struct SymbolAssignment : BaseCommand { argument
93 : BaseCommand(AssignmentKind), name(name), expression(e), location(loc) {} in SymbolAssignment()
95 static bool classof(const BaseCommand *c) { in classof()
169 class InputSectionDescription : public BaseCommand {
178 : BaseCommand(InputSectionKind), filePat(filePattern), in BaseCommand() function
181 static bool classof(const BaseCommand *c) { in classof()
210 struct ByteCommand : BaseCommand {
212 : BaseCommand(ByteKind), commandString(commandString), expression(e), in ByteCommand()
215 static bool classof(const BaseCommand *c) { return c->kind == ByteKind; } in classof()
324 std::vector<BaseCommand *> sectionCommands;