/external/clang/test/SemaCXX/ |
D | return-noreturn.cpp | 149 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/ |
D | return-noreturn.cpp | 149 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/ |
D | temp-obj-dtors-cfg-output.cpp | 143 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/ |
D | temp-obj-dtors-cfg-output.cpp | 158 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__.py | 19 from typing import NoReturn 27 def main() -> NoReturn:
|
D | arguments.py | 20 from typing import NoReturn 49 def error(self, message: str) -> NoReturn:
|
/external/pigweed/pw_watch/py/pw_watch/ |
D | watch.py | 47 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/ |
D | extract_configs.py | 12 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/ |
D | TargetFrameLoweringImpl.cpp | 34 assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in enableCalleeSaveSkip() 111 if (MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in determineCalleeSaves()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | TargetFrameLoweringImpl.cpp | 34 assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in enableCalleeSaveSkip() 113 if (MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in determineCalleeSaves()
|
/external/pigweed/pw_hdlc/py/pw_hdlc/ |
D | rpc.py | 21 from typing import (Any, BinaryIO, Callable, Dict, Iterable, List, NoReturn, 73 handler_threads: Optional[int] = 1) -> NoReturn:
|
/external/llvm-project/llvm/unittests/IR/ |
D | AttributesTest.cpp | 61 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/ |
D | llvm_libc_ext.td | 25 RetValSpec<NoReturn>,
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
D | PruneEH.cpp | 160 if (!SCCMightReturn && !F->hasFnAttribute(Attribute::NoReturn)) { in runImpl() 161 F->addFnAttr(Attribute::NoReturn); in runImpl()
|
/external/llvm-project/llvm/lib/Transforms/IPO/ |
D | PruneEH.cpp | 150 if (!SCCMightReturn && !F->hasFnAttribute(Attribute::NoReturn)) { in runImpl() 151 F->addFnAttr(Attribute::NoReturn); in runImpl()
|
/external/llvm/lib/Transforms/IPO/ |
D | PruneEH.cpp | 164 if (!SCCMightReturn && !F->hasFnAttribute(Attribute::NoReturn)) { in runImpl() 165 F->addFnAttr(Attribute::NoReturn); in runImpl()
|
D | ForceFunctionAttrs.cpp | 44 .Case("noreturn", Attribute::NoReturn) in parseAttrKind()
|
/external/clang/include/clang/CodeGen/ |
D | CGFunctionInfo.h | 473 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/ |
D | Attributes.gen | 30 NoReturn, 87 .Case("noreturn", Attribute::NoReturn) 284 return llvm::Attribute::NoReturn;
|
/external/llvm-project/clang/include/clang/CodeGen/ |
D | CGFunctionInfo.h | 555 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/ |
D | Attributes.gen | 30 NoReturn, 87 .Case("noreturn", Attribute::NoReturn) 284 return llvm::Attribute::NoReturn;
|
/external/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/ |
D | Attributes.gen | 30 NoReturn, 87 .Case("noreturn", Attribute::NoReturn) 284 return llvm::Attribute::NoReturn;
|
/external/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/ |
D | Attributes.gen | 30 NoReturn, 87 .Case("noreturn", Attribute::NoReturn) 284 return llvm::Attribute::NoReturn;
|
/external/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/ |
D | Attributes.gen | 30 NoReturn, 87 .Case("noreturn", Attribute::NoReturn) 284 return llvm::Attribute::NoReturn;
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | Attributes.inc | 30 NoReturn, 87 .Case("noreturn", Attribute::NoReturn) 284 return llvm::Attribute::NoReturn;
|