Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp46 static void warn(Twine Message, Twine Whence = "", in warn() argument
49 std::string WhenceStr = Whence.str(); in warn()
57 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
60 std::string WhenceStr = Whence.str(); in exitWithError()
69 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
70 exitWithError(toString(std::move(E)), Whence); in exitWithError()
73 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
74 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/freebsd-12.1/contrib/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp45 static void warn(Twine Message, std::string Whence = "", in warn() argument
48 if (!Whence.empty()) in warn()
49 errs() << Whence << ": "; in warn()
55 static void exitWithError(Twine Message, std::string Whence = "", in exitWithError() argument
58 if (!Whence.empty()) in exitWithError()
59 errs() << Whence << ": "; in exitWithError()
66 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
75 exitWithError(IPE.message(), Whence, Hint); in exitWithError()
79 exitWithError(toString(std::move(E)), Whence); in exitWithError()
82 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-cov/
H A DCodeCoverage.cpp69 void error(const Twine &Message, StringRef Whence = "");
72 void warning(const Twine &Message, StringRef Whence = "");
165 static std::string getErrorString(const Twine &Message, StringRef Whence, in getErrorString() argument
169 if (!Whence.empty()) in getErrorString()
170 Str += Whence.str() + ": "; in getErrorString()
175 void CodeCoverageTool::error(const Twine &Message, StringRef Whence) { in error() argument
178 << getErrorString(Message, Whence, false); in error()
181 void CodeCoverageTool::warning(const Twine &Message, StringRef Whence) { in warning() argument
184 << getErrorString(Message, Whence, true); in warning()
/freebsd-12.1/usr.bin/truss/
H A Dsyscall.h136 Whence, enumerator
H A Dsyscalls.c317 .args = { { Int, 0 }, { QuadHex, 1 }, { Whence, 2 } } },
547 .args = { { Int, 0 }, { Int, 1 }, { Whence, 2 } } },
1976 case Whence: in print_arg()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DStreamChecker.cpp260 SVal Whence = state->getSVal(CE->getArg(2), C.getLocationContext()); in Fseek() local
261 Optional<nonloc::ConcreteInt> CI = Whence.getAs<nonloc::ConcreteInt>(); in Fseek()