Home | History | Annotate | Download | only in llvm-nm

Lines Matching refs:Name

100     "print-file-name",
103 cl::alias PrintFileNameA("A", cl::desc("Alias for --print-file-name"),
105 cl::alias PrintFileNameo("o", cl::desc("Alias for --print-file-name"),
141 cl::opt<bool> JustSymbolName("just-symbol-name",
142 cl::desc("Print just the symbol's name"));
143 cl::alias JustSymbolNames("j", cl::desc("Alias for --just-symbol-name"),
153 "and section name, Mach-O only"));
188 StringRef Name;
196 return std::make_tuple(ADefined, A.Address, A.Name, A.Size) <
197 std::make_tuple(BDefined, B.Address, B.Name, B.Size);
201 return std::make_tuple(A.Size, A.Name, A.Address) <
202 std::make_tuple(B.Size, B.Name, B.Address);
206 return std::make_tuple(A.Name, A.Size, A.Address) <
207 std::make_tuple(B.Name, B.Size, B.Address);
259 // Here we have a symbol definition. So to fake out a section name we
314 outs() << I->Name << "\n";
358 // For llvm bitcode files print out a fake section name using the values
427 outs() << I->Name << " (for ";
435 outs() << I->Name;
463 const char *Name;
500 for (unsigned i = 0; DarwinStabNames[i].Name; i++) {
502 return DarwinStabNames[i].Name;
507 // darwinPrintStab() prints the n_sect, n_desc along with a symbolic name of
564 << "Name Value Class Type"
602 outs() << I->Name << "\n";
633 outs() << I->Name << " " << I->TypeChar << " ";
648 outs() << " " << I->Name << "\n";
650 std::string PaddedName(I->Name);
693 ErrorOr<StringRef> Name = SymI->getName();
694 if (error(Name.getError()))
696 return StringSwitch<char>(*Name)
710 ErrorOr<StringRef> Name = SymI->getName();
711 if (error(Name.getError()))
714 char Ret = StringSwitch<char>(*Name)
964 SymbolList[I].Name = P;
995 [&](const std::string &Name) { return Name == T.getArchName(); })) {