Lines Matching defs:SecName
289 static Error dumpSectionToFile(StringRef SecName, StringRef Filename,
293 if (Sec->CanonicalName == SecName) {
308 SecName.str().c_str());
341 static Expected<Section &> findSection(StringRef SecName, Object &O) {
343 std::tie(SegName, SecName) = SecName.split(",");
353 [SecName](const std::unique_ptr<Section> &Sec) {
354 return Sec->Sectname == SecName;
359 SecName.str().c_str());
361 assert(FoundSec->get()->CanonicalName == (SegName + "," + SecName).str());