/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | derive-debug-opaque.rs | 10 pub struct Opaque { structure names 16 ::std::mem::size_of::<Opaque>(), in bindgen_test_layout_Opaque() 18 concat!("Size of: ", stringify!(Opaque)) in bindgen_test_layout_Opaque() 21 ::std::mem::align_of::<Opaque>(), in bindgen_test_layout_Opaque() 23 concat!("Alignment of ", stringify!(Opaque)) in bindgen_test_layout_Opaque() 26 impl Default for Opaque { 35 impl ::std::fmt::Debug for Opaque { 37 write!(f, "Opaque {{ opaque }}") in fmt() 42 pub opaque: Opaque, in fmt()
|
H A D | issue-807-opaque-types-methods-being-generated.rs | 65 pub struct Opaque { structure names 71 ::std::mem::size_of::<Opaque>(), in bindgen_test_layout_Opaque() 73 concat!("Size of: ", stringify!(Opaque)) in bindgen_test_layout_Opaque() 76 ::std::mem::align_of::<Opaque>(), in bindgen_test_layout_Opaque() 78 concat!("Alignment of ", stringify!(Opaque)) in bindgen_test_layout_Opaque() 83 pub fn Opaque_eleven_out_of_ten(this: *mut Opaque) -> SuchWow; in Opaque_eleven_out_of_ten() 87 pub fn Opaque_Opaque(this: *mut Opaque, pup: Pupper); in Opaque_Opaque() 89 impl Opaque { impls 108 pub some_member: Opaque,
|
/third_party/rust/crates/rustix/src/backend/linux_raw/ |
H A D | reg.rs | 29 unsafe fn to_asm(self) -> *mut Opaque; in to_asm() 41 unsafe fn from_asm(raw: *mut Opaque) -> Self; in from_asm() 48 pub(super) struct Opaque(c::c_void); 89 raw: *mut Opaque, 95 unsafe fn to_asm(self) -> *mut Opaque { in to_asm() 108 raw: *mut Opaque, 198 unsafe fn from_asm(raw: *mut Opaque) -> Self { in from_asm() 214 unsafe fn to_asm(self) -> *mut Opaque { in to_asm() 215 self.nr as usize as *mut Opaque in to_asm() 221 pub(super) fn raw_arg<'a, Num: ArgNumber>(raw: *mut Opaque) [all...] |
/third_party/rust/crates/cxx/src/ |
H A D | extern_type.rs | 1 use self::kind::{Kind, Opaque, Trivial}; 81 /// type Kind = cxx::kind::Opaque; 110 /// # type Kind = cxx::kind::Opaque; 115 /// Either [`cxx::kind::Opaque`] or [`cxx::kind::Trivial`]. 117 /// [`cxx::kind::Opaque`]: kind::Opaque 123 /// behavior or a destructor must be considered Opaque and handled by Rust 164 pub enum Opaque {} enum 173 impl Kind for Opaque {} 179 impl Sealed for super::Opaque {} [all...] |
H A D | opaque.rs | 14 pub struct Opaque { structure names 19 const_assert_eq!(0, mem::size_of::<Opaque>()); 20 const_assert_eq!(1, mem::align_of::<Opaque>());
|
/third_party/rust/crates/cxx/tests/ui/ |
H A D | opaque_autotraits.rs | 4 type Opaque; types 13 assert_send::<ffi::Opaque>(); in main() 14 assert_sync::<ffi::Opaque>(); in main() 15 assert_unpin::<ffi::Opaque>(); in main()
|
H A D | unique_ptr_as_mut.rs | 10 type Opaque; types 14 impl UniquePtr<Opaque> {} 21 let mut opaque = UniquePtr::<ffi::Opaque>::null(); in main() 22 let _: &mut ffi::Opaque = &mut opaque; in main()
|
H A D | pin_mut_opaque.rs | 4 type Opaque; types 5 fn f(arg: &mut Opaque); in f() 7 fn h(self: &mut Opaque); in h()
|
H A D | slice_unsupported.rs | 4 type Opaque; types 6 fn f(_: &mut [Opaque]); in f()
|
H A D | unpin_impl.rs | 4 type Opaque; types 8 impl Unpin for ffi::Opaque {}
|
H A D | extern_type_bound.rs | 4 type Opaque: PartialEq + PartialOrd; types 11 type Opaque: for<'de> Deserialize<'de>; types
|
H A D | deny_missing_docs.rs | 77 type Kind = cxx::kind::Opaque; 82 type Kind = cxx::kind::Opaque;
|
/third_party/skia/src/gpu/ |
H A D | GrProcessorAnalysis.h | 18 enum class Opaque { class in GrProcessorAnalysisColor 23 constexpr GrProcessorAnalysisColor(Opaque opaque = Opaque::kNo) in GrProcessorAnalysisColor() argument 24 : fFlags(opaque == Opaque::kYes ? kIsOpaque_Flag : 0) in GrProcessorAnalysisColor() 150 return fIsOpaque ? GrProcessorAnalysisColor::Opaque::kYes in outputColor() 151 : GrProcessorAnalysisColor::Opaque::kNo; in outputColor()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | opaque_pointer.hpp | 14 struct Opaque { struct 19 Opaque<int>* whatever; 20 Opaque<float> other;
|
H A D | issue-807-opaque-types-methods-being-generated.hpp | 1 // bindgen-flags: --allowlist-type Allowlisted --opaque-type Opaque --with-derive-hash --with-derive-partialeq --with-derive-eq -- -std=c++11 9 // These types are not allowlisted, and would be reachable through `Opaque` if 16 class Opaque class 25 Opaque(Pupper pup); 35 Opaque some_member;
|
H A D | derive-debug-opaque.hpp | 1 // bindgen-flags: --opaque-type "Opaque" --impl-debug --rust-target 1.40 3 class Opaque { class 9 Opaque opaque;
|
H A D | derive-debug-opaque-template-instantiation.hpp | 6 class Opaque { class 11 Opaque<int, 50> val;
|
H A D | template.hpp | 80 class Opaque { class 85 Opaque<int> opaque_member;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/ |
H A D | ExecutionEngine.h | 155 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 158 void *Opaque, uintptr_t Size, unsigned Alignment, unsigned SectionID, 161 void *Opaque, char **ErrMsg); 162 typedef void (*LLVMMemoryManagerDestroyCallback)(void *Opaque); 169 * @param Opaque An opaque client object to pass back to the callbacks. 176 void *Opaque,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/ |
H A D | ExecutionEngineBindings.cpp | 325 void *Opaque); 340 void *Opaque; member in __anon24175::SimpleBindingMemoryManager 345 void *Opaque) in SimpleBindingMemoryManager() 346 : Functions(Functions), Opaque(Opaque) { in SimpleBindingMemoryManager() 358 Functions.Destroy(Opaque); in ~SimpleBindingMemoryManager() 364 return Functions.AllocateCodeSection(Opaque, Size, Alignment, SectionID, in allocateCodeSection() 371 return Functions.AllocateDataSection(Opaque, Size, Alignment, SectionID, in allocateDataSection() 378 bool result = Functions.FinalizeMemory(Opaque, &errMsgCString); in finalizeMemory() 392 void *Opaque, in LLVMCreateSimpleMCJITMemoryManager() 343 SimpleBindingMemoryManager( const SimpleBindingMMFunctions& Functions, void *Opaque) SimpleBindingMemoryManager() argument 391 LLVMCreateSimpleMCJITMemoryManager( void *Opaque, LLVMMemoryManagerAllocateCodeSectionCallback AllocateCodeSection, LLVMMemoryManagerAllocateDataSectionCallback AllocateDataSection, LLVMMemoryManagerFinalizeMemoryCallback FinalizeMemory, LLVMMemoryManagerDestroyCallback Destroy) LLVMCreateSimpleMCJITMemoryManager() argument [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | types.h | 49 class Opaque; 191 DeclareCastMethod(Opaque) 482 class Opaque : public Type { class 484 Opaque(std::string n) : Type(kOpaque), name_(std::move(n)) {} in Opaque() function in spvtools::opt::analysis::Opaque 485 Opaque(const Opaque&) = default; 489 Opaque* AsOpaque() override { return this; } 490 const Opaque* AsOpaque() const override { return this; }
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | types.h | 49 class Opaque; 191 DeclareCastMethod(Opaque) 482 class Opaque : public Type { class 484 Opaque(std::string n) : Type(kOpaque), name_(std::move(n)) {} in Opaque() function in spvtools::opt::analysis::Opaque 485 Opaque(const Opaque&) = default; 489 Opaque* AsOpaque() override { return this; } 490 const Opaque* AsOpaque() const override { return this; }
|
/third_party/spirv-tools/source/opt/ |
H A D | types.h | 50 class Opaque; 193 DeclareCastMethod(Opaque) 482 class Opaque : public Type { class 484 Opaque(std::string n) : Type(kOpaque), name_(std::move(n)) {} in Opaque() function in spvtools::opt::analysis::Opaque 485 Opaque(const Opaque&) = default; 489 Opaque* AsOpaque() override { return this; } 490 const Opaque* AsOpaque() const override { return this; }
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
H A D | ty.rs | 10 use super::layout::{Layout, Opaque}; 314 TypeKind::Opaque | in canonical_type() 363 TypeKind::Opaque => true, in is_opaque() 460 TypeKind::Opaque => "Opaque", in kind_name() 547 TypeKind::Opaque | in self_template_params() 599 Opaque, 757 Opaque::from_clang_ty(&canonical_ty, ctx), in from_clang_ty() 768 None => TypeKind::Opaque, in from_clang_ty() 892 Opaque in from_clang_ty() [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | md.rs | 11 use foreign_types::{ForeignTypeRef, Opaque}; 205 pub struct MdRef(Opaque);
|