Home
last modified time | relevance | path

Searched refs:ForwardRef (Results 1 – 18 of 18) sorted by relevance

/external/vixl/src/aarch32/
Dlocation-aarch32.h107 class ForwardRef : public ForwardReference<int32_t> {
110 ForwardRef() : ForwardReference<int32_t>(0, 0, 0, 0, 1), op_(NULL) {} in ForwardRef() function
112 ForwardRef(const Location::EmitOperator* op,
128 bool operator==(const ForwardRef& other) const {
131 bool operator<(const ForwardRef& other) const {
134 bool operator<=(const ForwardRef& other) const {
137 bool operator>(const ForwardRef& other) const {
153 typedef InvalSet<ForwardRef,
182 friend class InvalSet<ForwardRef,
197 ForwardRef GetLastForwardReference() const { in GetLastForwardReference()
[all …]
Dlocation-aarch32.cc38 const ForwardRef& last_ref = GetLastForwardReference(); in Needs16BitPadding()
47 const ForwardRef& reference = *it.Current(); in ResolveReferences()
96 forward_.insert(ForwardRef(&op, in AddForwardRef()
108 const ForwardRef& reference = *it.Current(); in GetMaxAlignment()
119 const ForwardRef& reference = *it.Current(); in GetMinLocation()
128 const ForwardRef& reference = forward_.Front(); in UpdatePoolObject()
Dmacro-assembler-aarch32.h425 const Location::ForwardRef& reference = location->GetLastForwardReference(); in RegisterForwardReference()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
DTpiHashing.cpp30 bool ForwardRef = bool(Opts & ClassOptions::ForwardReference); in getHashForUdt() local
35 if (!ForwardRef && !Scoped && !IsAnon) in getHashForUdt()
37 if (!ForwardRef && HasUniqueName && !IsAnon) in getHashForUdt()
60 bool ForwardRef = bool(Opts & ClassOptions::ForwardReference); in getTagRecordHashForUdt() local
66 if (!ForwardRef) in getTagRecordHashForUdt()
/external/llvm/lib/DebugInfo/PDB/Raw/
DTpiStream.cpp79 bool ForwardRef = in getTpiHash() local
85 if (!ForwardRef && !Scoped && !IsAnon) in getTpiHash()
87 if (!ForwardRef && UniqueName && !IsAnon) in getTpiHash()
/external/tensorflow/tensorflow/python/util/
Dtype_annotations.py48 return isinstance(tp, typing.ForwardRef)
/external/python/cpython3/Lib/test/
Dtest_typing.py26 from typing import Annotated, ForwardRef
198 self.assertEqual(get_args(X | "x"), (X, ForwardRef("x")))
199 self.assertEqual(get_args("x" | X), (ForwardRef("x"), X))
2024 def foobar2(x: list[list[ForwardRef('CC')]]): ...
2025 def foobar3(x: list[ForwardRef('CC | int')] | int): ...
2644 fr = typing.ForwardRef('int')
2649 fr = typing.ForwardRef('int')
2655 typing.ForwardRef(1) # only `str` type is allowed
2658 fr = typing.ForwardRef('int')
2659 self.assertEqual(fr, typing.ForwardRef('int'))
[all …]
/external/python/cpython3/Lib/
Dtyping.py142 return ForwardRef(arg, module=module, is_class=allow_special_forms)
172 if isinstance(arg, (type, TypeVar, ForwardRef, types.UnionType, ParamSpec,
326 if isinstance(t, ForwardRef):
656 class ForwardRef(_Final, _root=True): class
706 if not isinstance(other, ForwardRef):
1831 value = ForwardRef(value, is_argument=False, is_class=True)
1865 value = ForwardRef(
/external/python/cpython3/Misc/NEWS.d/
D3.10.3.rst555 :class:`typing.ForwardRef` now honor the ``module`` parameter of
556 :class:`typing.ForwardRef`. Forward references from different modules are
D3.6.0b1.rst1142 dict constraint in ForwardRef._eval_type (upstream #252)
D3.10.1.rst766 in :class:`~typing.ForwardRef`.
D3.5.3rc1.rst1129 dict constraint in ForwardRef._eval_type (upstream #252).
D3.8.0b1.rst791 Add missing names to ``typing.__all__``: ``ChainMap``, ``ForwardRef``,
D3.10.0a1.rst1560 Recursive evaluation of `typing.ForwardRef` in `get_type_hints`.
/external/libcxxabi/src/demangle/
DItaniumDemangle.h5042 Node *ForwardRef = make<ForwardTemplateReference>(Index);
5043 if (!ForwardRef)
5045 assert(ForwardRef->getKind() == Node::KForwardTemplateReference);
5047 static_cast<ForwardTemplateReference *>(ForwardRef));
5048 return ForwardRef;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DItaniumDemangle.h5327 Node *ForwardRef = make<ForwardTemplateReference>(Index);
5328 if (!ForwardRef)
5330 assert(ForwardRef->getKind() == Node::KForwardTemplateReference);
5332 static_cast<ForwardTemplateReference *>(ForwardRef));
5333 return ForwardRef;
/external/cronet/buildtools/third_party/libc++abi/trunk/src/demangle/
DItaniumDemangle.h5291 Node *ForwardRef = make<ForwardTemplateReference>(Index);
5292 if (!ForwardRef)
5294 assert(ForwardRef->getKind() == Node::KForwardTemplateReference);
5296 static_cast<ForwardTemplateReference *>(ForwardRef));
5297 return ForwardRef;
/external/python/cpython3/Doc/library/
Dtyping.rst2188 .. class:: ForwardRef
2192 ``List[ForwardRef("SomeClass")]``. This class should not be instantiated by
2197 implicitly transformed into ``list[ForwardRef("SomeClass")]`` and thus