Lines Matching refs:Name
48 // The name this program was invoked as.
136 // the name of the archive member to which the 'a', 'b' or 'i' modifier
141 // This variable holds the name of the archive file as given on the
173 // Get the archive file name from the command line
176 show_help("An archive name must be specified");
265 // the archive name.
302 static void doPrint(StringRef Name, const object::Archive::Child &C) {
304 outs() << "Printing " << Name << "\n";
324 static void doDisplayTable(StringRef Name, const object::Archive::Child &C) {
338 outs() << Name << "\n";
343 static void doExtract(StringRef Name, const object::Archive::Child &C) {
346 SmallString<128> Storage = Name;
403 StringRef Name = NameOrErr.get();
406 auto I = std::find(Members.begin(), Members.end(), Name);
416 doPrint(Name, C);
419 doDisplayTable(Name, C);
422 doExtract(Name, C);
428 for (StringRef Name : Members)
429 errs() << Name << " was not found\n";
443 const object::Archive::Child &M, StringRef Name,
447 NewArchiveIterator NI(M, Name);
464 StringRef Name,
470 std::find_if(Members.begin(), Members.end(), [Name](StringRef Path) {
471 return Name == sys::path::filename(Path);
526 StringRef Name
527 if (Name == PosName) {
537 computeInsertAction(Operation, Child, Name, MemberI);
540 addMember(Ret, Child, Name);
548 addMember(Moved, Child, Name);