Lines Matching refs:Name
68 // If the name is less than 8 bytes, store it in place, otherwise
70 StringRef Name = Sec.Name;
72 if (Name.size() <= COFF::NameSize) {
73 std::copy(Name.begin(), Name.end(), Sec.Header.Name);
76 unsigned Index = getStringIndex(Name);
82 Sec.Header.Name[0] = '/';
83 std::copy(str.begin(), str.end(), Sec.Header.Name + 1);
96 // If the name is less than 8 bytes, store it in place, otherwise
98 StringRef Name = Sym.Name;
99 if (Name.size() <= COFF::NameSize) {
100 std::copy(Name.begin(), Name.end(), Sym.Header.Name);
103 unsigned Index = getStringIndex(Name);
105 Sym.Header.Name + 4) = Index;
307 if (S.Name.equals(".text"))
309 else if (S.Name.equals(".data"))
422 OS.write(i->Header.Name, COFF::NameSize);
440 SymbolTableIndexMap[I->Name] = CurSymbol;
466 OS.write(i->Header.Name, COFF::NameSize);