Home
last modified time | relevance | path

Searched refs:Whence (Results 1 – 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cxxmap/
Dllvm-cxxmap.cpp56 static void warn(Twine Message, Twine Whence = "", in warn() argument
59 std::string WhenceStr = Whence.str(); in warn()
67 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
70 std::string WhenceStr = Whence.str(); in exitWithError()
79 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
80 exitWithError(toString(std::move(E)), Whence); in exitWithError()
83 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
84 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cov/
DCodeCoverage.cpp70 void error(const Twine &Message, StringRef Whence = "");
73 void warning(const Twine &Message, StringRef Whence = "");
184 static std::string getErrorString(const Twine &Message, StringRef Whence, in getErrorString() argument
188 if (!Whence.empty()) in getErrorString()
189 Str += Whence.str() + ": "; in getErrorString()
194 void CodeCoverageTool::error(const Twine &Message, StringRef Whence) { in error() argument
197 << getErrorString(Message, Whence, false); in error()
200 void CodeCoverageTool::warning(const Twine &Message, StringRef Whence) { in warning() argument
203 << getErrorString(Message, Whence, true); in warning()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp48 static void warn(Twine Message, std::string Whence = "", in warn() argument
51 if (!Whence.empty()) in warn()
52 errs() << Whence << ": "; in warn()
58 static void warn(Error E, StringRef Whence = "") { in warn() argument
61 warn(IPE.message(), std::string(Whence), std::string("")); in warn()
66 static void exitWithError(Twine Message, std::string Whence = "", in exitWithError() argument
69 if (!Whence.empty()) in exitWithError()
70 errs() << Whence << ": "; in exitWithError()
77 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
86 exitWithError(IPE.message(), std::string(Whence), std::string(Hint)); in exitWithError()
[all …]
/freebsd-12-stable/usr.bin/truss/
Dsyscall.h137 Whence, enumerator
Dsyscalls.c324 .args = { { Int, 0 }, { QuadHex, 1 }, { Whence, 2 } } },
563 .args = { { Int, 0 }, { Int, 1 }, { Whence, 2 } } },
2032 case Whence: in print_arg()