Searched refs:toString (Results 26 - 50 of 279) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/llvm-project/lld/ELF/
H A DSymbols.cpp34 std::string toString(const elf::Symbol &b) { return demangle(b.getName()); } function in namespace:lld
119 fatal(toString(d.file) +
236 error(toString(file) + ": symbol " + s + " has undefined version " +
304 message(toString(sym->file) + s + sym->getName());
323 auto report = [&](StringRef s) { warn(toString(file) + s + sym->getName()); };
503 toString(other.file) + " refers to " + toString(file));
592 error("duplicate symbol: " + toString(*sym) + "\n>>> defined in " +
593 toString(sym->file) + "\n>>> defined in " + toString(newFil
[all...]
H A DRelocations.cpp85 msg += toString(sym.file);
424 error("relocation " + toString(type) + " cannot refer to absolute symbol: " +
425 toString(sym) + getLocation(s, sym, relOff));
562 fatal("cannot create a copy relocation for symbol " + toString(ss));
620 warn("can't find matching " + toString(pairTy) + " relocation for " +
621 toString(type));
667 toString(sym);
669 msg += "\n>>> defined in " + toString(file);
680 "\n>>> prevailing definition is in " + toString(prevailing);
851 msg = "undefined " + visibility() + "symbol: " + toString(sy
[all...]
H A DTarget.h19 std::string toString(elf::RelType type);
207 errorOrWarn(errPlace.loc + "relocation " + lld::toString(type) +
236 lld::toString(type) + ": 0x" + llvm::utohexstr(v) +
/freebsd-12-stable/contrib/llvm-project/lld/Common/
H A DReproduce.cpp53 std::string lld::toString(const opt::Arg &arg) { function in class:lld
H A DStrings.cpp38 error(toString(pat.takeError()));
/freebsd-12-stable/contrib/llvm-project/lld/ELF/Arch/
H A DMSP430.cpp87 error(getErrorLocation(loc) + "unrecognized relocation " + toString(type));
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
H A DSBReproducer.cpp111 error = llvm::toString(std::move(e));
121 error = llvm::toString(std::move(e));
134 error = llvm::toString(std::move(e));
147 error = llvm::toString(version.takeError());
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/
H A DMonitoringProcessLauncher.cpp61 llvm::toString(maybe_thread.takeError()));
/freebsd-12-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueRegex.cpp54 error.SetErrorString(llvm::toString(std::move(err)));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DMsgPackDocumentYAML.cpp28 /// returns something else if the result of toString would be ambiguous, e.g.
36 std::string DocNode::toString() const { function in class:DocNode
109 /// returns something else if the result of toString would be ambiguous, e.g.
117 N.fromString(toString(), "");
178 OS << S.toString();
218 IO.mapRequired(I.first.toString().c_str(), I.second);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A Dyaml2obj.cpp72 ErrHandler(toString(ObjOrErr.takeError()));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUPALMetadata.h89 void toString(std::string &S);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DMatchConsumer.h56 /// reflection via the `toString` method.
82 virtual std::string toString() const = 0;
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestProbeData.java72 return buf.toString();
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp303 llvm::toString(HeaderReplacements.takeError()));
309 llvm::toString(Replaces.takeError()));
317 llvm::toString(std::move(Err)));
325 llvm::toString(CleanReplaces.takeError()));
334 llvm::toString(ChangedCode.takeError()));
345 llvm::toString(ChangedCode.takeError()));
358 llvm::toString(ChangedCode.takeError()));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/
H A DCaching.cpp127 toString(std::move(E)) + "\n");
140 errs() << "Error: " << toString(Temp.takeError()) << "\n";
/freebsd-12-stable/contrib/llvm-project/clang/lib/Format/
H A DTokenAnalyzer.cpp93 llvm::dbgs() << I->toString() << "\n";
106 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
/freebsd-12-stable/contrib/opencsd/decoder/source/stm/
H A Dtrc_pkt_elem_stm.cpp85 void StmTrcPacket::toString(std::string &str) const function in class:StmTrcPacket
165 toString(str);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFFormValue.h161 inline Optional<const char *> toString(const Optional<DWARFFormValue> &V) { function in namespace:llvm::dwarf
186 inline const char *toString(const Optional<DWARFFormValue> &V, function in namespace:llvm::dwarf
188 return toString(V).getValueOr(Default);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPSInt.h81 /// toString - Append this APSInt to the specified SmallString.
82 void toString(SmallVectorImpl<char> &Str, unsigned Radix = 10) const { function in class:llvm::APSInt
83 APInt::toString(Str, Radix, isSigned());
85 /// toString - Converts an APInt to a std::string. This is an inefficient
87 std::string toString(unsigned Radix) const { function in class:llvm::APSInt
88 return APInt::toString(Radix, isSigned());
90 using APInt::toString;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DStencil.cpp143 Data.Member->toString() + ")")
149 Data.TrueStencil->toString() + ", " + Data.FalseStencil->toString() +
162 Parts.push_back(S->toString());
293 std::string toString() const override { return toStringData(Data); }
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp59 std::string toString(const coff::InputFile *file) { function in namespace:lld
136 ": Archive::children failed: " + toString(std::move(err)));
191 fatal(toString(this) + " is not a COFF file");
239 toString(e.takeError()));
319 error(toString(this) + ": associative comdat " + name + " (sec " +
522 log(("conflicting comdat type for " + toString(*leader) + ": " +
523 Twine((int)leaderSelection) + " in " + toString(leader->getFile()) +
524 " and " + Twine((int)selection) + " in " + toString(this))
621 fatal(toString(this) + ": " + getName() +
625 fatal(toString(thi
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java153 req.s = buf.toString();
171 out.printf(stringFormat, value.toString());
179 logger.finer(data.toString());
232 buf.toString());
241 buf.toString());
257 out.print(record.toString());
280 logger.fine(printa.toString());
424 return buf.toString();
469 printValue(tupleRecord.toString(), -1, " %-50s");
986 logger.fine(error.toString());
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp377 return dwarf::toString(getUnitDIE().find(DW_AT_comp_dir), nullptr);
437 WithColor::error() << toString(std::move(e));
487 toString(StringOffsetOrError.takeError()));
510 toString(TableOrError.takeError()));
548 toString(std::move(E)));
566 ? dwarf::toString(UnitDie.find(DW_AT_dwo_name))
567 : dwarf::toString(UnitDie.find(DW_AT_GNU_dwo_name));
570 auto CompilationDir = dwarf::toString(UnitDie.find(DW_AT_comp_dir));
600 << toString(TableOrError.takeError())
663 toString(CUDIERangesOrErro
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DFormatString.h49 const char *toString() const { return representation; } function in class:clang::analyze_format_string::OptionalFlag
114 const char *toString() const;
236 const char *toString() const;
376 void toString(raw_ostream &os) const;
607 void toString(raw_ostream &os) const;
678 void toString(raw_ostream &os) const;

Completed in 384 milliseconds

1234567891011>>