Home | History | Annotate | Download | only in Object

Lines Matching refs:Name

453 // Returns hint and name fields, assuming \p Rva is pointing to a Hint/Name
456 StringRef &Name) const {
462 Name = StringRef(reinterpret_cast<const char *>(Ptr + 2));
865 if (Symbol->Name.Offset.Zeroes == 0) {
866 if (std::error_code EC = getString(Symbol->Name.Offset.Offset, Res))
871 if (Symbol->Name.ShortName[COFF::NameSize - 1] == 0)
873 Res = StringRef(Symbol->Name.ShortName);
876 Res = StringRef(Symbol->Name.ShortName, COFF::NameSize);
905 StringRef Name;
906 if (Sec->Name[COFF::NameSize - 1] == 0)
908 Name = Sec->Name;
911 Name = StringRef(Sec->Name, COFF::NameSize);
914 if (Name.startswith("/")) {
916 if (Name.startswith("//")) {
917 if (decodeBase64StringEntry(Name.substr(2), Offset))
920 if (Name.substr(1).getAsInteger(10, Offset))
923 if (std::error_code EC = getString(Offset, Name))
927 Res = Name;
1239 if (std::error_code EC = OwningObject->getRvaPtr(Table[Index].Name, IntPtr))
1274 // Returns the name of the current export symbol. If the symbol is exported only
1310 // Returns the name of the current export symbol. If the symbol is exported only
1353 // If a symbol is imported only by ordinal, it has no name.