Searched refs:ForwardRef (Results 1 - 7 of 7) sorted by relevance
/third_party/vixl/src/aarch32/ |
H A D | location-aarch32.h | 116 class ForwardRef : public ForwardReference<int32_t> { class in vixl::aarch32::Location 119 ForwardRef() : ForwardReference<int32_t>(0, 0, 0, 0, 1), op_(NULL) {} in ForwardRef() function in vixl::aarch32::Location::ForwardRef 121 ForwardRef(const Location::EmitOperator* op, in ForwardRef() function in vixl::aarch32::Location::ForwardRef 137 bool operator==(const ForwardRef& other) const { in operator ==() 140 bool operator<(const ForwardRef& other) const { in operator <() 143 bool operator<=(const ForwardRef& other) const { in operator <=() 146 bool operator>(const ForwardRef& other) const { in operator >() 162 typedef InvalSet<ForwardRef, 195 friend class InvalSet<ForwardRef, 210 ForwardRef GetLastForwardReferenc [all...] |
H A D | location-aarch32.cc | 38 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()
|
H A D | macro-assembler-aarch32.h | 473 const Location::ForwardRef& reference = location->GetLastForwardReference(); in MacroAssembler()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
H A D | TpiHashing.cpp | 30 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()
|
/third_party/python/Lib/test/ |
H A D | test_typing.py | 34 from typing import Annotated, ForwardRef namespace 431 self.assertEqual(get_args(X | "x"), (X, ForwardRef("x"))) 432 self.assertEqual(get_args("x" | X), (ForwardRef("x"), X)) 3709 def foobar2(x: list[list[ForwardRef('CC')]]): ... 3710 def foobar3(x: list[ForwardRef('CC | int')] | int): ... 3769 {'x': list[list[ForwardRef('X')]]} 4529 fr = typing.ForwardRef('int') 4534 fr = typing.ForwardRef('int') 4540 typing.ForwardRef(1) # only `str` type is allowed 4543 fr = typing.ForwardRef('in [all...] |
/third_party/python/Lib/ |
H A D | typing.py | 51 'ForwardRef', 160 """For converting None to type(None), and strings to ForwardRef.""" 164 return ForwardRef(arg, module=module, is_class=allow_special_forms) 172 into ForwardRef instances. Consider several corner cases, for example plain 368 ForwardRef. 370 if isinstance(t, ForwardRef): 375 ForwardRef(arg) if isinstance(arg, str) else arg 830 class ForwardRef(_Final, _root=True): class 889 if not isinstance(other, ForwardRef): 911 return f'ForwardRef({sel [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
H A D | ItaniumDemangle.h | 5327 Node *ForwardRef = make<ForwardTemplateReference>(Index); in parseTemplateParam() local 5328 if (!ForwardRef) in parseTemplateParam() 5330 assert(ForwardRef->getKind() == Node::KForwardTemplateReference); in parseTemplateParam() 5332 static_cast<ForwardTemplateReference *>(ForwardRef)); in parseTemplateParam() 5333 return ForwardRef; in parseTemplateParam()
|
Completed in 51 milliseconds