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

  /external/clang/test/Analysis/
temp-obj-dtors-cfg-output.cpp 143 class NoReturn {
145 ~NoReturn() __attribute__((noreturn));
151 NoReturn().f();
157 NoReturn(), 47;
161 extern bool check(const NoReturn&);
166 if (!value || check(NoReturn())) {
176 if (!value || !value || check(NoReturn())) {
186 if (!value || value || check(NoReturn())) {
    [all...]
dtor.cpp 380 ~NRCheck() __attribute__((noreturn));
469 namespace NoReturn {
471 ~NR() __attribute__((noreturn));
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 223 constexpr int NoReturn() {} // expected-error {{no return statement in constexpr function}}
  /external/clang/test/SemaCXX/
return-noreturn.cpp 1 // RUN: %clang_cc1 %s -fsyntax-only -fcxx-exceptions -verify -Wreturn-type -Wmissing-noreturn -Wno-unreachable-code -Wno-covered-switch-default
2 // RUN: %clang_cc1 %s -fsyntax-only -fcxx-exceptions -std=c++11 -verify -Wreturn-type -Wmissing-noreturn -Wno-unreachable-code -Wno-covered-switch-default
4 // A destructor may be marked noreturn and should still influence the CFG.
5 void pr6884_abort() __attribute__((noreturn));
9 ~pr6884_abort_struct() __attribute__((noreturn)) { pr6884_abort(); }
43 // FIXME: detect noreturn destructors triggered by calls to delete.
149 struct NoReturn {
150 ~NoReturn() __attribute__((noreturn));
159 true ? NoReturn() : NoReturn()
    [all...]
cxx1y-deduced-return-type.cpp 304 namespace NoReturn {
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 58 /// terms of noreturn and default calling convention adjustments.
    [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp     [all...]

Completed in 121 milliseconds