/third_party/python/Lib/importlib/resources/ |
H A D | abc.py | 4 from typing import Any, BinaryIO, Iterable, Iterator, NoReturn, Text, Optional namespace 144 def resource_path(self, resource: Any) -> NoReturn:
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | TargetFrameLoweringImpl.cpp | 34 assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in enableCalleeSaveSkip() 111 if (MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in determineCalleeSaves()
|
H A D | MachineRegisterInfo.cpp | 582 return !(Called == nullptr || !Called->hasFnAttribute(Attribute::NoReturn) || in isNoReturnDef()
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/ |
H A D | _tokenizer.py | 4 from typing import Dict, Iterator, NoReturn, Optional, Tuple, Union namespace 159 ) -> NoReturn:
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | PruneEH.cpp | 160 if (!SCCMightReturn && !F->hasFnAttribute(Attribute::NoReturn)) { in runImpl() 161 F->addFnAttr(Attribute::NoReturn); in runImpl()
|
H A D | ForceFunctionAttrs.cpp | 45 .Case("noreturn", Attribute::NoReturn) in parseAttrKind()
|
H A D | HotColdSplitting.cpp | 122 if (CI->hasFnAttr(Attribute::NoReturn)) in unlikelyExecuted() 212 if (F.hasFnAttribute(Attribute::NoReturn)) in shouldOutlineFrom()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | dead-code-elimination.cc | 32 bool NoReturn(Node* node) { in NoReturn() function 41 if (NoReturn(input)) return input; in FindDeadInput()
|
/third_party/python/Lib/test/libregrtest/ |
H A D | runtest_mp.py | 12 from typing import NamedTuple, NoReturn, Literal, Any, TextIO namespace 87 def run_tests_worker(ns: Namespace, test_name: str) -> NoReturn:
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | Function.h | 534 return hasFnAttribute(Attribute::NoReturn); in doesNotReturn() 537 addFnAttr(Attribute::NoReturn); in setDoesNotReturn()
|
H A D | InstrTypes.h | 1710 bool doesNotReturn() const { return hasFnAttr(Attribute::NoReturn); } 1712 addAttribute(AttributeList::FunctionIndex, Attribute::NoReturn);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
H A D | Function.h | 359 return hasFnAttribute(Attribute::NoReturn); in doesNotReturn() 362 addFnAttr(Attribute::NoReturn); in setDoesNotReturn()
|
/third_party/python/Lib/test/ |
H A D | test_pydoc.py | 1072 self.assertEqual(pydoc.describe(typing.NoReturn), '_SpecialForm') 1073 doc = pydoc.render_doc(typing.NoReturn, renderer=pydoc.plaintext) 1075 if typing.NoReturn.__doc__: 1076 self.assertIn('NoReturn = typing.NoReturn', doc) 1077 self.assertIn(typing.NoReturn.__doc__.strip().splitlines()[0], doc) 1079 self.assertIn('NoReturn = class _SpecialForm(_Final)', doc)
|
H A D | test_typing.py | 15 from typing import Any, NoReturn, Never, assert_never namespace 174 issubclass(NoReturn, self.bottom_type) 196 bottom_type = NoReturn 199 self.assertEqual(repr(NoReturn), 'typing.NoReturn') 202 def some(arg: NoReturn) -> NoReturn: ... 203 def some_str(arg: 'NoReturn') -> 'typing.NoReturn': ... 205 expected = {'arg': NoReturn, 'retur [all...] |
H A D | test_types.py | 923 assert typing.NoReturn | str == typing.Union[typing.NoReturn, str]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyLowerEmscriptenEHSjLj.cpp | 383 F->removeFnAttr(Attribute::NoReturn); in wrapInvoke() 384 CI->removeAttribute(AttributeList::FunctionIndex, Attribute::NoReturn); in wrapInvoke()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonFrameLowering.cpp | 557 assert(F.hasFnAttribute(Attribute::NoReturn) && in enableCalleeSaveSkip() 577 return F.hasFnAttribute(Attribute::NoReturn) && in enableAllocFrameElim()
|
/third_party/python/Lib/ |
H A D | typing.py | 11 NoReturn, Never, ClassVar, Self, Concatenate, Unpack, and others. 138 'NoReturn', 190 if arg in (Any, LiteralString, NoReturn, Never, Self, TypeAlias): 519 def NoReturn(self, parameters): function 524 from typing import NoReturn 526 def stop() -> NoReturn: 529 NoReturn can also be used as a bottom type, a type that 536 # This is semantically identical to NoReturn, but it is implemented
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | Attributes.cpp | 335 if (hasAttribute(Attribute::NoReturn)) in getAsString()
|
H A D | Verifier.cpp | 1505 case Attribute::NoReturn: in isFuncOnlyAttr()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/IPO/ |
H A D | Attributor.h | 2056 : public IRAttribute<Attribute::NoReturn,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | CodeExtractor.cpp | 868 case Attribute::NoReturn: in constructFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Coroutines/ |
H A D | CoroSplit.cpp | 1210 F.removeFnAttr(Attribute::NoReturn); in splitRetconCoroutine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMFrameLowering.cpp | 92 assert(MF.getFunction().hasFnAttribute(Attribute::NoReturn) && in enableCalleeSaveSkip()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 1224 case Attribute::NoReturn: return 1 << 2; in getRawAttributeMask() 1477 return Attribute::NoReturn; in getAttrFromCode()
|