HomeSort by relevance Sort by last modified time
    Searched defs:ProgName (Results 1 - 3 of 3) sorted by null

  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 188 static const Target *GetTarget(const char *ProgName) {
199 errs() << ProgName << ": " << Error;
320 static int AssembleInput(const char *ProgName, const Target *TheTarget,
327 errs() << ProgName
361 const char *ProgName = argv[0];
362 const Target *TheTarget = GetTarget(ProgName);
368 errs() << ProgName << ": " << ec.message() << '\n';
462 Res = AssembleInput(ProgName, TheTarget, SrcMgr, Ctx, *Str, *MAI, *STI);
  /external/llvm/lib/Support/
SourceMgr.cpp 343 void SMDiagnostic::print(const char *ProgName, raw_ostream &S,
351 if (ProgName && ProgName[0])
352 S << ProgName << ": ";
CommandLine.cpp 685 /// from the caller (as PROGNAME) and its command-line arguments from
688 void cl::ParseEnvironmentOptions(const char *progName, const char *envVar,
691 assert(progName && "Program name not specified");
703 newArgv.push_back(Saver.SaveString(progName));
732 // Copy the program name into ProgName, making sure not to overflow it.
733 std::string ProgName = sys::path::filename(argv[0]);
734 size_t Len = std::min(ProgName.size(), size_t(79));
735 memcpy(ProgramName, ProgName.data(), Len);
    [all...]

Completed in 199 milliseconds