Searched refs:toString (Results 1 - 25 of 264) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/llvm-project/lld/include/lld/Common/
H A DReproduce.h31 std::string toString(const llvm::opt::Arg &arg);
H A DErrorHandler.h144 fatal(llvm::toString(e.takeError()));
158 fatal(prefix() + ": " + toString(e.takeError()));
162 inline std::string toString(const Twine &s) { return s.str(); } function in namespace:lld
165 #define CHECK(E, S) check2((E), [&] { return toString(S); })
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DOptionalDiagnostic.h43 I.toString(Buffer);
54 // APFloat::toString would automatically print the shortest
60 F.toString(Buffer, precision);
69 FX.toString(Buffer);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DWasm.cpp11 std::string llvm::wasm::toString(wasm::WasmSymbolType Type) { function in class:llvm::wasm
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-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerUtilLinux.cpp24 std::string CmdLine = Cmd.toString();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DFindBugs.cpp69 outs() << toString(std::move(E));
81 errs() << toString(std::move(E));
H A DBugDriver.cpp37 errs() << "Failed to keep temp file " << toString(std::move(E)) << '\n';
41 errs() << "Failed to delete temp file " << toString(std::move(E)) << '\n';
189 outs() << toString(std::move(E));
202 errs() << toString(std::move(E));
219 errs() << toString(std::move(E));
225 errs() << toString(std::move(E));
234 errs() << toString(std::move(E));
/freebsd-11-stable/contrib/llvm-project/lld/ELF/Arch/
H A DMipsArchTree.cpp75 error(toString(f.file) + ": microMIPS 64-bit is not supported");
79 error(toString(f.file) + ": ABI '" + getAbiName(abi2) +
84 error(toString(f.file) + ": -mnan=" + getNanName(nan2) +
89 error(toString(f.file) + ": -mfp" + getFpName(fp2) +
109 warn(toString(f.file) +
111 toString(files[0].file));
113 warn(toString(f.file) +
115 toString(files[0].file));
287 error("incompatible target ISA:\n>>> " + toString(files[0].file) + ": " +
288 getFullArchName(ret) + "\n>>> " + toString(
[all...]
H A DAVR.cpp70 error(getErrorLocation(loc) + "unrecognized relocation " + toString(type));
H A DAMDGPU.cpp55 error("incompatible e_flags: " + toString(f));
100 ") against symbol " + toString(s));
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp56 llvm::errs() << "Skipping replacement " << Replacement.toString()
58 << toString(std::move(Err)) << "\n";
97 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
116 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
136 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
147 llvm::errs() << llvm::toString(std::move(Err)) << "\n";
234 << "! " << llvm::toString(std::move(Err)) << "\n";
H A DRefactoring.cpp90 llvm::errs() << llvm::toString(CurStyle.takeError()) << "\n";
97 llvm::errs() << llvm::toString(NewReplacements.takeError()) << "\n";
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp41 *GetOutputStreamFileSP() << llvm::toString(std::move(error));
61 llvm::toString(std::move(e)));
92 filename, llvm::toString(std::move(e)));
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DFixedPoint.h164 void toString(llvm::SmallVectorImpl<char> &Str) const;
165 std::string toString() const { function in class:clang::APFixedPoint
167 toString(S);
206 OS << FX.toString();
/freebsd-11-stable/contrib/llvm-project/lld/ELF/
H A DInputFiles.cpp42 std::string toString(const elf::InputFile *f) { function in namespace:lld
142 error(toString(file) + " is incompatible with " + config->emulation);
154 error(toString(file) + " is incompatible with " + toString(existing));
183 message(toString(file));
359 fatal(toString(this) + ": invalid sh_info in symbol table");
402 fatal(toString(this) + ": invalid symbol index");
451 fatal(toString(this) + ":(" + name + "): SHF_MERGE section size (" +
459 fatal(toString(this) + ":(" + name +
495 error(toString(
[all...]
H A DInputSection.cpp42 std::string toString(const elf::InputSectionBase *sec) { function in namespace:lld
43 return (toString(sec->file) + ":(" + sec->name + ")").str();
69 error(toString(this) + ": section too large");
78 fatal(toString(this) + ": sh_addralign is not a power of 2");
87 error(toString(file) + ": contains a compressed section, " +
133 fatal(toString(&file) + ": section sh_addralign is too large");
154 fatal(toString(this) +
155 ": uncompress failed: " + llvm::toString(std::move(e)));
218 error(toString(this) + ": corrupted compressed section header");
224 error(toString(thi
[all...]
H A DMapFile.cpp82 // Demangling symbols (which is what toString() does) is slow, so
93 os << indent16 << toString(*syms[i]);
136 os << indent8 << toString(p.sec->file) << ":(" << p.sec->name << "+0x"
189 os << indent8 << toString(isec) << '\n';
255 print(toString(*sym), toString(sym->file));
258 print("", toString(file));
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...]
/freebsd-11-stable/contrib/llvm-project/lld/COFF/
H A DSymbolTable.cpp36 log("Reading " + toString(file));
43 error(toString(file) + ": machine type " + machineToStr(mt) +
108 res += toString(file);
164 return std::vector<std::string>({"\n>>> referenced by " + toString(file)});
174 os << toString(file);
176 os << ":(" << toString(*loc.sym) << ')';
205 os << "undefined symbol: " << toString(*undefDiag.sym);
274 toString(cast<DefinedRegular>(imp)->file));
278 " from " + toString(cast<DefinedRegular>(imp)->file) +
322 errorOrWarn("<root>: undefined symbol: " + toString(*
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestMultiAggPrinta.java57 return buf.toString();
100 return buf.toString();
H A DTestProbeData.java72 return buf.toString();
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyClassDefinitionDumper.cpp100 Pct.toString(PctStr, 4);
108 Pct2.toString(PctStr, 4);
/freebsd-11-stable/contrib/llvm-project/lld/Common/
H A DDWARF.cpp62 dwarf::toString(die.find(dwarf::DW_AT_linkage_name),
63 dwarf::toString(die.find(dwarf::DW_AT_name), ""));
H A DReproduce.cpp53 std::string lld::toString(const opt::Arg &arg) { function in class:lld

Completed in 195 milliseconds

1234567891011