Home
last modified time | relevance | path

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

12345678910>>...168

/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/tools/llvm-profgen/
H A DErrorHandling.h22 StringRef Whence = StringRef(),
25 if (!Whence.empty())
26 errs() << Whence.str() << ": ";
34 StringRef Whence = StringRef()) {
35 exitWithError(EC.message(), Whence);
38 [[noreturn]] inline void exitWithError(Error E, StringRef Whence) { in exitWithError() argument
39 exitWithError(errorToErrorCode(std::move(E)), Whence); in exitWithError()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/tools/llvm-profgen/
H A DErrorHandling.h22 exitWithError(const Twine &Message, StringRef Whence = StringRef(),
25 if (!Whence.empty())
26 errs() << Whence.str() << ": ";
34 exitWithError(std::error_code EC, StringRef Whence = StringRef()) {
35 exitWithError(EC.message(), Whence);
38 LLVM_ATTRIBUTE_NORETURN inline void exitWithError(Error E, StringRef Whence) { in exitWithError() argument
39 exitWithError(errorToErrorCode(std::move(E)), Whence); in exitWithError()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/tools/llvm-profgen/
H A DErrorHandling.h22 exitWithError(const Twine &Message, StringRef Whence = StringRef(),
25 if (!Whence.empty())
26 errs() << Whence.str() << ": ";
34 exitWithError(std::error_code EC, StringRef Whence = StringRef()) {
35 exitWithError(EC.message(), Whence);
38 LLVM_ATTRIBUTE_NORETURN inline void exitWithError(Error E, StringRef Whence) { in exitWithError() argument
39 exitWithError(errorToErrorCode(std::move(E)), Whence); in exitWithError()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/tools/llvm-profgen/
H A DErrorHandling.h22 exitWithError(const Twine &Message, StringRef Whence = StringRef(),
25 if (!Whence.empty())
26 errs() << Whence.str() << ": ";
34 exitWithError(std::error_code EC, StringRef Whence = StringRef()) {
35 exitWithError(EC.message(), Whence);
38 LLVM_ATTRIBUTE_NORETURN inline void exitWithError(Error E, StringRef Whence) { in exitWithError() argument
39 exitWithError(errorToErrorCode(std::move(E)), Whence); in exitWithError()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/tools/llvm-profgen/
H A DErrorHandling.h22 exitWithError(const Twine &Message, StringRef Whence = StringRef(),
25 if (!Whence.empty())
26 errs() << Whence.str() << ": ";
34 exitWithError(std::error_code EC, StringRef Whence = StringRef()) {
35 exitWithError(EC.message(), Whence);
38 LLVM_ATTRIBUTE_NORETURN inline void exitWithError(Error E, StringRef Whence) { in exitWithError() argument
39 exitWithError(errorToErrorCode(std::move(E)), Whence); in exitWithError()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/tools/llvm-profgen/
H A DErrorHandling.h22 exitWithError(const Twine &Message, StringRef Whence = StringRef(),
25 if (!Whence.empty())
26 errs() << Whence.str() << ": ";
34 exitWithError(std::error_code EC, StringRef Whence = StringRef()) {
35 exitWithError(EC.message(), Whence);
38 LLVM_ATTRIBUTE_NORETURN inline void exitWithError(Error E, StringRef Whence) { in exitWithError() argument
39 exitWithError(errorToErrorCode(std::move(E)), Whence); in exitWithError()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/tools/llvm-profgen/
H A DErrorHandling.h22 exitWithError(const Twine &Message, StringRef Whence = StringRef(),
25 if (!Whence.empty())
26 errs() << Whence.str() << ": ";
34 exitWithError(std::error_code EC, StringRef Whence = StringRef()) {
35 exitWithError(EC.message(), Whence);
38 LLVM_ATTRIBUTE_NORETURN inline void exitWithError(Error E, StringRef Whence) { in exitWithError() argument
39 exitWithError(errorToErrorCode(std::move(E)), Whence); in exitWithError()
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/tools/llvm-profgen/
H A DErrorHandling.h22 exitWithError(const Twine &Message, StringRef Whence = StringRef(),
25 if (!Whence.empty())
26 errs() << Whence.str() << ": ";
34 exitWithError(std::error_code EC, StringRef Whence = StringRef()) {
35 exitWithError(EC.message(), Whence);
38 LLVM_ATTRIBUTE_NORETURN inline void exitWithError(Error E, StringRef Whence) { in exitWithError() argument
39 exitWithError(errorToErrorCode(std::move(E)), Whence); in exitWithError()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", in warn() argument
48 std::string WhenceStr = Whence.str(); in warn()
56 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
59 std::string WhenceStr = Whence.str(); in exitWithError()
68 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
69 exitWithError(toString(std::move(E)), Whence); in exitWithError()
72 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
73 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/dports/devel/llvm11/llvm-11.0.1.src/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", in warn() argument
48 std::string WhenceStr = Whence.str(); in warn()
56 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
59 std::string WhenceStr = Whence.str(); in exitWithError()
68 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
69 exitWithError(toString(std::move(E)), Whence); in exitWithError()
72 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
73 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/dports/devel/llvm90/llvm-9.0.1.src/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", in warn() argument
48 std::string WhenceStr = Whence.str(); in warn()
56 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
59 std::string WhenceStr = Whence.str(); in exitWithError()
68 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
69 exitWithError(toString(std::move(E)), Whence); in exitWithError()
72 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
73 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/dports/devel/llvm10/llvm-10.0.1.src/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", in warn() argument
48 std::string WhenceStr = Whence.str(); in warn()
56 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
59 std::string WhenceStr = Whence.str(); in exitWithError()
68 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
69 exitWithError(toString(std::move(E)), Whence); in exitWithError()
72 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
73 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", in warn() argument
48 std::string WhenceStr = Whence.str(); in warn()
56 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
59 std::string WhenceStr = Whence.str(); in exitWithError()
68 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
69 exitWithError(toString(std::move(E)), Whence); in exitWithError()
72 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
73 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", in warn() argument
48 std::string WhenceStr = Whence.str(); in warn()
56 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
59 std::string WhenceStr = Whence.str(); in exitWithError()
68 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
69 exitWithError(toString(std::move(E)), Whence); in exitWithError()
72 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
73 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", in warn() argument
48 std::string WhenceStr = Whence.str(); in warn()
56 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
59 std::string WhenceStr = Whence.str(); in exitWithError()
68 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
69 exitWithError(toString(std::move(E)), Whence); in exitWithError()
72 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
73 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/tools/llvm-cxxmap/
H A Dllvm-cxxmap.cpp45 static void warn(Twine Message, Twine Whence = "", in warn() argument
48 std::string WhenceStr = Whence.str(); in warn()
56 static void exitWithError(Twine Message, Twine Whence = "", in exitWithError() argument
59 std::string WhenceStr = Whence.str(); in exitWithError()
68 static void exitWithError(Error E, StringRef Whence = "") { in exitWithError() argument
69 exitWithError(toString(std::move(E)), Whence); in exitWithError()
72 static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { in exitWithErrorCode() argument
73 exitWithError(EC.message(), Whence); in exitWithErrorCode()
/dports/devel/llvm80/llvm-8.0.1.src/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()
/dports/emulators/mess/mame-mame0226/3rdparty/bx/include/bx/inline/
H A Dreaderwriter.inl103 case Whence::Begin:
107 case Whence::Current:
111 case Whence::End:
155 case Whence::Begin:
159 case Whence::Current:
163 case Whence::End:
218 case Whence::Begin:
222 case Whence::Current:
226 case Whence::End:
385 _seeker->seek(offset, Whence::Begin);
[all …]
/dports/emulators/mame/mame-mame0226/3rdparty/bx/include/bx/inline/
H A Dreaderwriter.inl103 case Whence::Begin:
107 case Whence::Current:
111 case Whence::End:
155 case Whence::Begin:
159 case Whence::Current:
163 case Whence::End:
218 case Whence::Begin:
222 case Whence::Current:
226 case Whence::End:
385 _seeker->seek(offset, Whence::Begin);
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/services/filesystem/
H A Dutil.cc50 static_assert(static_cast<int>(filesystem::mojom::Whence::FROM_BEGIN) ==
53 static_assert(static_cast<int>(filesystem::mojom::Whence::FROM_CURRENT) ==
56 static_assert(static_cast<int>(filesystem::mojom::Whence::FROM_END) ==
62 base::File::Error IsWhenceValid(mojom::Whence whence) { in IsWhenceValid()
63 return (whence == mojom::Whence::FROM_CURRENT || in IsWhenceValid()
64 whence == mojom::Whence::FROM_BEGIN || in IsWhenceValid()
65 whence == mojom::Whence::FROM_END) in IsWhenceValid()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/services/filesystem/
H A Dutil.cc51 static_assert(static_cast<int>(filesystem::mojom::Whence::FROM_BEGIN) ==
54 static_assert(static_cast<int>(filesystem::mojom::Whence::FROM_CURRENT) ==
57 static_assert(static_cast<int>(filesystem::mojom::Whence::FROM_END) ==
63 base::File::Error IsWhenceValid(mojom::Whence whence) { in IsWhenceValid()
64 return (whence == mojom::Whence::FROM_CURRENT || in IsWhenceValid()
65 whence == mojom::Whence::FROM_BEGIN || in IsWhenceValid()
66 whence == mojom::Whence::FROM_END) in IsWhenceValid()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/tools/llvm-cxxmap/
H A 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()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/tools/llvm-cxxmap/
H A 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()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/tools/llvm-cxxmap/
H A 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()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/tools/llvm-cxxmap/
H A 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()

12345678910>>...168