Home
last modified time | relevance | path

Searched refs:Self (Results 1 – 25 of 109) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DCFG.h46 using Self = PredIterator<Ptr, USE_iterator>; variable
70 inline bool operator==(const Self& x) const { return It == x.It; }
71 inline bool operator!=(const Self& x) const { return !operator==(x); }
79 inline Self& operator++() { // Preincrement
85 inline Self operator++(int) { // Postincrement
86 Self tmp = *this; ++*this; return tmp;
148 using Self = SuccIterator<InstructionT, BlockT>; variable
158 Self It;
161 explicit SuccessorProxy(const Self &It) : It(It) {} in SuccessorProxy()
199 inline bool operator==(const Self &x) const { return Idx == x.Idx; }
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DRegionIterator.h101 using Self = RNSuccIterator<NodeRef, BlockT, RegionT>;
122 inline bool operator==(const Self& x) const {
130 inline bool operator!=(const Self& x) const { return !operator==(x); }
138 inline Self& operator++() {
152 inline Self operator++(int) {
153 Self tmp = *this;
176 using Self = RNSuccIterator<FlatIt<NodeRef>, BlockT, RegionT>;
202 inline bool operator==(const Self& x) const {
209 inline bool operator!=(const Self& x) const { return !operator==(x); }
224 inline Self& operator++() {
[all …]
/third_party/mesa3d/.gitlab-ci/container/
Dbuild-crosvm_no-syslog.patch21 fn new() -> Result<Self, Error> {
22 Ok(Self {
34 fn new() -> Result<Self, Error> {
35 Ok(Self {
/third_party/rust/crates/nom/doc/
Derror_management.md252 fn from_error_kind(input: I, kind: ErrorKind) -> Self;
257 fn append(input: I, kind: ErrorKind, other: Self) -> Self;
260 fn from_char(input: I, _: char) -> Self {
261 Self::from_error_kind(input, ErrorKind::Char)
266 fn or(self, other: Self) -> Self {
284 fn add_context(_input: I, _ctx: &'static str, other: Self) -> Self {
295 fn from_external_error(input: I, kind: ErrorKind, e: ExternalError) -> Self;
317 fn from_error_kind(input: &str, kind: ErrorKind) -> Self {
324 fn append(input: &str, kind: ErrorKind, other: Self) -> Self {
330 fn from_char(input: &str, c: char) -> Self {
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLinkGeneric.cpp25 void JITLinkerBase::linkPhase1(std::unique_ptr<JITLinkerBase> Self) { in linkPhase1() argument
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() local
118 UnownedSelf->linkPhase3(std::move(Self), std::move(Err)); in linkPhase2()
124 void JITLinkerBase::linkPhase3(std::unique_ptr<JITLinkerBase> Self, Error Err) { in linkPhase3() argument
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/
DBitTracker.h228 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()
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.Reg, Self.Pos); in self()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
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/openssl/test/recipes/30-test_evp_data/
Devpciph_rc5.txt25 #Self generated. Bigger key.
48 #Self generated. Bigger key.
73 #Self generated. Bigger key.
Devpciph_bf.txt10 Title = Self generated BF test vectors
Devpciph_rc4.txt73 #Self generated. Long key
/third_party/rust/crates/bindgen/book/src/
Dnodefault.md41 fn default() -> Self {
42 Self {
Dvisibility.md33 pub fn new(s: &'static std::ffi::CStr, b: bool) -> Self {
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-typing-with-this/
Darkts-no-typing-with-this-1-error.ets18 interface Self {
22 class Person implements Self {
/third_party/rust/crates/log/rfcs/
D0296-structured-logging.md154 pub fn from_any<T>(v: &'v T, from: fn(FromAny, &T) -> Result<(), Error>) -> Self {
280 Self: Sized,
289 Self: Sized,
297 fn as_map(self) -> AsMap<Self>
299 Self: Sized,
305 fn as_seq(self) -> AsSeq<Self>
307 Self: Sized,
553 pub fn msg(msg: &'static str) -> Self {
602 pub fn custom(err: impl fmt::Display) -> Self {
633 pub fn from_any<T>(v: &'v T, from: FromAnyFn<T>) -> Self {
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
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(
722 Self* self, Args&&... args) {
724 using New = typename absl::variant_alternative<NewIndex, Self>::type;
859 template <class Self, class T>
862 template <class Self>
863 struct IsNeitherSelfNorInPlace<Self, Self> : std::false_type {};
[all …]
/third_party/rust/crates/cxx/book/src/
Dshared.md76 pub const Clubs: Self = Suit { repr: 0 };
77 pub const Diamonds: Self = Suit { repr: 1 };
78 pub const Hearts: Self = Suit { repr: 2 };
79 pub const Spades: Self = Suit { repr: 3 };
/third_party/rust/crates/cxx/tests/ui/
Dbad_explicit_impl.stderr1 error: unsupported Self type of explicit impl
Dnonempty_impl_block.stderr6 8 | | fn new() -> Self;
Dunnamed_receiver.stderr10 10 | fn f(self: &Self);
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dkeywords.h35 int Self; variable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DDynamicLibrary.inc114 HMODULE Self = HMODULE(GetCurrentProcess());
115 if (!GetProcessModules(Self, Bytes))
127 if (!GetProcessModules(Self, Bytes, Handles.data()))
/third_party/node/test/fixtures/keys/selfsigned-no-keycertsign/
DREADME.md1 # Self-signed certificate without keyCertSign bit
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DThreading.inc100 thread_port_t Self = mach_thread_self();
101 mach_port_deallocate(mach_task_self(), Self);
102 return Self;
/third_party/python/Lib/venv/scripts/common/
Dactivate33 # Self destruct!

12345