Home
last modified time | relevance | path

Searched refs:commandString (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DLinkerScript.h122 std::string commandString; member
260 ByteCommand(Expr e, unsigned size, std::string commandString) in ByteCommand()
261 : SectionCommand(ByteKind), commandString(commandString), expression(e), in ByteCommand()
267 std::string commandString; member
H A DMapFile.cpp168 os << assign->commandString << '\n'; in writeMapFile()
200 os << indent8 << data->commandString << '\n'; in writeMapFile()
210 os << indent8 << assign->commandString << '\n'; in writeMapFile()
H A DScriptParser.cpp1179 cmd->commandString = StringRef(oldS, curTok.data() - oldS).str(); in readAssignment()
1180 squeezeSpaces(cmd->commandString); in readAssignment()
1389 std::string commandString = StringRef(oldS, curBuf.s.data() - oldS).str(); in readByteCommand() local
1390 squeezeSpaces(commandString); in readByteCommand()
1391 return make<ByteCommand>(e, size, std::move(commandString)); in readByteCommand()