HomeSort by relevance Sort by last modified time
    Searched defs:doesNotThrow (Results 1 - 12 of 12) sorted by null

  /external/catch2/projects/SelfTest/UsageTests/
Matchers.tests.cpp 56 void doesNotThrow() {}
311 CHECK_THROWS_MATCHES(doesNotThrow(), SpecialException, ExceptionMatcher{1});
312 REQUIRE_THROWS_MATCHES(doesNotThrow(), SpecialException, ExceptionMatcher{1});
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
CallSite.h 230 bool doesNotThrow() const {
231 CALLSITE_DELEGATE_GETTER(doesNotThrow());
233 void setDoesNotThrow(bool doesNotThrow = true) {
234 CALLSITE_DELEGATE_SETTER(setDoesNotThrow(doesNotThrow));
  /external/llvm/include/llvm/IR/
Statepoint.h 139 bool doesNotThrow() const {
141 return getCallSite().doesNotThrow() || (F ? F->doesNotThrow() : false);
CallSite.h 450 bool doesNotThrow() const {
451 CALLSITE_DELEGATE_GETTER(doesNotThrow());
Function.h 343 bool doesNotThrow() const {
389 return hasUWTable() || !doesNotThrow();
  /external/swiftshader/third_party/LLVM/include/llvm/
Function.h 246 bool doesNotThrow() const {
249 void setDoesNotThrow(bool DoesNotThrow = true) {
250 if (DoesNotThrow) addFnAttr(Attribute::NoUnwind);
268 return hasUWTable() || !doesNotThrow();
Instructions.h     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
Statepoint.h 159 bool doesNotThrow() const {
161 return getCallSite().doesNotThrow() || (F ? F->doesNotThrow() : false);
CallSite.h 505 bool doesNotThrow() const {
506 CALLSITE_DELEGATE_GETTER(doesNotThrow());
Function.h 506 bool doesNotThrow() const {
560 return hasUWTable() || !doesNotThrow() || hasPersonalityFn();
Instructions.h     [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Function.h 366 bool doesNotThrow() const {
412 return hasUWTable() || !doesNotThrow();

Completed in 275 milliseconds