Home
last modified time | relevance | path

Searched refs:BaseCommand (Results 1 – 16 of 16) sorted by relevance

/freebsd-13.1/contrib/kyua/utils/cmdline/
H A Dcommands_map.ipp37 template< typename BaseCommand >
46 template< typename BaseCommand >
62 template< typename BaseCommand >
85 template< typename BaseCommand >
87 cmdline::commands_map< BaseCommand >::insert(BaseCommand* command,
97 template< typename BaseCommand >
108 template< typename BaseCommand >
119 template< typename BaseCommand >
132 template< typename BaseCommand >
133 BaseCommand*
[all …]
H A Dcommands_map.hpp56 template< typename BaseCommand >
59 typedef std::map< std::string, BaseCommand* > impl_map;
75 typedef typename std::auto_ptr< BaseCommand > command_ptr;
77 void insert(BaseCommand*, const std::string& = "");
87 BaseCommand* find(const std::string&);
88 const BaseCommand* find(const std::string&) const;
/freebsd-13.1/contrib/llvm-project/lld/ELF/
H A DLinkerScript.h85 struct BaseCommand { struct
86 BaseCommand(int k) : kind(k) {} in BaseCommand() argument
91 struct SymbolAssignment : BaseCommand { argument
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()
[all …]
H A DLinkerScript.cpp221 for (BaseCommand *base : sectionCommands) { in getSymbolAssignmentValues()
290 for (BaseCommand *base : sectionCommands) { in declareSymbols()
303 for (BaseCommand *base2 : sec->sectionCommands) in declareSymbols()
608 for (BaseCommand *&base : sectionCommands) in processSectionCommands()
642 for (BaseCommand *base : sectionCommands) { in processSymbolAssignments()
656 for (BaseCommand *base : vec) in findByName()
1035 for (BaseCommand *base : sec.sectionCommands) { in isDiscardable()
1084 for (BaseCommand *&cmd : sectionCommands) { in adjustSectionsBeforeSorting()
1135 for (BaseCommand *base : sectionCommands) { in adjustSectionsAfterSorting()
1162 for (BaseCommand *base : sectionCommands) in adjustSectionsAfterSorting()
[all …]
H A DOutputSections.h32 class OutputSection final : public BaseCommand, public SectionBase {
40 static bool classof(const BaseCommand *c);
85 std::vector<BaseCommand *> sectionCommands;
H A DOutputSections.cpp72 : BaseCommand(OutputSectionKind), in OutputSection()
169 for (BaseCommand *base : sectionCommands) { in finalizeInputSections()
240 bool OutputSection::classof(const BaseCommand *c) { in classof()
246 for (BaseCommand *b : sectionCommands) in sort()
370 for (BaseCommand *base : sectionCommands) in writeTo()
508 for (BaseCommand *base : os->sectionCommands) in getFirstInputSection()
517 for (BaseCommand *base : os->sectionCommands) in getInputSections()
H A DWriter.cpp336 for (BaseCommand *base : script->sectionCommands) in findSection()
796 for (BaseCommand *base : script->sectionCommands) { in addSectionSymbols()
1062 static bool compareSections(const BaseCommand *aCmd, const BaseCommand *bCmd) { in compareSections()
1238 static bool shouldSkip(BaseCommand *cmd) { in shouldSkip()
1247 static std::vector<BaseCommand *>::iterator
1253 auto i = std::max_element(b, e, [=](BaseCommand *a, BaseCommand *b) { in findOrphanPos()
1479 for (BaseCommand *b : sec->sectionCommands) in sortSection()
1523 for (BaseCommand *base : script->sectionCommands) in sortInputSections()
1782 for (BaseCommand *cmd : script->sectionCommands) in finalizeAddressDependentContent()
1912 for (BaseCommand *b : os->sectionCommands) in removeUnusedSyntheticSections()
[all …]
H A DScriptParser.cpp96 std::vector<BaseCommand *> readOverlay();
521 std::vector<BaseCommand *> ScriptParser::readOverlay() { in readOverlay()
531 std::vector<BaseCommand *> v; in readOverlay()
552 for (BaseCommand *cmd : v) in readOverlay()
568 std::vector<BaseCommand *> v; in readSections()
572 for (BaseCommand *cmd : readOverlay()) in readSections()
580 if (BaseCommand *cmd = readAssignment(tok)) in readSections()
600 for (BaseCommand *cmd : v) in readSections()
H A DMapFile.cpp167 for (BaseCommand *base : script->sectionCommands) { in writeMapFile()
182 for (BaseCommand *base : osec->sectionCommands) { in writeMapFile()
H A DICF.cpp552 for (BaseCommand *base : script->sectionCommands) in run()
554 for (BaseCommand *sub_base : sec->sectionCommands) in run()
H A DARMErrataFix.cpp528 for (BaseCommand *bc : os->sectionCommands) in createFixes()
H A DAArch64ErrataFix.cpp633 for (BaseCommand *bc : os->sectionCommands) in createFixes()
H A DRelocations.cpp69 for (BaseCommand *base : script->sectionCommands) in getLinkerScriptLocation()
1654 for (BaseCommand *bc : os->sectionCommands) in forEachInputSectionDescription()
1831 for (BaseCommand *bc : tos->sectionCommands) { in getISThunkSec()
H A DSyntheticSections.cpp903 for (BaseCommand *cmd : os->sectionCommands) { in build()
2334 for (BaseCommand *base : script->sectionCommands) in isNeeded()
3653 for (BaseCommand *base : getParent()->sectionCommands) in isNeeded()
3667 for (BaseCommand *base : getParent()->sectionCommands) in finalizeContents()
H A DDriver.cpp2477 for (BaseCommand *base : script->sectionCommands) in link()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp933 class BaseCommand : public CommandObjectMultiword { class
935 BaseCommand(CommandInterpreter &interpreter) in BaseCommand() function in sddarwinlog_private::BaseCommand
1377 auto command_sp = CommandObjectSP(new BaseCommand(interpreter)); in DebuggerInitialize()