Home
last modified time | relevance | path

Searched refs:NoReturn (Results 1 – 25 of 114) sorted by relevance

12345

/external/clang/test/SemaCXX/
Dreturn-noreturn.cpp149 struct NoReturn { struct
150 ~NoReturn() __attribute__((noreturn));
159 true ? NoReturn() : NoReturn(); in testTernaryUnconditionalNoreturn()
163 true ? NoReturn() : Return(); in testTernaryStaticallyConditionalNoretrunOnTrue()
167 true ? Return() : NoReturn(); in testTernaryStaticallyConditionalRetrunOnTrue()
171 false ? Return() : NoReturn(); in testTernaryStaticallyConditionalNoretrunOnFalse()
175 false ? NoReturn() : Return(); in testTernaryStaticallyConditionalRetrunOnFalse()
179 value ? (NoReturn() || NoReturn()) : Return(); in testTernaryConditionalNoreturnTrueBranch()
183 value ? Return() : (NoReturn() || NoReturn()); in testTernaryConditionalNoreturnFalseBranch()
187 value || (true ? NoReturn() : true); in testConditionallyExecutedComplexTernaryTrueBranch()
[all …]
/external/llvm-project/clang/test/SemaCXX/
Dreturn-noreturn.cpp149 struct NoReturn { struct
150 ~NoReturn() __attribute__((noreturn));
159 true ? NoReturn() : NoReturn(); in testTernaryUnconditionalNoreturn()
163 true ? NoReturn() : Return(); in testTernaryStaticallyConditionalNoretrunOnTrue()
167 true ? Return() : NoReturn(); in testTernaryStaticallyConditionalRetrunOnTrue()
171 false ? Return() : NoReturn(); in testTernaryStaticallyConditionalNoretrunOnFalse()
175 false ? NoReturn() : Return(); in testTernaryStaticallyConditionalRetrunOnFalse()
179 value ? (NoReturn() || NoReturn()) : Return(); in testTernaryConditionalNoreturnTrueBranch()
183 value ? Return() : (NoReturn() || NoReturn()); in testTernaryConditionalNoreturnFalseBranch()
187 value || (true ? NoReturn() : true); in testConditionallyExecutedComplexTernaryTrueBranch()
[all …]
/external/clang/test/Analysis/
Dtemp-obj-dtors-cfg-output.cpp143 class NoReturn { class
145 ~NoReturn() __attribute__((noreturn));
151 NoReturn().f(); in test_noreturn1()
157 NoReturn(), 47; in test_noreturn2()
161 extern bool check(const NoReturn&);
166 if (!value || check(NoReturn())) { in testConsistencyNestedSimple()
176 if (!value || !value || check(NoReturn())) { in testConsistencyNestedComplex()
186 if (!value || value || check(NoReturn())) { in testConsistencyNestedNormalReturn()
/external/llvm-project/clang/test/Analysis/
Dtemp-obj-dtors-cfg-output.cpp158 class NoReturn { class
160 ~NoReturn() __attribute__((noreturn));
166 NoReturn().f(); in test_noreturn1()
172 NoReturn(), 47; in test_noreturn2()
176 extern bool check(const NoReturn&);
181 if (!value || check(NoReturn())) { in testConsistencyNestedSimple()
191 if (!value || !value || check(NoReturn())) { in testConsistencyNestedComplex()
201 if (!value || value || check(NoReturn())) { in testConsistencyNestedNormalReturn()
/external/pigweed/pw_cli/py/pw_cli/
D__main__.py19 from typing import NoReturn
27 def main() -> NoReturn:
Darguments.py20 from typing import NoReturn
49 def error(self, message: str) -> NoReturn:
/external/pigweed/pw_watch/py/pw_watch/
Dwatch.py47 from typing import (Iterable, List, NamedTuple, NoReturn, Optional, Sequence,
97 def _die(*args) -> NoReturn:
167 def _wait_for_enter(self) -> NoReturn:
309 def on_keyboard_interrupt(self) -> NoReturn:
380 def _exit(code: int) -> NoReturn:
390 def _exit_due_to_interrupt() -> NoReturn:
/external/autotest/metadata/utils/
Dextract_configs.py12 from typing import Generator, List, DefaultDict, NoReturn, Optional, Tuple
51 def _delete_existing_defs() -> NoReturn:
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetFrameLoweringImpl.cpp34 assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in enableCalleeSaveSkip()
111 if (MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in determineCalleeSaves()
/external/llvm-project/llvm/lib/CodeGen/
DTargetFrameLoweringImpl.cpp34 assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in enableCalleeSaveSkip()
113 if (MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in determineCalleeSaves()
/external/pigweed/pw_hdlc/py/pw_hdlc/
Drpc.py21 from typing import (Any, BinaryIO, Callable, Dict, Iterable, List, NoReturn,
73 handler_threads: Optional[int] = 1) -> NoReturn:
/external/llvm-project/llvm/unittests/IR/
DAttributesTest.cpp61 B.addAttribute(Attribute::NoReturn); in TEST()
63 EXPECT_TRUE(AL.hasFnAttribute(Attribute::NoReturn)); in TEST()
68 EXPECT_TRUE(AL.hasFnAttribute(Attribute::NoReturn)); in TEST()
/external/llvm-project/libc/spec/
Dllvm_libc_ext.td25 RetValSpec<NoReturn>,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DPruneEH.cpp160 if (!SCCMightReturn && !F->hasFnAttribute(Attribute::NoReturn)) { in runImpl()
161 F->addFnAttr(Attribute::NoReturn); in runImpl()
/external/llvm-project/llvm/lib/Transforms/IPO/
DPruneEH.cpp150 if (!SCCMightReturn && !F->hasFnAttribute(Attribute::NoReturn)) { in runImpl()
151 F->addFnAttr(Attribute::NoReturn); in runImpl()
/external/llvm/lib/Transforms/IPO/
DPruneEH.cpp164 if (!SCCMightReturn && !F->hasFnAttribute(Attribute::NoReturn)) { in runImpl()
165 F->addFnAttr(Attribute::NoReturn); in runImpl()
DForceFunctionAttrs.cpp44 .Case("noreturn", Attribute::NoReturn) in parseAttrKind()
/external/clang/include/clang/CodeGen/
DCGFunctionInfo.h473 unsigned NoReturn : 1; variable
557 bool isNoReturn() const { return NoReturn; } in isNoReturn()
624 ID.AddBoolean(NoReturn); in Profile()
/external/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/
DAttributes.gen30 NoReturn,
87 .Case("noreturn", Attribute::NoReturn)
284 return llvm::Attribute::NoReturn;
/external/llvm-project/clang/include/clang/CodeGen/
DCGFunctionInfo.h555 unsigned NoReturn : 1; variable
646 bool isNoReturn() const { return NoReturn; } in isNoReturn()
719 ID.AddBoolean(NoReturn); in Profile()
/external/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/
DAttributes.gen30 NoReturn,
87 .Case("noreturn", Attribute::NoReturn)
284 return llvm::Attribute::NoReturn;
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/
DAttributes.gen30 NoReturn,
87 .Case("noreturn", Attribute::NoReturn)
284 return llvm::Attribute::NoReturn;
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/
DAttributes.gen30 NoReturn,
87 .Case("noreturn", Attribute::NoReturn)
284 return llvm::Attribute::NoReturn;
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/
DAttributes.gen30 NoReturn,
87 .Case("noreturn", Attribute::NoReturn)
284 return llvm::Attribute::NoReturn;
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DAttributes.inc30 NoReturn,
87 .Case("noreturn", Attribute::NoReturn)
284 return llvm::Attribute::NoReturn;

12345