/work/obj-fuzz/dist/include/mozilla/Alignment.h
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
2 | | /* vim: set ts=8 sts=2 et sw=2 tw=80: */ |
3 | | /* This Source Code Form is subject to the terms of the Mozilla Public |
4 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
5 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
6 | | |
7 | | /* Functionality related to memory alignment. */ |
8 | | |
9 | | #ifndef mozilla_Alignment_h |
10 | | #define mozilla_Alignment_h |
11 | | |
12 | | #include "mozilla/Attributes.h" |
13 | | #include <stddef.h> |
14 | | #include <stdint.h> |
15 | | |
16 | | namespace mozilla { |
17 | | |
18 | | /* |
19 | | * This class, and the corresponding macro MOZ_ALIGNOF, figures out how many |
20 | | * bytes of alignment a given type needs. |
21 | | */ |
22 | | template<typename T> |
23 | | class AlignmentFinder |
24 | | { |
25 | | struct Aligner |
26 | | { |
27 | | char mChar; |
28 | | T mT; |
29 | | |
30 | | // Aligner may be used to check alignment of types with deleted dtors. This |
31 | | // results in such specializations having implicitly deleted dtors, which |
32 | | // causes fatal warnings on MSVC (see bug 1481005). As we don't create |
33 | | // Aligners, we can avoid this warning by explicitly deleting the dtor. |
34 | | ~Aligner() = delete; |
35 | | }; |
36 | | |
37 | | public: |
38 | | static const size_t alignment = sizeof(Aligner) - sizeof(T); |
39 | | }; |
40 | | |
41 | 643k | #define MOZ_ALIGNOF(T) mozilla::AlignmentFinder<T>::alignment |
42 | | |
43 | | namespace detail { |
44 | | template<typename T> |
45 | | struct AlignasHelper |
46 | | { |
47 | | T mT; |
48 | | }; |
49 | | } // namespace detail |
50 | | |
51 | | /* |
52 | | * Use this instead of alignof to align struct field as if it is inside |
53 | | * a struct. On some platforms, there exist types which have different |
54 | | * alignment between when it is used on its own and when it is used on |
55 | | * a struct field. |
56 | | * |
57 | | * Known examples are 64bit types (uint64_t, double) on 32bit Linux, |
58 | | * where they have 8byte alignment on their own, and 4byte alignment |
59 | | * when in struct. |
60 | | */ |
61 | | #define MOZ_ALIGNAS_IN_STRUCT(T) alignas(mozilla::detail::AlignasHelper<T>) |
62 | | |
63 | | /* |
64 | | * Declare the MOZ_ALIGNED_DECL macro for declaring aligned types. |
65 | | * |
66 | | * For instance, |
67 | | * |
68 | | * MOZ_ALIGNED_DECL(char arr[2], 8); |
69 | | * |
70 | | * will declare a two-character array |arr| aligned to 8 bytes. |
71 | | */ |
72 | | |
73 | | #if defined(__GNUC__) |
74 | | # define MOZ_ALIGNED_DECL(_type, _align) \ |
75 | | _type __attribute__((aligned(_align))) |
76 | | #elif defined(_MSC_VER) |
77 | | # define MOZ_ALIGNED_DECL(_type, _align) \ |
78 | | __declspec(align(_align)) _type |
79 | | #else |
80 | | # warning "We don't know how to align variables on this compiler." |
81 | | # define MOZ_ALIGNED_DECL(_type, _align) _type |
82 | | #endif |
83 | | |
84 | | /* |
85 | | * AlignedElem<N> is a structure whose alignment is guaranteed to be at least N |
86 | | * bytes. |
87 | | * |
88 | | * We support 1, 2, 4, 8, and 16-byte alignment. |
89 | | */ |
90 | | template<size_t Align> |
91 | | struct AlignedElem; |
92 | | |
93 | | /* |
94 | | * We have to specialize this template because GCC doesn't like |
95 | | * __attribute__((aligned(foo))) where foo is a template parameter. |
96 | | */ |
97 | | |
98 | | template<> |
99 | | struct AlignedElem<1> |
100 | | { |
101 | | MOZ_ALIGNED_DECL(uint8_t elem, 1); |
102 | | }; |
103 | | |
104 | | template<> |
105 | | struct AlignedElem<2> |
106 | | { |
107 | | MOZ_ALIGNED_DECL(uint8_t elem, 2); |
108 | | }; |
109 | | |
110 | | template<> |
111 | | struct AlignedElem<4> |
112 | | { |
113 | | MOZ_ALIGNED_DECL(uint8_t elem, 4); |
114 | | }; |
115 | | |
116 | | template<> |
117 | | struct AlignedElem<8> |
118 | | { |
119 | | MOZ_ALIGNED_DECL(uint8_t elem, 8); |
120 | | }; |
121 | | |
122 | | template<> |
123 | | struct AlignedElem<16> |
124 | | { |
125 | | MOZ_ALIGNED_DECL(uint8_t elem, 16); |
126 | | }; |
127 | | |
128 | | template<typename T> |
129 | | struct MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS AlignedStorage2 |
130 | | { |
131 | | union U |
132 | | { |
133 | | char mBytes[sizeof(T)]; |
134 | | uint64_t mDummy; |
135 | | } u; |
136 | | |
137 | 4 | const T* addr() const { return reinterpret_cast<const T*>(u.mBytes); } Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastElementCreationOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FakeString>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ElementCreationOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PFileDescriptorSetParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PFileDescriptorSetChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<mozilla::ipc::FileDescriptor> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::void_t>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::StringInputStreamParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::FileInputStreamParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::IPCBlobInputStreamParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PChildToParentStreamParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PChildToParentStreamChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PParentToChildStreamParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PParentToChildStreamChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::InputStreamParamsWithFds>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::IPCRemoteStream>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::IPCStream>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCFile>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PIPCBlobInputStreamParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PIPCBlobInputStreamChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsTString<char16_t> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::Shmem>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCBlob>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::LocalObject>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::RemoteObject>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::WellKnownSymbol>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::RegisteredSymbol>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ObjectVariant>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::NullVariant>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::UndefinedVariant>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::SymbolVariant>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<double>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<bool>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::JSIID>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<int>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ReturnSuccess>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ReturnDeadCPOW>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ReturnException>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ReturnObjectOpResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::JSVariant>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<unsigned long>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsIJSID*>::addr() const mozilla::AlignedStorage2<RefPtr<nsIJSID> >::addr() const Line | Count | Source | 137 | 4 | const T* addr() const { return reinterpret_cast<const T*>(u.mBytes); } |
Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PBrowserParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PBrowserChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IdType<mozilla::dom::TabParent> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PopupIPCTabContext>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FrameIPCTabContext>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::JSPluginFrameIPCTabContext>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::UnsafeIPCTabContext>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::ContentPrincipalInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::SystemPrincipalInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::NullPrincipalInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PrincipalInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::SimpleURIParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::StandardURLParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::NullPrincipalURIParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::HostObjectURIParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsTString<char> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<unsigned int>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<float>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::null_t>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::FeatureFailure>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::D3D11DeviceStatus>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::BackendType>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::SurfaceFormat>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::FileDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCServiceWorkerDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCClientInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCClientWindowState>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCClientWorkerState>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientControlledArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientFocusArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientNavigateArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientPostMessageArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientMatchAllArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientClaimArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientGetInfoAndStateArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientOpenWindowArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsresult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCClientState>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientInfoAndState>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientList>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryBufOffset>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryModOffset>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryProgCounter>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryContent>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryJit>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryWasm>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryChromeScript>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntrySuppressed>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<ChromePackage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<OverrideMapping>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<SubstitutionMapping>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FontFamilyListEntry>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FontPatternListEntry>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PrefValue>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GetFilesResponseSuccess>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GetFilesResponseFailure>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileCreationSuccessResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileCreationErrorResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLImageElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLVideoElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLCanvasElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Blob> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::ImageData> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::CanvasRenderingContext2D> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::ImageBitmap> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::ArrayBufferView_base<&js::UnwrapArrayBufferView, &js::GetArrayBufferViewLengthAndData, &(JS_GetArrayBufferViewType(JSObject*))> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<unsigned char, &js::UnwrapArrayBuffer, &(JS_GetArrayBufferData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetArrayBufferLengthAndData, &(JS_NewArrayBuffer(JSContext*, unsigned int))> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLImageElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLVideoElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLCanvasElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Blob> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::ImageData> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::CanvasRenderingContext2D> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::ImageBitmap> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ArrayBufferView_base<&js::UnwrapArrayBufferView, &js::GetArrayBufferViewLengthAndData, &(JS_GetArrayBufferViewType(JSObject*))> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<unsigned char, &js::UnwrapArrayBuffer, &(JS_GetArrayBufferData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetArrayBufferLengthAndData, &(JS_NewArrayBuffer(JSContext*, unsigned int))> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::External> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsPIDOMWindowOuter*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::External> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<RefPtr<nsPIDOMWindowOuter> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastScrollIntoViewOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ScrollIntoViewOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<double> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<double> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Event> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Event> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::CanvasPattern> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::CanvasGradient> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SupportedType>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::File> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Directory> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<nsGenericHTMLElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLOptionElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLOptGroupElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Record<nsTString<char16_t>, JS::Value> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<nsINode> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<JS::Rooted<JSObject*> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<nsTString<char16_t> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::CanvasPattern> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::CanvasGradient> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::File> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Directory> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<nsGenericHTMLElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLOptionElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLOptGroupElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<nsINode> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<JSObject*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<nsTString<char16_t> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::LoadInfoArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::nsHttpResponseHead>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::CorsPreflightArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::HttpChannelOpenArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::HttpChannelConnectArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::FTPChannelOpenArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::FTPChannelConnectArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::HttpChannelDiverterArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::PFTPChannelParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::PFTPChannelChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::extensions::MatchGlob> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::extensions::MatchGlob> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::extensions::MatchPatternSet> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::extensions::MatchPatternSet> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::extensions::MatchPattern> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::extensions::MatchPattern> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorD3D10>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorDXGIYCbCr>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RGBDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::YCbCrDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorBuffer>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorDIB>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorFileMapping>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorX11>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceTextureDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::EGLImageDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorMacIOSurface>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorSharedGLTexture>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorGPUVideo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CubicBezierFunction>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::StepFunction>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::FramesFunction>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Perspective>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RotationX>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RotationY>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RotationZ>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Rotation>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Rotation3D>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Scale>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Skew>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SkewX>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SkewY>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Translation>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::TransformMatrix>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::BaseTimeDuration<mozilla::TimeDurationValueCalculator> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<mozilla::layers::TransformFunction> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::TransformData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::PaintedLayerAttributes>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ContainerLayerAttributes>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ColorLayerAttributes>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CanvasLayerAttributes>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RefLayerAttributes>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ImageLayerAttributes>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ShmemSection>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CrossProcessSemaphoreDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::PTextureParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::PTextureChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::TexturedTileDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::PlaceholderTileDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpPaintTextureRegion>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUseTiledLayerBuffer>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRemoveTexture>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUseTexture>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUseComponentAlphaTextures>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreatePaintedLayer>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateContainerLayer>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateImageLayer>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateColorLayer>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateCanvasLayer>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateRefLayer>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpSetDiagnosticTypes>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpWindowOverlayChanged>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpSetRoot>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpInsertAfter>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpPrependChild>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRemoveChild>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRepositionChild>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRaiseToTopChild>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAttachCompositable>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAttachAsyncCompositable>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CompositableOperation>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CompositableHandle>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpNotifyNotUsed>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::Matrix4x4Typed<mozilla::gfx::UnknownUnits, mozilla::gfx::UnknownUnits> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::widget::GtkCompositorWidgetInitData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::widget::HeadlessCompositorWidgetInitData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::DNSRecord>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<nsTString<char> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::InputBlobs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::InputDirectory>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::FormData> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::URLSearchParams> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::FormData> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::URLSearchParams> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Headers> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<mozilla::dom::Sequence<nsTString<char> > > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Record<nsTString<char>, nsTString<char> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Headers> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<mozilla::dom::Sequence<nsTString<char> > > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Request> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Request> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClassifierInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCServiceWorkerRegistrationDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::CopyableErrorResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCServiceWorkerRegistrationDescriptorList>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::IDBObjectStore> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::IDBIndex> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::IDBObjectStore> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::IDBIndex> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PBackgroundMutableFileParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PBackgroundMutableFileChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::SerializedKeyRange>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreOpenCursorParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreOpenKeyCursorParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexOpenCursorParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexOpenKeyCursorParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreAddParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStorePutParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetKeyParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllKeysParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreDeleteParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreClearParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreCountParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetKeyParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetAllParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetAllKeysParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexCountParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemGetDirectoryListingParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemGetFilesParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemGetFileOrDirectoryParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::PTransportProviderParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::PTransportProviderChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<unsigned char> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<SendableData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<TCPError>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<UDPAddressInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::NetAddr>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ContinueParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ContinuePrimaryKeyParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::AdvanceParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<mozilla::dom::indexedDB::ObjectStoreCursorResponse> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreKeyCursorResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexCursorResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexKeyCursorResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::CreateFileParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::CreateFileRequestResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::OpenDatabaseRequestParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::DeleteDatabaseRequestParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::OpenDatabaseRequestResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::DeleteDatabaseRequestResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetKeyResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreAddResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStorePutResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreDeleteResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreClearResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreCountResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllKeysResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetKeyResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetAllResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetAllKeysResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexCountResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetPreprocessParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllPreprocessParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetPreprocessResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllPreprocessResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestStringData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestBlobData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestGetMetadataParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestReadParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestWriteParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestTruncateParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestFlushParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestGetFileParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<long>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestGetMetadataResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestReadResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestWriteResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestTruncateResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestFlushResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestGetFileResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestOpenParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestSeekParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestReadParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestWriteParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestCloseParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemDirectoryListingResponseFile>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemDirectoryListingResponseDirectory>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemDirectoryResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemDirectoryListingResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemFileResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemFilesResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemErrorResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PendingIPCFileData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::AllUsageParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::OriginUsageParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::InitParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::InitOriginParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearOriginParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearDataParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearAllParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ResetAllParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::PersistedParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::PersistParams>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadAdded>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadRemoved>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadAxisInformation>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadButtonInformation>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadPoseInformation>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadHandInformation>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebAuthnExtensionAppId>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebAuthnExtensionResultAppId>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebAuthnMakeCredentialExtraInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebAuthnGetAssertionExtraInfo>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastConstrainBooleanParameters>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ConstrainBooleanParameters>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastConstrainDoubleRange>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ConstrainDoubleRange>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastConstrainLongRange>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ConstrainLongRange>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastConstrainDOMStringParameters>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ConstrainDOMStringParameters>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheReadStream>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheMatchArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheMatchAllArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CachePutAllArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheDeleteArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheKeysArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageMatchArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageHasArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageOpenArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageDeleteArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageKeysArgs>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheMatchResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheMatchAllResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CachePutAllResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheDeleteResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheKeysResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageMatchResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageHasResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageOpenResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageDeleteResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageKeysResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::ReadableStream> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ReadableStream>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ContentCompositorOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::WidgetCompositorOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SameProcessWidgetCompositorOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::devtools::OpenedFile>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::SlowScriptData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::PluginHangData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::StartSessionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SendSessionMessageRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::CloseSessionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TerminateSessionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ReconnectSessionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::BuildTransportRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCreateActionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCanMakeActionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentShowActionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentAbortActionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCompleteActionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentUpdateActionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCloseActionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentRetryActionRequest>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCanMakeActionResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentShowActionResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentAbortActionResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCompleteActionResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::PPluginSurfaceParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::PPluginSurfaceChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::IOSurfaceDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::PPluginScriptableObjectParent*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::PPluginScriptableObjectChild*>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<JS::AsmJSCacheResult>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::embedding::PrintData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::InitResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::InitOriginResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearOriginResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearDataResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearAllResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ResetAllResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::PersistedResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::PersistResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::AllUsageResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::OriginUsageResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddPipelineIdForCompositable>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRemovePipelineIdForCompositable>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRemoveExternalImageId>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpReleaseTextureOfImage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdateAsyncImagePipeline>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdatedAsyncImagePipeline>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddCompositorAnimations>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddImage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddBlobImage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdateImage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdateBlobImage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpSetImageVisibleArea>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpDeleteImage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddRawFont>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddFontDescriptor>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpDeleteFont>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddFontInstance>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpDeleteFontInstance>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddExternalImage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpPushExternalImageForTexture>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdateExternalImage>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<RefPtr<mozilla::dom::BlobImpl> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::SelectContentData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::CheckedContentData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<mozilla::FileContentData> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestOpenResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestSeekResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestReadResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestWriteResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestCloseResponse>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::CompositeOperationOrAuto>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<mozilla::dom::CompositeOperationOrAuto> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<mozilla::dom::CompositeOperationOrAuto> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<mozilla::dom::Nullable<double> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<mozilla::dom::Nullable<double> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Element> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::CSSPseudoElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Element> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::CSSPseudoElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastKeyframeEffectOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::KeyframeEffectOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::SVGImageElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::SVGImageElement> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastEventListenerOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::EventListenerOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastAddEventListenerOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::AddEventListenerOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Client> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::ServiceWorker> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::MessagePort> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Client> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::ServiceWorker> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::MessagePort> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Text> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<nsIDocument> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Text> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<nsIDocument> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<nsIHTMLCollection> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<nsIHTMLCollection> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::RadioNodeList> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::RadioNodeList> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::IDBCursor> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::IDBCursor> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastInstallTriggerData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::InstallTriggerData>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastKeyframeAnimationOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::KeyframeAnimationOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastMediaTrackConstraints>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::MediaTrackConstraints>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::MediaStreamTrack> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::MediaStreamTrack> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastRTCIceCandidateInit>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::RTCIceCandidate> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RTCIceCandidateInit>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::RTCIceCandidate> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastWorkerOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WorkerOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<unsigned char, &js::UnwrapUint8Array, &(JS_GetUint8ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint8ArrayLengthAndData, &(JS_NewUint8Array(JSContext*, unsigned int))> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<unsigned char, &js::UnwrapUint8Array, &(JS_GetUint8ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint8ArrayLengthAndData, &(JS_NewUint8Array(JSContext*, unsigned int))> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::VideoTrack> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::AudioTrack> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::TextTrack> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::VideoTrack> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::AudioTrack> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::TextTrack> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<mozilla::dom::Sequence<nsTString<char16_t> > > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Record<nsTString<char16_t>, nsTString<char16_t> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<mozilla::dom::Sequence<nsTString<char16_t> > > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::AutoKeyword>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<unsigned int, &js::UnwrapUint32Array, &(JS_GetUint32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint32ArrayLengthAndData, &(JS_NewUint32Array(JSContext*, unsigned int))> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<unsigned int> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<unsigned int, &js::UnwrapUint32Array, &(JS_GetUint32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint32ArrayLengthAndData, &(JS_NewUint32Array(JSContext*, unsigned int))> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<unsigned int> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<float, &js::UnwrapFloat32Array, &(JS_GetFloat32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetFloat32ArrayLengthAndData, &(JS_NewFloat32Array(JSContext*, unsigned int))> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<float> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<float, &js::UnwrapFloat32Array, &(JS_GetFloat32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetFloat32ArrayLengthAndData, &(JS_NewFloat32Array(JSContext*, unsigned int))> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<float> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::OffscreenCanvas> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::OffscreenCanvas> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<int, &js::UnwrapInt32Array, &(JS_GetInt32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetInt32ArrayLengthAndData, &(JS_NewInt32Array(JSContext*, unsigned int))> > >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<int> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<int, &js::UnwrapInt32Array, &(JS_GetInt32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetInt32ArrayLengthAndData, &(JS_NewInt32Array(JSContext*, unsigned int))> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<int> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::Buffer> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::Texture> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::Buffer> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::Texture> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::ComputePipeline> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::RenderPipeline> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::ComputePipeline> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::RenderPipeline> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::Sampler> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::TextureView> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastWebGPUBufferBinding>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::Sampler> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::TextureView> >::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebGPUBufferBinding>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastOpenPopupOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::OpenPopupOptions>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<JS::ubi::BaseStackFrame>::addr() const Unexecuted instantiation: mozilla::AlignedStorage2<JS::ubi::Base>::addr() const |
138 | 216 | T* addr() { return static_cast<T*>(static_cast<void*>(u.mBytes)); } Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastElementCreationOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FakeString>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ElementCreationOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PFileDescriptorSetParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PFileDescriptorSetChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<mozilla::ipc::FileDescriptor> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::void_t>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::StringInputStreamParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::FileInputStreamParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::IPCBlobInputStreamParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PChildToParentStreamParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PChildToParentStreamChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PParentToChildStreamParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PParentToChildStreamChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::InputStreamParamsWithFds>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::IPCRemoteStream>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::IPCStream>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCFile>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PIPCBlobInputStreamParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PIPCBlobInputStreamChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsTString<char16_t> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::Shmem>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCBlob>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::LocalObject>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::RemoteObject>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::WellKnownSymbol>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::RegisteredSymbol>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ObjectVariant>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::NullVariant>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::UndefinedVariant>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::SymbolVariant>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<double>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<bool>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::JSIID>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<int>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ReturnSuccess>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ReturnDeadCPOW>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ReturnException>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::ReturnObjectOpResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::jsipc::JSVariant>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<unsigned long>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsIJSID*>::addr() mozilla::AlignedStorage2<RefPtr<nsIJSID> >::addr() Line | Count | Source | 138 | 12 | T* addr() { return static_cast<T*>(static_cast<void*>(u.mBytes)); } |
Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PBrowserParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PBrowserChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IdType<mozilla::dom::TabParent> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PopupIPCTabContext>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FrameIPCTabContext>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::JSPluginFrameIPCTabContext>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::UnsafeIPCTabContext>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::ContentPrincipalInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::SystemPrincipalInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::NullPrincipalInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PrincipalInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::SimpleURIParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::StandardURLParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::NullPrincipalURIParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::HostObjectURIParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsTString<char> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<unsigned int>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<float>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::null_t>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::FeatureFailure>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::D3D11DeviceStatus>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::BackendType>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::SurfaceFormat>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::FileDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCServiceWorkerDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCClientInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCClientWindowState>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCClientWorkerState>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientControlledArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientFocusArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientNavigateArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientPostMessageArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientMatchAllArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientClaimArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientGetInfoAndStateArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientOpenWindowArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsresult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCClientState>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientInfoAndState>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClientList>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryBufOffset>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryModOffset>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryProgCounter>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryContent>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryJit>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryWasm>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntryChromeScript>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::HangEntrySuppressed>::addr() mozilla::AlignedStorage2<ChromePackage>::addr() Line | Count | Source | 138 | 150 | T* addr() { return static_cast<T*>(static_cast<void*>(u.mBytes)); } |
mozilla::AlignedStorage2<OverrideMapping>::addr() Line | Count | Source | 138 | 48 | T* addr() { return static_cast<T*>(static_cast<void*>(u.mBytes)); } |
Unexecuted instantiation: mozilla::AlignedStorage2<SubstitutionMapping>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FontFamilyListEntry>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FontPatternListEntry>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PrefValue>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GetFilesResponseSuccess>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GetFilesResponseFailure>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileCreationSuccessResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileCreationErrorResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLImageElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLVideoElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLCanvasElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Blob> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::ImageData> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::CanvasRenderingContext2D> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::ImageBitmap> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::ArrayBufferView_base<&js::UnwrapArrayBufferView, &js::GetArrayBufferViewLengthAndData, &(JS_GetArrayBufferViewType(JSObject*))> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<unsigned char, &js::UnwrapArrayBuffer, &(JS_GetArrayBufferData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetArrayBufferLengthAndData, &(JS_NewArrayBuffer(JSContext*, unsigned int))> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLImageElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLVideoElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLCanvasElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Blob> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::ImageData> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::CanvasRenderingContext2D> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::ImageBitmap> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ArrayBufferView_base<&js::UnwrapArrayBufferView, &js::GetArrayBufferViewLengthAndData, &(JS_GetArrayBufferViewType(JSObject*))> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<unsigned char, &js::UnwrapArrayBuffer, &(JS_GetArrayBufferData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetArrayBufferLengthAndData, &(JS_NewArrayBuffer(JSContext*, unsigned int))> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::External> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsPIDOMWindowOuter*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::External> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<RefPtr<nsPIDOMWindowOuter> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastScrollIntoViewOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ScrollIntoViewOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<double> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<double> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Event> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Event> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::CanvasPattern> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::CanvasGradient> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SupportedType>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::File> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Directory> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<nsGenericHTMLElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLOptionElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::HTMLOptGroupElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Record<nsTString<char16_t>, JS::Value> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<nsINode> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<JS::Rooted<JSObject*> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<nsTString<char16_t> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::CanvasPattern> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::CanvasGradient> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::File> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Directory> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<nsGenericHTMLElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLOptionElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::HTMLOptGroupElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<nsINode> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<JSObject*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<nsTString<char16_t> > >::addr() mozilla::AlignedStorage2<GenericClassInfo>::addr() Line | Count | Source | 138 | 6 | T* addr() { return static_cast<T*>(static_cast<void*>(u.mBytes)); } |
Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::LoadInfoArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::nsHttpResponseHead>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::CorsPreflightArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::HttpChannelOpenArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::HttpChannelConnectArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::FTPChannelOpenArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::FTPChannelConnectArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::HttpChannelDiverterArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::PFTPChannelParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::PFTPChannelChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::ColorPattern>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::LinearGradientPattern>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::RadialGradientPattern>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::SurfacePattern>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::extensions::MatchGlob> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::extensions::MatchGlob> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::extensions::MatchPatternSet> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::extensions::MatchPatternSet> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::extensions::MatchPattern> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::extensions::MatchPattern> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorD3D10>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorDXGIYCbCr>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RGBDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::YCbCrDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorBuffer>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorDIB>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorFileMapping>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorX11>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceTextureDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::EGLImageDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorMacIOSurface>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorSharedGLTexture>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SurfaceDescriptorGPUVideo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CubicBezierFunction>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::StepFunction>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::FramesFunction>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Perspective>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RotationX>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RotationY>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RotationZ>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Rotation>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Rotation3D>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Scale>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Skew>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SkewX>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SkewY>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::Translation>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::TransformMatrix>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::BaseTimeDuration<mozilla::TimeDurationValueCalculator> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<mozilla::layers::TransformFunction> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::TransformData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::PaintedLayerAttributes>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ContainerLayerAttributes>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ColorLayerAttributes>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CanvasLayerAttributes>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::RefLayerAttributes>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ImageLayerAttributes>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ShmemSection>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CrossProcessSemaphoreDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::PTextureParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::PTextureChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::TexturedTileDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::PlaceholderTileDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpPaintTextureRegion>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUseTiledLayerBuffer>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRemoveTexture>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUseTexture>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUseComponentAlphaTextures>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreatePaintedLayer>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateContainerLayer>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateImageLayer>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateColorLayer>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateCanvasLayer>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpCreateRefLayer>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpSetDiagnosticTypes>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpWindowOverlayChanged>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpSetRoot>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpInsertAfter>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpPrependChild>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRemoveChild>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRepositionChild>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRaiseToTopChild>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAttachCompositable>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAttachAsyncCompositable>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CompositableOperation>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::CompositableHandle>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpNotifyNotUsed>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::Matrix4x4Typed<mozilla::gfx::UnknownUnits, mozilla::gfx::UnknownUnits> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::widget::GtkCompositorWidgetInitData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::widget::HeadlessCompositorWidgetInitData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::DNSRecord>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<nsTString<char> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::InputBlobs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::InputDirectory>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::FormData> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::URLSearchParams> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::FormData> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::URLSearchParams> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Headers> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<mozilla::dom::Sequence<nsTString<char> > > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Record<nsTString<char>, nsTString<char> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Headers> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<mozilla::dom::Sequence<nsTString<char> > > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Request> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Request> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ClassifierInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCServiceWorkerRegistrationDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::CopyableErrorResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCServiceWorkerRegistrationDescriptorList>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::IDBObjectStore> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::IDBIndex> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::IDBObjectStore> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::IDBIndex> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PBackgroundMutableFileParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::PBackgroundMutableFileChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::SerializedKeyRange>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreOpenCursorParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreOpenKeyCursorParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexOpenCursorParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexOpenKeyCursorParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::PBackgroundIDBDatabaseFileChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreAddParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStorePutParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetKeyParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllKeysParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreDeleteParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreClearParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreCountParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetKeyParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetAllParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetAllKeysParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexCountParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemGetDirectoryListingParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemGetFilesParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemGetFileOrDirectoryParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::PTransportProviderParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::PTransportProviderChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<unsigned char> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<SendableData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<TCPError>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<UDPAddressInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::net::NetAddr>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ContinueParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ContinuePrimaryKeyParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::AdvanceParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<mozilla::dom::indexedDB::ObjectStoreCursorResponse> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreKeyCursorResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexCursorResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexKeyCursorResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::CreateFileParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::CreateFileRequestResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::OpenDatabaseRequestParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::DeleteDatabaseRequestParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::OpenDatabaseRequestResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::DeleteDatabaseRequestResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetKeyResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreAddResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStorePutResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreDeleteResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreClearResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreCountResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllKeysResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetKeyResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetAllResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexGetAllKeysResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::IndexCountResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetPreprocessParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllPreprocessParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetPreprocessResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::indexedDB::ObjectStoreGetAllPreprocessResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestStringData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestBlobData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestGetMetadataParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestReadParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestWriteParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestTruncateParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestFlushParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestGetFileParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<long>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestGetMetadataResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestReadResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestWriteResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestTruncateResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestFlushResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileRequestGetFileResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestOpenParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestSeekParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestReadParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestWriteParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestCloseParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemDirectoryListingResponseFile>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemDirectoryListingResponseDirectory>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemDirectoryResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemDirectoryListingResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemFileResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemFilesResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::FileSystemErrorResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::ipc::PendingIPCFileData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::AllUsageParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::OriginUsageParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::InitParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::InitOriginParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearOriginParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearDataParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearAllParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ResetAllParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::PersistedParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::PersistParams>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadAdded>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadRemoved>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadAxisInformation>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadButtonInformation>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadPoseInformation>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::GamepadHandInformation>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebAuthnExtensionAppId>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebAuthnExtensionResultAppId>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebAuthnMakeCredentialExtraInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebAuthnGetAssertionExtraInfo>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastConstrainBooleanParameters>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ConstrainBooleanParameters>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastConstrainDoubleRange>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ConstrainDoubleRange>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastConstrainLongRange>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ConstrainLongRange>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastConstrainDOMStringParameters>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ConstrainDOMStringParameters>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheReadStream>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheMatchArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheMatchAllArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CachePutAllArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheDeleteArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheKeysArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageMatchArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageHasArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageOpenArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageDeleteArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageKeysArgs>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheMatchResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheMatchAllResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CachePutAllResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheDeleteResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::CacheKeysResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageMatchResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageHasResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageOpenResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageDeleteResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::cache::StorageKeysResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::ReadableStream> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ReadableStream>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::ContentCompositorOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::WidgetCompositorOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::SameProcessWidgetCompositorOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::devtools::OpenedFile>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::SlowScriptData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::PluginHangData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::StartSessionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SendSessionMessageRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::CloseSessionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TerminateSessionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::ReconnectSessionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::BuildTransportRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCreateActionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCanMakeActionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentShowActionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentAbortActionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCompleteActionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentUpdateActionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCloseActionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentRetryActionRequest>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCanMakeActionResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentShowActionResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentAbortActionResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::IPCPaymentCompleteActionResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::PPluginSurfaceParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::PPluginSurfaceChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::IOSurfaceDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::PPluginScriptableObjectParent*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::plugins::PPluginScriptableObjectChild*>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<JS::AsmJSCacheResult>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::embedding::PrintData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::InitResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::InitOriginResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearOriginResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearDataResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ClearAllResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::ResetAllResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::PersistedResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::PersistResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::AllUsageResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::quota::OriginUsageResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddPipelineIdForCompositable>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRemovePipelineIdForCompositable>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpRemoveExternalImageId>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpReleaseTextureOfImage>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdateAsyncImagePipeline>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdatedAsyncImagePipeline>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddCompositorAnimations>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddImage>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddBlobImage>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdateImage>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdateBlobImage>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpSetImageVisibleArea>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpDeleteImage>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddRawFont>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddFontDescriptor>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpDeleteFont>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddFontInstance>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpDeleteFontInstance>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpAddExternalImage>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpPushExternalImageForTexture>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::layers::OpUpdateExternalImage>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<RefPtr<mozilla::dom::BlobImpl> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::SelectContentData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::CheckedContentData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<nsTArray<mozilla::FileContentData> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestOpenResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestSeekResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestReadResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestWriteResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::SDBRequestCloseResponse>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<JS::ubi::Base>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::CompositeOperationOrAuto>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<mozilla::dom::CompositeOperationOrAuto> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<mozilla::dom::CompositeOperationOrAuto> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<mozilla::dom::Nullable<double> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<mozilla::dom::Nullable<double> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Element> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::CSSPseudoElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Element> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::CSSPseudoElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastKeyframeEffectOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::KeyframeEffectOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::SVGImageElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::SVGImageElement> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastEventListenerOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::EventListenerOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastAddEventListenerOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::AddEventListenerOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Client> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::ServiceWorker> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::MessagePort> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Client> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::ServiceWorker> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::MessagePort> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::Text> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<nsIDocument> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::Text> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<nsIDocument> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<nsIHTMLCollection> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<nsIHTMLCollection> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::RadioNodeList> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::RadioNodeList> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::IDBCursor> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::IDBCursor> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastInstallTriggerData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::InstallTriggerData>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastKeyframeAnimationOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::KeyframeAnimationOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastMediaTrackConstraints>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::MediaTrackConstraints>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::MediaStreamTrack> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::MediaStreamTrack> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastRTCIceCandidateInit>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::RTCIceCandidate> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RTCIceCandidateInit>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::RTCIceCandidate> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastWorkerOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WorkerOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<unsigned char, &js::UnwrapUint8Array, &(JS_GetUint8ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint8ArrayLengthAndData, &(JS_NewUint8Array(JSContext*, unsigned int))> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<unsigned char, &js::UnwrapUint8Array, &(JS_GetUint8ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint8ArrayLengthAndData, &(JS_NewUint8Array(JSContext*, unsigned int))> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::VideoTrack> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::AudioTrack> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::TextTrack> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::VideoTrack> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::AudioTrack> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::TextTrack> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<mozilla::dom::Sequence<nsTString<char16_t> > > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Record<nsTString<char16_t>, nsTString<char16_t> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<mozilla::dom::Sequence<nsTString<char16_t> > > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::AutoKeyword>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<unsigned int, &js::UnwrapUint32Array, &(JS_GetUint32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint32ArrayLengthAndData, &(JS_NewUint32Array(JSContext*, unsigned int))> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<unsigned int> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<unsigned int, &js::UnwrapUint32Array, &(JS_GetUint32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetUint32ArrayLengthAndData, &(JS_NewUint32Array(JSContext*, unsigned int))> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<unsigned int> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<float, &js::UnwrapFloat32Array, &(JS_GetFloat32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetFloat32ArrayLengthAndData, &(JS_NewFloat32Array(JSContext*, unsigned int))> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<float> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<float, &js::UnwrapFloat32Array, &(JS_GetFloat32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetFloat32ArrayLengthAndData, &(JS_NewFloat32Array(JSContext*, unsigned int))> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<float> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::dom::OffscreenCanvas> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::dom::OffscreenCanvas> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::RootedSpiderMonkeyInterface<mozilla::dom::TypedArray<int, &js::UnwrapInt32Array, &(JS_GetInt32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetInt32ArrayLengthAndData, &(JS_NewInt32Array(JSContext*, unsigned int))> > >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::AutoSequence<int> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::TypedArray<int, &js::UnwrapInt32Array, &(JS_GetInt32ArrayData(JSObject*, bool*, JS::AutoRequireNoGC const&)), &js::GetInt32ArrayLengthAndData, &(JS_NewInt32Array(JSContext*, unsigned int))> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::Sequence<int> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::Buffer> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::Texture> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::Buffer> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::Texture> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::ComputePipeline> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::RenderPipeline> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::ComputePipeline> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::RenderPipeline> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::Sampler> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::NonNull<mozilla::webgpu::TextureView> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastWebGPUBufferBinding>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::Sampler> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::OwningNonNull<mozilla::webgpu::TextureView> >::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::WebGPUBufferBinding>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::binding_detail::FastOpenPopupOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::dom::OpenPopupOptions>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<JS::ubi::BaseStackFrame>::addr() Unexecuted instantiation: mozilla::AlignedStorage2<mozilla::gfx::Glyph [170]>::addr() |
139 | | |
140 | | AlignedStorage2() = default; |
141 | | |
142 | | // AlignedStorage2 is non-copyable: the default copy constructor violates |
143 | | // strict aliasing rules, per bug 1269319. |
144 | | AlignedStorage2(const AlignedStorage2&) = delete; |
145 | | void operator=(const AlignedStorage2&) = delete; |
146 | | }; |
147 | | |
148 | | } /* namespace mozilla */ |
149 | | |
150 | | #endif /* mozilla_Alignment_h */ |