Home
last modified time | relevance | path

Searched refs:Self (Results 1 - 19 of 19) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
H A DRegionIterator.h101 using Self = RNSuccIterator<NodeRef, BlockT, RegionT>;
122 inline bool operator==(const Self& x) const { in operator ==()
130 inline bool operator!=(const Self& x) const { return !operator==(x); } in operator !=()
138 inline Self& operator++() { in operator ++()
152 inline Self operator++(int) { in operator ++()
153 Self tmp = *this; in operator ++()
176 using Self = RNSuccIterator<FlatIt<NodeRef>, BlockT, RegionT>;
202 inline bool operator==(const Self& x) const { in operator ==()
209 inline bool operator!=(const Self& x) const { return !operator==(x); } in operator !=()
224 inline Self
[all...]
H A DMemorySSA.h358 static void deleteMe(DerivedUser *Self);
418 static void deleteMe(DerivedUser *Self);
662 static void deleteMe(DerivedUser *Self);
H A DRegionInfo.h583 using Self = block_iterator_wrapper<IsConst>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
H A DCFG.h46 using Self = PredIterator<Ptr, USE_iterator>;
70 inline bool operator==(const Self& x) const { return It == x.It; } in operator ==()
71 inline bool operator!=(const Self& x) const { return !operator==(x); } in operator !=()
79 inline Self& operator++() { // Preincrement in operator ++()
85 inline Self operator++(int) { // Postincrement in operator ++()
86 Self tmp = *this; ++*this; return tmp; in operator ++()
148 using Self = SuccIterator<InstructionT, BlockT>;
158 Self It;
161 explicit SuccessorProxy(const Self &It) : It(It) {} in SuccessorProxy()
199 inline bool operator==(const Self
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp25 void JITLinkerBase::linkPhase1(std::unique_ptr<JITLinkerBase> Self) { in linkPhase1() argument
73 // [Self=std::move(Self)](Expected<AsyncLookupResult> Result) { in linkPhase1()
74 // Self->linkPhase2(std::move(Self), std::move(Result)); in linkPhase1()
79 [S = std::move(Self), L = std::move(Layout)]( in linkPhase1()
87 void JITLinkerBase::linkPhase2(std::unique_ptr<JITLinkerBase> Self, in linkPhase2() argument
115 auto *UnownedSelf = Self.release(); in linkPhase2()
117 std::unique_ptr<JITLinkerBase> Self(UnownedSelf); in linkPhase2()
118 UnownedSelf->linkPhase3(std::move(Self), st in linkPhase2()
124 linkPhase3(std::unique_ptr<JITLinkerBase> Self, Error Err) linkPhase3() argument
[all...]
H A DJITLinkGeneric.h60 void linkPhase1(std::unique_ptr<JITLinkerBase> Self);
67 void linkPhase2(std::unique_ptr<JITLinkerBase> Self,
73 void linkPhase3(std::unique_ptr<JITLinkerBase> Self, Error Err);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
H A DBitTracker.h166 // Self <= x, where "Self" is "ref to itself".
170 // Since we do not store the "Self" bit and register number, the meet
228 bool meet(const BitValue &V, const BitRef &Self) { in meet()
230 if (Type == Ref && RefI == Self) // Bottom.meet(V) = Bottom (i.e. This) in meet()
239 // become "bottom" (i.e. Self). in meet()
247 RefI = Self; in meet()
254 static BitValue self(const BitRef &Self = BitRef());
279 BitTracker::BitValue::self(const BitRef &Self) { in self() argument
280 return BitValue(Self in self()
[all...]
H A DRDFGraph.cpp446 void DefNode::linkToDef(NodeId Self, NodeAddr<DefNode*> DA) { in linkToDef() argument
449 DA.Addr->setReachedDef(Self); in linkToDef()
453 void UseNode::linkToDef(NodeId Self, NodeAddr<DefNode*> DA) { in linkToDef() argument
456 DA.Addr->setReachedUse(Self); in linkToDef()
480 NodeId Self = G.id(this); in addMember() local
481 NA.Addr->setNext(Self); in addMember()
H A DRDFGraph.h572 void linkToDef(NodeId Self, NodeAddr<DefNode*> DA);
576 void linkToDef(NodeId Self, NodeAddr<DefNode*> DA);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DItaniumManglingCanonicalizer.cpp167 CanonicalizerAllocator &Self; member
169 return Self.makeNodeSimple<T>(std::forward<Args>(As)...); in make()
202 CanonicalizerAllocator &Self; member
204 Node *StdNamespace = Self.makeNode<itanium_demangle::NameType>("std"); in make()
207 return Self.makeNode<itanium_demangle::NestedName>(StdNamespace, Child); in make()
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
H A Dvariant.h547 template <class Self, std::size_t I>
548 inline VariantAccessResult<I, Self> AccessUnion(Self&& self, SizeT<I> /*i*/) {
549 return reinterpret_cast<VariantAccessResult<I, Self>>(self);
720 template <std::size_t NewIndex, class Self, class... Args>
721 static typename absl::variant_alternative<NewIndex, Self>::type& Replace( in Replace()
722 Self* self, Args&&... args) { in Replace()
724 using New = typename absl::variant_alternative<NewIndex, Self>::type; in Replace()
859 template <class Self, class T>
862 template <class Self>
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Dkeywords.h35 int Self; variable
/third_party/zlib/contrib/delphi/
H A DZLib.pas458 Progress(Self);
515 Progress(Self);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DMemorySSA.cpp2449 void MemoryPhi::deleteMe(DerivedUser *Self) { in deleteMe() argument
2450 delete static_cast<MemoryPhi *>(Self); in deleteMe()
2453 void MemoryDef::deleteMe(DerivedUser *Self) { in deleteMe() argument
2454 delete static_cast<MemoryDef *>(Self); in deleteMe()
2457 void MemoryUse::deleteMe(DerivedUser *Self) { in deleteMe() argument
2458 delete static_cast<MemoryUse *>(Self); in deleteMe()
/third_party/python/Lib/test/
H A Dtest_typing.py35 from typing import Self, LiteralString namespace
252 self.assertEqual(Self, Self)
253 self.assertIs(Self, Self)
254 self.assertNotEqual(Self, None)
258 def bar(self) -> Self: ...
260 def bar(self) -> 'Self': ...
262 def bar(self) -> 'typing.Self': ...
266 self.assertEqual(gth(target.bar), {'return': Self})
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DFunctionAttrs.cpp749 SmallPtrSet<Argument *, 8> Self;
750 Self.insert(&*A);
751 Attribute::AttrKind R = determinePointerReadAttrs(&*A, Self);
/third_party/python/Lib/
H A Dtyping.py11 NoReturn, Never, ClassVar, Self, Concatenate, Unpack, and others.
146 'Self',
190 if arg in (Any, LiteralString, NoReturn, Never, Self, TypeAlias):
565 def Self(self, parameters): function
570 from typing import Self
573 def return_self(self) -> Self:
/third_party/libfuse/example/
H A Dcxxopts.hpp760 using Self = abstract_value<T>;
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 56 milliseconds