/src/mozilla-central/layout/base/FrameProperties.h
Line | Count | Source (jump to first uncovered line) |
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 | | #ifndef FRAMEPROPERTIES_H_ |
8 | | #define FRAMEPROPERTIES_H_ |
9 | | |
10 | | #include "mozilla/DebugOnly.h" |
11 | | #include "mozilla/MemoryReporting.h" |
12 | | #include "mozilla/TypeTraits.h" |
13 | | #include "mozilla/Unused.h" |
14 | | #include "nsTArray.h" |
15 | | #include "nsThreadUtils.h" |
16 | | |
17 | | class nsIFrame; |
18 | | |
19 | | namespace mozilla { |
20 | | |
21 | | struct FramePropertyDescriptorUntyped |
22 | | { |
23 | | /** |
24 | | * mDestructor will be called if it's non-null. |
25 | | */ |
26 | | typedef void UntypedDestructor(void* aPropertyValue); |
27 | | UntypedDestructor* mDestructor; |
28 | | /** |
29 | | * mDestructorWithFrame will be called if it's non-null and mDestructor |
30 | | * is null. WARNING: The frame passed to mDestructorWithFrame may |
31 | | * be a dangling frame pointer, if this is being called during |
32 | | * presshell teardown. Do not use it except to compare against |
33 | | * other frame pointers. No frame will have been allocated with |
34 | | * the same address yet. |
35 | | */ |
36 | | typedef void UntypedDestructorWithFrame(const nsIFrame* aFrame, |
37 | | void* aPropertyValue); |
38 | | UntypedDestructorWithFrame* mDestructorWithFrame; |
39 | | /** |
40 | | * mDestructor and mDestructorWithFrame may both be null, in which case |
41 | | * no value destruction is a no-op. |
42 | | */ |
43 | | |
44 | | protected: |
45 | | /** |
46 | | * At most one destructor should be passed in. In general, you should |
47 | | * just use the static function FramePropertyDescriptor::New* below |
48 | | * instead of using this constructor directly. |
49 | | */ |
50 | | constexpr FramePropertyDescriptorUntyped( |
51 | | UntypedDestructor* aDtor, UntypedDestructorWithFrame* aDtorWithFrame) |
52 | | : mDestructor(aDtor) |
53 | | , mDestructorWithFrame(aDtorWithFrame) |
54 | | {} |
55 | | }; |
56 | | |
57 | | /** |
58 | | * A pointer to a FramePropertyDescriptor serves as a unique property ID. |
59 | | * The FramePropertyDescriptor stores metadata about the property. |
60 | | * Currently the only metadata is a destructor function. The destructor |
61 | | * function is called on property values when they are overwritten or |
62 | | * deleted. |
63 | | * |
64 | | * To use this class, declare a global (i.e., file, class or function-scope |
65 | | * static member) FramePropertyDescriptor and pass its address as |
66 | | * aProperty in the FrameProperties methods. |
67 | | */ |
68 | | template<typename T> |
69 | | struct FramePropertyDescriptor : public FramePropertyDescriptorUntyped |
70 | | { |
71 | | typedef void Destructor(T* aPropertyValue); |
72 | | typedef void DestructorWithFrame(const nsIFrame* aaFrame, |
73 | | T* aPropertyValue); |
74 | | |
75 | | template<Destructor Dtor> |
76 | | static constexpr const FramePropertyDescriptor<T> NewWithDestructor() |
77 | 0 | { |
78 | 0 | return { Destruct<Dtor>, nullptr }; |
79 | 0 | } Unexecuted instantiation: ImageContainer.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: ImageContainer.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: ImageContainer.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: ImageContainer.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: ImageContainer.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: PersistentBufferProvider.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: PersistentBufferProvider.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: PersistentBufferProvider.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: PersistentBufferProvider.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: PersistentBufferProvider.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: TextureClientX11.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: TextureClientX11.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: TextureClientX11.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: TextureClientX11.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: TextureClientX11.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: X11BasicCompositor.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: X11BasicCompositor.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: X11BasicCompositor.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: X11BasicCompositor.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: X11BasicCompositor.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: X11TextureSourceBasic.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: X11TextureSourceBasic.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: X11TextureSourceBasic.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: X11TextureSourceBasic.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: X11TextureSourceBasic.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: X11TextureHost.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: X11TextureHost.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: X11TextureHost.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: X11TextureHost.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: X11TextureHost.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: ShadowLayerUtilsX11.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: ShadowLayerUtilsX11.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: ShadowLayerUtilsX11.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: ShadowLayerUtilsX11.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: ShadowLayerUtilsX11.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: X11TextureSourceOGL.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: X11TextureSourceOGL.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: X11TextureSourceOGL.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: X11TextureSourceOGL.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: X11TextureSourceOGL.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: WebRenderTextureHost.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: WebRenderTextureHost.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: WebRenderTextureHost.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: WebRenderTextureHost.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: WebRenderTextureHost.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsFrameList> const mozilla::FramePropertyDescriptor<nsFrameList>::NewWithDestructor<&nsContainerFrame::AssertOnDestroyingPropertyOverflowProperty>() Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsFrameList> const mozilla::FramePropertyDescriptor<nsFrameList>::NewWithDestructor<&nsContainerFrame::AssertOnDestroyingPropertyOverflowContainersProperty>() Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsFrameList> const mozilla::FramePropertyDescriptor<nsFrameList>::NewWithDestructor<&nsContainerFrame::AssertOnDestroyingPropertyExcessOverflowContainersProperty>() Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsFrameList> const mozilla::FramePropertyDescriptor<nsFrameList>::NewWithDestructor<&nsContainerFrame::AssertOnDestroyingPropertyBackdropProperty>() Unexecuted instantiation: mozilla::FramePropertyDescriptor<AnimatedGeometryRoot> const mozilla::FramePropertyDescriptor<AnimatedGeometryRoot>::NewWithDestructor<&AnimatedGeometryRoot::DetachAGR>() Unexecuted instantiation: mozilla::FramePropertyDescriptor<mozilla::ActiveScrolledRoot> const mozilla::FramePropertyDescriptor<mozilla::ActiveScrolledRoot>::NewWithDestructor<&mozilla::ActiveScrolledRoot::DetachASR>() Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> > const mozilla::FramePropertyDescriptor<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >::NewWithDestructor<&mozilla::layers::DestroyWebRenderUserDataTable>() Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:mozilla::FramePropertyDescriptor<nsTArray<mozilla::layers::BlobItemData*> > const mozilla::FramePropertyDescriptor<nsTArray<mozilla::layers::BlobItemData*> >::NewWithDestructor<&mozilla::layers::DestroyBlobGroupDataProperty>() Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: DOMIntersectionObserver.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: DOMIntersectionObserver.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: DOMIntersectionObserver.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: DOMIntersectionObserver.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: DOMIntersectionObserver.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsContentUtils.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsContentUtils.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsContentUtils.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsContentUtils.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsContentUtils.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsContentUtils.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsContentUtils.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsDOMWindowUtils.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: nsFrameMessageManager.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsFrameMessageManager.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsFrameMessageManager.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsFrameMessageManager.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsFrameMessageManager.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsGlobalWindowInner.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsGlobalWindowOuter.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: nsImageLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsObjectLoadingContent.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_dom_base0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo> const mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::NewWithDestructor<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_dom_base2.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_dom_base3.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base3.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base3.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base3.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base3.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::NewWithDestructor<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<mozilla::LogicalSize> const mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::NewWithDestructor<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>() Unexecuted instantiation: Unified_cpp_dom_base4.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_base5.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base5.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base5.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base5.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base5.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base6.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base6.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base6.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base6.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base6.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_dom_base7.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_dom_base8.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_base9.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_base9.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_base9.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_base9.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_base9.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsBaseDragService.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsBaseDragService.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsBaseDragService.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsBaseDragService.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsBaseDragService.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsBaseDragService.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsBaseDragService.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: nsBaseWidget.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsBaseWidget.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsBaseWidget.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsBaseWidget.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsBaseWidget.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsBaseWidget.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsBaseWidget.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_widget0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_widget1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_widget1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_widget1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_widget1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_widget1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsWindow.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsWindow.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsWindow.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsWindow.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsWindow.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_style0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_style0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_style0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_style0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_style0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_layout_style1.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_style2.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo> const mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::NewWithDestructor<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_layout_style3.cpp:mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_style4.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsRefreshDriver.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_layout_base0.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::NewWithDestructor<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo> const mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::NewWithDestructor<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<mozilla::LogicalSize> const mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::NewWithDestructor<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<RetainedDisplayListData> const mozilla::FramePropertyDescriptor<RetainedDisplayListData>::NewWithDestructor<&(void DeleteValue<RetainedDisplayListData>(RetainedDisplayListData*))>() Unexecuted instantiation: Unified_cpp_layout_base1.cpp:mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder> const mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder>::NewWithDestructor<&(void DeleteValue<RetainedDisplayListBuilder>(RetainedDisplayListBuilder*))>() Unexecuted instantiation: nsPluginFrame.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: nsPluginFrame.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: nsPluginFrame.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: nsPluginFrame.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: nsPluginFrame.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: nsPluginFrame.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: nsPluginFrame.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::NewWithDestructor<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::StickyScrollContainer> const mozilla::FramePropertyDescriptor<mozilla::StickyScrollContainer>::NewWithDestructor<&(void DeleteValue<mozilla::StickyScrollContainer>(mozilla::StickyScrollContainer*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsBlockFrame::FrameLines> const mozilla::FramePropertyDescriptor<nsBlockFrame::FrameLines>::NewWithDestructor<&(AssertOnDestroyingPropertyOverflowLinesProperty(nsBlockFrame::FrameLines*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsFrameList> const mozilla::FramePropertyDescriptor<nsFrameList>::NewWithDestructor<&(AssertOnDestroyingPropertyOverflowOutOfFlowsProperty(nsFrameList*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsFrameList> const mozilla::FramePropertyDescriptor<nsFrameList>::NewWithDestructor<&(AssertOnDestroyingPropertyPushedFloatProperty(nsFrameList*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsFrameList> const mozilla::FramePropertyDescriptor<nsFrameList>::NewWithDestructor<&(AssertOnDestroyingPropertyOutsideBulletProperty(nsFrameList*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo> const mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::NewWithDestructor<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsFlexContainerFrame::CachedMeasuringReflowResult> const mozilla::FramePropertyDescriptor<nsFlexContainerFrame::CachedMeasuringReflowResult>::NewWithDestructor<&(void DeleteValue<nsFlexContainerFrame::CachedMeasuringReflowResult>(nsFlexContainerFrame::CachedMeasuringReflowResult*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsFontInflationData> const mozilla::FramePropertyDescriptor<nsFontInflationData>::NewWithDestructor<&(void DeleteValue<nsFontInflationData>(nsFontInflationData*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::NewWithDestructor<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::LogicalSize> const mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::NewWithDestructor<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<RetainedDisplayListData> const mozilla::FramePropertyDescriptor<RetainedDisplayListData>::NewWithDestructor<&(void DeleteValue<RetainedDisplayListData>(RetainedDisplayListData*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder> const mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder>::NewWithDestructor<&(void DeleteValue<RetainedDisplayListBuilder>(RetainedDisplayListBuilder*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsBoxLayoutMetrics> const mozilla::FramePropertyDescriptor<nsBoxLayoutMetrics>::NewWithDestructor<&(void DeleteValue<nsBoxLayoutMetrics>(nsBoxLayoutMetrics*))>() Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:mozilla::FramePropertyDescriptor<nsAbsoluteContainingBlock> const mozilla::FramePropertyDescriptor<nsAbsoluteContainingBlock>::NewWithDestructor<&(void DeleteValue<nsAbsoluteContainingBlock>(nsAbsoluteContainingBlock*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::NewWithDestructor<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<mozilla::LogicalSize> const mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::NewWithDestructor<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo> const mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::NewWithDestructor<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo> const mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::NewWithDestructor<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> > const mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::NewWithDestructor<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>() Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:mozilla::FramePropertyDescriptor<nsGridContainerFrame::SharedGridData> const mozilla::FramePropertyDescriptor<nsGridContainerFrame::SharedGridData>::NewWithDestructor<&(void DeleteValue<nsGridContainerFrame::SharedGridData>(nsGridContainerFrame::SharedGridData*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<RetainedDisplayListData> const mozilla::FramePropertyDescriptor<RetainedDisplayListData>::NewWithDestructor<&(void DeleteValue<RetainedDisplayListData>(RetainedDisplayListData*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder> const mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder>::NewWithDestructor<&(void DeleteValue<RetainedDisplayListBuilder>(RetainedDisplayListBuilder*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<TabWidthStore> const mozilla::FramePropertyDescriptor<TabWidthStore>::NewWithDestructor<&(void DeleteValue<TabWidthStore>(TabWidthStore*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<gfxTextRun> const mozilla::FramePropertyDescriptor<gfxTextRun>::NewWithDestructor<&(void ReleaseValue<gfxTextRun>(gfxTextRun*))>() Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:mozilla::FramePropertyDescriptor<EmphasisMarkInfo> const mozilla::FramePropertyDescriptor<EmphasisMarkInfo>::NewWithDestructor<&(void DeleteValue<EmphasisMarkInfo>(EmphasisMarkInfo*))>() Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::NewWithDestructor<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<mozilla::LogicalSize> const mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::NewWithDestructor<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<BCPropertyData> const mozilla::FramePropertyDescriptor<BCPropertyData>::NewWithDestructor<&(void DeleteValue<BCPropertyData>(BCPropertyData*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:mozilla::FramePropertyDescriptor<nsTableRowGroupFrame::FrameCursorData> const mozilla::FramePropertyDescriptor<nsTableRowGroupFrame::FrameCursorData>::NewWithDestructor<&(void DeleteValue<nsTableRowGroupFrame::FrameCursorData>(nsTableRowGroupFrame::FrameCursorData*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:mozilla::FramePropertyDescriptor<mozilla::TextNodeCorrespondence> const mozilla::FramePropertyDescriptor<mozilla::TextNodeCorrespondence>::NewWithDestructor<&(void DeleteValue<mozilla::TextNodeCorrespondence>(mozilla::TextNodeCorrespondence*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:mozilla::FramePropertyDescriptor<nsFrameList> const mozilla::FramePropertyDescriptor<nsFrameList>::NewWithDestructor<&(AssertOnDestroyingPropertyPopupListProperty(nsFrameList*))>() Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: VsyncParent.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: VsyncParent.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: VsyncParent.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: VsyncParent.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: VsyncParent.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:mozilla::FramePropertyDescriptor<mozilla::ReflowOutput> const mozilla::FramePropertyDescriptor<mozilla::ReflowOutput>::NewWithDestructor<&(void DeleteValue<mozilla::ReflowOutput>(mozilla::ReflowOutput*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::NewWithDestructor<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<mozilla::LogicalSize> const mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::NewWithDestructor<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>() Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:mozilla::FramePropertyDescriptor<nsTArray<signed char> > const mozilla::FramePropertyDescriptor<nsTArray<signed char> >::NewWithDestructor<&(void DeleteValue<nsTArray<signed char> >(nsTArray<signed char>*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<mozilla::LayerActivity> const mozilla::FramePropertyDescriptor<mozilla::LayerActivity>::NewWithDestructor<&(void DeleteValue<mozilla::LayerActivity>(mozilla::LayerActivity*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<RetainedDisplayListData> const mozilla::FramePropertyDescriptor<RetainedDisplayListData>::NewWithDestructor<&(void DeleteValue<RetainedDisplayListData>(RetainedDisplayListData*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder> const mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder>::NewWithDestructor<&(void DeleteValue<RetainedDisplayListBuilder>(RetainedDisplayListBuilder*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::NewWithDestructor<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::NewWithDestructor<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::NewWithDestructor<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>() Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::NewWithDestructor<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>() Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>() Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::NewWithDestructor<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>() Unexecuted instantiation: Unified_cpp_layout_build0.cpp:mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::NewWithDestructor<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>() Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:mozilla::FramePropertyDescriptor<nsPoint> const mozilla::FramePropertyDescriptor<nsPoint>::NewWithDestructor<&(void DeleteValue<nsPoint>(nsPoint*))>() Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:mozilla::FramePropertyDescriptor<nsMargin> const mozilla::FramePropertyDescriptor<nsMargin>::NewWithDestructor<&(void DeleteValue<nsMargin>(nsMargin*))>() Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:mozilla::FramePropertyDescriptor<nsRect> const mozilla::FramePropertyDescriptor<nsRect>::NewWithDestructor<&(void DeleteValue<nsRect>(nsRect*))>() Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:mozilla::FramePropertyDescriptor<nsOverflowAreas> const mozilla::FramePropertyDescriptor<nsOverflowAreas>::NewWithDestructor<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>() Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::NewWithDestructor<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>() |
80 | | |
81 | | template<DestructorWithFrame Dtor> |
82 | | static constexpr |
83 | | const FramePropertyDescriptor<T> NewWithDestructorWithFrame() |
84 | | { |
85 | | return { nullptr, DestructWithFrame<Dtor> }; |
86 | | } |
87 | | |
88 | | static constexpr const FramePropertyDescriptor<T> NewWithoutDestructor() |
89 | 0 | { |
90 | 0 | return { nullptr, nullptr }; |
91 | 0 | } Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsIFrame>::NewWithoutDestructor() Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsLineBox>::NewWithoutDestructor() Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsBulletFrame>::NewWithoutDestructor() Unexecuted instantiation: mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<float> >::NewWithoutDestructor() Unexecuted instantiation: mozilla::FramePropertyDescriptor<nsTextFrame>::NewWithoutDestructor() |
92 | | |
93 | | private: |
94 | | constexpr FramePropertyDescriptor( |
95 | | UntypedDestructor* aDtor, UntypedDestructorWithFrame* aDtorWithFrame) |
96 | | : FramePropertyDescriptorUntyped(aDtor, aDtorWithFrame) |
97 | | {} |
98 | | |
99 | | template<Destructor Dtor> |
100 | | static void Destruct(void* aPropertyValue) |
101 | 0 | { |
102 | 0 | Dtor(static_cast<T*>(aPropertyValue)); |
103 | 0 | } Unexecuted instantiation: void mozilla::FramePropertyDescriptor<nsTArray<nsCOMPtr<nsIWeakReference> > >::Destruct<&nsIFrame::DestroyPaintedPresShellList>(void*) Unexecuted instantiation: ImageContainer.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: ImageContainer.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: ImageContainer.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: ImageContainer.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: ImageContainer.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: PersistentBufferProvider.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: PersistentBufferProvider.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: PersistentBufferProvider.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: PersistentBufferProvider.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: PersistentBufferProvider.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: TextureClientX11.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: TextureClientX11.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: TextureClientX11.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: TextureClientX11.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: TextureClientX11.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: X11BasicCompositor.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: X11BasicCompositor.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: X11BasicCompositor.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: X11BasicCompositor.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: X11BasicCompositor.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: X11TextureSourceBasic.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: X11TextureSourceBasic.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: X11TextureSourceBasic.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: X11TextureSourceBasic.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: X11TextureSourceBasic.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: X11TextureHost.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: X11TextureHost.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: X11TextureHost.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: X11TextureHost.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: X11TextureHost.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: ShadowLayerUtilsX11.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: ShadowLayerUtilsX11.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: ShadowLayerUtilsX11.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: ShadowLayerUtilsX11.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: ShadowLayerUtilsX11.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: X11TextureSourceOGL.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: X11TextureSourceOGL.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: X11TextureSourceOGL.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: X11TextureSourceOGL.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: X11TextureSourceOGL.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: WebRenderTextureHost.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: WebRenderTextureHost.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: WebRenderTextureHost.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: WebRenderTextureHost.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: WebRenderTextureHost.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >::Destruct<&mozilla::layers::DestroyWebRenderUserDataTable>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<nsFrameList>::Destruct<&nsContainerFrame::AssertOnDestroyingPropertyOverflowProperty>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<nsFrameList>::Destruct<&nsContainerFrame::AssertOnDestroyingPropertyOverflowContainersProperty>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<nsFrameList>::Destruct<&nsContainerFrame::AssertOnDestroyingPropertyExcessOverflowContainersProperty>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<nsFrameList>::Destruct<&nsContainerFrame::AssertOnDestroyingPropertyBackdropProperty>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<AnimatedGeometryRoot>::Destruct<&AnimatedGeometryRoot::DetachAGR>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<mozilla::ActiveScrolledRoot>::Destruct<&mozilla::ActiveScrolledRoot::DetachASR>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers10.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<nsTArray<mozilla::layers::BlobItemData*> >::Destruct<&mozilla::layers::DestroyBlobGroupDataProperty>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers11.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers3.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers4.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers5.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers6.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers7.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers8.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_gfx_layers9.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<mozilla::SVGFilterObserverListForCSSProp>::Destruct<&mozilla::SVGObserverUtils::DestroyFilterProperty>(void*) Unexecuted instantiation: DOMIntersectionObserver.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: DOMIntersectionObserver.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: DOMIntersectionObserver.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: DOMIntersectionObserver.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: DOMIntersectionObserver.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsContentUtils.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsContentUtils.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsContentUtils.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsContentUtils.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsContentUtils.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsContentUtils.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsContentUtils.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: nsDOMWindowUtils.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsDOMWindowUtils.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsDOMWindowUtils.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsDOMWindowUtils.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsDOMWindowUtils.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsDOMWindowUtils.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsDOMWindowUtils.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: nsFrameMessageManager.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsFrameMessageManager.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsFrameMessageManager.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsFrameMessageManager.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsFrameMessageManager.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsGlobalWindowInner.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsGlobalWindowInner.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsGlobalWindowInner.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsGlobalWindowInner.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsGlobalWindowInner.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsGlobalWindowInner.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsGlobalWindowInner.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: nsGlobalWindowOuter.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsGlobalWindowOuter.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsGlobalWindowOuter.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsGlobalWindowOuter.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsGlobalWindowOuter.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsGlobalWindowOuter.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsGlobalWindowOuter.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: nsImageLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: nsObjectLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsObjectLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsObjectLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsObjectLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsObjectLoadingContent.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsObjectLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsObjectLoadingContent.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::Destruct<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base2.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base3.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base3.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base3.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base3.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base3.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::Destruct<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::Destruct<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base4.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base5.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base5.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base5.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base5.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base5.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base6.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base6.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base6.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base6.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base6.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base7.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base8.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base9.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base9.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base9.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base9.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_base9.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: void mozilla::FramePropertyDescriptor<nsTextControlFrame::EditorInitializer>::Destruct<&nsTextControlFrame::RevokeInitializer>(void*) Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg2.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg3.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg4.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg6.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg7.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_svg8.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_dom_xul0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsBaseDragService.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsBaseDragService.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsBaseDragService.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsBaseDragService.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsBaseDragService.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsBaseDragService.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsBaseDragService.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: nsBaseWidget.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsBaseWidget.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsBaseWidget.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsBaseWidget.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsBaseWidget.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsBaseWidget.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsBaseWidget.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_widget0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_widget0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_widget0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_widget0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_widget0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_widget0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_widget0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_widget1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_widget1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_widget1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_widget1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_widget1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsWindow.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsWindow.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsWindow.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsWindow.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsWindow.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_widget_gtk2.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style1.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style2.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style2.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style2.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style2.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style2.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::Destruct<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style3.cpp:void mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_style4.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: nsRefreshDriver.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsRefreshDriver.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsRefreshDriver.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsRefreshDriver.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsRefreshDriver.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsRefreshDriver.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsRefreshDriver.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base0.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder>::Destruct<&(void DeleteValue<RetainedDisplayListBuilder>(RetainedDisplayListBuilder*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::Destruct<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::Destruct<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::Destruct<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>(void*) Unexecuted instantiation: Unified_cpp_layout_base1.cpp:void mozilla::FramePropertyDescriptor<RetainedDisplayListData>::Destruct<&(void DeleteValue<RetainedDisplayListData>(RetainedDisplayListData*))>(void*) Unexecuted instantiation: nsPluginFrame.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: nsPluginFrame.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: nsPluginFrame.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: nsPluginFrame.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: nsPluginFrame.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: nsPluginFrame.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: nsPluginFrame.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic0.cpp:void mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::Destruct<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::StickyScrollContainer>::Destruct<&(void DeleteValue<mozilla::StickyScrollContainer>(mozilla::StickyScrollContainer*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsFrameList>::Destruct<&(AssertOnDestroyingPropertyPushedFloatProperty(nsFrameList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsFrameList>::Destruct<&(AssertOnDestroyingPropertyOverflowOutOfFlowsProperty(nsFrameList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsFrameList>::Destruct<&(AssertOnDestroyingPropertyOutsideBulletProperty(nsFrameList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsBlockFrame::FrameLines>::Destruct<&(AssertOnDestroyingPropertyOverflowLinesProperty(nsBlockFrame::FrameLines*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsFlexContainerFrame::CachedMeasuringReflowResult>::Destruct<&(void DeleteValue<nsFlexContainerFrame::CachedMeasuringReflowResult>(nsFlexContainerFrame::CachedMeasuringReflowResult*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::Destruct<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsFontInflationData>::Destruct<&(void DeleteValue<nsFontInflationData>(nsFontInflationData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsAbsoluteContainingBlock>::Destruct<&(void DeleteValue<nsAbsoluteContainingBlock>(nsAbsoluteContainingBlock*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsBoxLayoutMetrics>::Destruct<&(void DeleteValue<nsBoxLayoutMetrics>(nsBoxLayoutMetrics*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::Destruct<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::Destruct<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<RetainedDisplayListData>::Destruct<&(void DeleteValue<RetainedDisplayListData>(RetainedDisplayListData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder>::Destruct<&(void DeleteValue<RetainedDisplayListBuilder>(RetainedDisplayListBuilder*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::Destruct<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridTrackInfo>(mozilla::ComputedGridTrackInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo>::Destruct<&(void DeleteValue<mozilla::ComputedGridLineInfo>(mozilla::ComputedGridLineInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> >::Destruct<&(void DeleteValue<nsTArray<mozilla::css::GridNamedArea> >(nsTArray<mozilla::css::GridNamedArea>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsGridContainerFrame::SharedGridData>::Destruct<&(void DeleteValue<nsGridContainerFrame::SharedGridData>(nsGridContainerFrame::SharedGridData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::Destruct<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic2.cpp:void mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo>::Destruct<&(void DeleteValue<ComputedFlexContainerInfo>(ComputedFlexContainerInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder>::Destruct<&(void DeleteValue<RetainedDisplayListBuilder>(RetainedDisplayListBuilder*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<TabWidthStore>::Destruct<&(void DeleteValue<TabWidthStore>(TabWidthStore*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<gfxTextRun>::Destruct<&(void ReleaseValue<gfxTextRun>(gfxTextRun*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<EmphasisMarkInfo>::Destruct<&(void DeleteValue<EmphasisMarkInfo>(EmphasisMarkInfo*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_generic3.cpp:void mozilla::FramePropertyDescriptor<RetainedDisplayListData>::Destruct<&(void DeleteValue<RetainedDisplayListData>(RetainedDisplayListData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms0.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_forms1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::Destruct<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<BCPropertyData>::Destruct<&(void DeleteValue<BCPropertyData>(BCPropertyData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<nsTableRowGroupFrame::FrameCursorData>::Destruct<&(void DeleteValue<nsTableRowGroupFrame::FrameCursorData>(nsTableRowGroupFrame::FrameCursorData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::Destruct<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_tables0.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<mozilla::TextNodeCorrespondence>::Destruct<&(void DeleteValue<mozilla::TextNodeCorrespondence>(mozilla::TextNodeCorrespondence*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_svg2.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:void mozilla::FramePropertyDescriptor<nsFrameList>::Destruct<&(AssertOnDestroyingPropertyPopupListProperty(nsFrameList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_xul_tree0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: VsyncParent.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: VsyncParent.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: VsyncParent.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: VsyncParent.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: VsyncParent.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_ipc0.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:void mozilla::FramePropertyDescriptor<mozilla::ReflowOutput>::Destruct<&(void DeleteValue<mozilla::ReflowOutput>(mozilla::ReflowOutput*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<nsTArray<signed char> >::Destruct<&(void DeleteValue<nsTArray<signed char> >(nsTArray<signed char>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::Destruct<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_mathml1.cpp:void mozilla::FramePropertyDescriptor<mozilla::LogicalSize>::Destruct<&(void DeleteValue<mozilla::LogicalSize>(mozilla::LogicalSize*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<mozilla::LayerActivity>::Destruct<&(void DeleteValue<mozilla::LayerActivity>(mozilla::LayerActivity*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<RetainedDisplayListData>::Destruct<&(void DeleteValue<RetainedDisplayListData>(RetainedDisplayListData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder>::Destruct<&(void DeleteValue<RetainedDisplayListBuilder>(RetainedDisplayListBuilder*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting0.cpp:void mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> >::Destruct<&(void DeleteValue<nsTArray<nsIFrame*> >(nsTArray<nsIFrame*>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Destruct<&(void DeleteValue<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTemplateElementObserver>(mozilla::SVGTemplateElementObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList>::Destruct<&(void ReleaseValue<mozilla::SVGMaskObserverList>(mozilla::SVGMaskObserverList*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty>::Destruct<&(void ReleaseValue<mozilla::nsSVGPaintingProperty>(mozilla::nsSVGPaintingProperty*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver>::Destruct<&(void ReleaseValue<mozilla::SVGMarkerObserver>(mozilla::SVGMarkerObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_painting1.cpp:void mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver>::Destruct<&(void ReleaseValue<mozilla::SVGTextPathObserver>(mozilla::SVGTextPathObserver*))>(void*) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::OutOfFlowDisplayData>(nsDisplayListBuilder::OutOfFlowDisplayData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:void mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData>::Destruct<&(void DeleteValue<nsDisplayListBuilder::DisplayListBuildingData>(nsDisplayListBuilder::DisplayListBuildingData*))>(void*) Unexecuted instantiation: Unified_cpp_layout_build0.cpp:void mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Destruct<&(void DeleteValue<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*))>(void*) Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:void mozilla::FramePropertyDescriptor<nsPoint>::Destruct<&(void DeleteValue<nsPoint>(nsPoint*))>(void*) Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:void mozilla::FramePropertyDescriptor<nsMargin>::Destruct<&(void DeleteValue<nsMargin>(nsMargin*))>(void*) Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:void mozilla::FramePropertyDescriptor<nsRect>::Destruct<&(void DeleteValue<nsRect>(nsRect*))>(void*) Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:void mozilla::FramePropertyDescriptor<nsOverflowAreas>::Destruct<&(void DeleteValue<nsOverflowAreas>(nsOverflowAreas*))>(void*) Unexecuted instantiation: Unified_cpp_docshell_base0.cpp:void mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> >::Destruct<&(void DeleteValue<AutoTArray<nsDisplayItem*, 4ul> >(AutoTArray<nsDisplayItem*, 4ul>*))>(void*) |
104 | | |
105 | | template<DestructorWithFrame Dtor> |
106 | | static void DestructWithFrame(const nsIFrame* aFrame, void* aPropertyValue) |
107 | | { |
108 | | Dtor(aFrame, static_cast<T*>(aPropertyValue)); |
109 | | } |
110 | | }; |
111 | | |
112 | | // SmallValueHolder<T> is a placeholder intended to be used as template |
113 | | // argument of FramePropertyDescriptor for types which can fit into the |
114 | | // size of a pointer directly. This class should never be defined, so |
115 | | // that we won't use it for unexpected purpose by mistake. |
116 | | template<typename T> |
117 | | class SmallValueHolder; |
118 | | |
119 | | namespace detail { |
120 | | |
121 | | template<typename T> |
122 | | struct FramePropertyTypeHelper |
123 | | { |
124 | | typedef T* Type; |
125 | | }; |
126 | | template<typename T> |
127 | | struct FramePropertyTypeHelper<SmallValueHolder<T>> |
128 | | { |
129 | | typedef T Type; |
130 | | }; |
131 | | |
132 | | } |
133 | | |
134 | | /** |
135 | | * The FrameProperties class is optimized for storing 0 or 1 properties on |
136 | | * a given frame. Storing very large numbers of properties on a single |
137 | | * frame will not be efficient. |
138 | | * |
139 | | * Property values are passed as void* but do not actually have to be |
140 | | * valid pointers. You can use NS_INT32_TO_PTR/NS_PTR_TO_INT32 to |
141 | | * store int32_t values. Null/zero values can be stored and retrieved. |
142 | | * Of course, the destructor function (if any) must handle such values |
143 | | * correctly. |
144 | | */ |
145 | | class FrameProperties |
146 | | { |
147 | | public: |
148 | | template<typename T> |
149 | | using Descriptor = const FramePropertyDescriptor<T>*; |
150 | | using UntypedDescriptor = const FramePropertyDescriptorUntyped*; |
151 | | |
152 | | template<typename T> |
153 | | using PropertyType = typename detail::FramePropertyTypeHelper<T>::Type; |
154 | | |
155 | | explicit FrameProperties() |
156 | 0 | { |
157 | 0 | } |
158 | | |
159 | | ~FrameProperties() |
160 | 0 | { |
161 | 0 | MOZ_ASSERT(mProperties.Length() == 0, "forgot to delete properties"); |
162 | 0 | } |
163 | | |
164 | | /** |
165 | | * Return true if we have no properties, otherwise return false. |
166 | | */ |
167 | 0 | bool IsEmpty() const { return mProperties.IsEmpty(); } |
168 | | |
169 | | /** |
170 | | * Set a property value. This requires a linear search through |
171 | | * the properties of the frame. Any existing value for the property |
172 | | * is destroyed. |
173 | | */ |
174 | | template<typename T> |
175 | | void Set(Descriptor<T> aProperty, PropertyType<T> aValue, |
176 | | const nsIFrame* aFrame) |
177 | 0 | { |
178 | 0 | void* ptr = ReinterpretHelper<T>::ToPointer(aValue); |
179 | 0 | SetInternal(aProperty, ptr, aFrame); |
180 | 0 | } Unexecuted instantiation: void mozilla::FrameProperties::Set<nsTArray<nsCOMPtr<nsIWeakReference> > >(mozilla::FramePropertyDescriptor<nsTArray<nsCOMPtr<nsIWeakReference> > > const*, mozilla::detail::FramePropertyTypeHelper<nsTArray<nsCOMPtr<nsIWeakReference> > >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<AnimatedGeometryRoot>(mozilla::FramePropertyDescriptor<AnimatedGeometryRoot> const*, mozilla::detail::FramePropertyTypeHelper<AnimatedGeometryRoot>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::ActiveScrolledRoot>(mozilla::FramePropertyDescriptor<mozilla::ActiveScrolledRoot> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::ActiveScrolledRoot>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsTArray<mozilla::layers::BlobItemData*> >(mozilla::FramePropertyDescriptor<nsTArray<mozilla::layers::BlobItemData*> > const*, mozilla::detail::FramePropertyTypeHelper<nsTArray<mozilla::layers::BlobItemData*> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsLineBox>(mozilla::FramePropertyDescriptor<nsLineBox> const*, mozilla::detail::FramePropertyTypeHelper<nsLineBox>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsContainerFrame>(mozilla::FramePropertyDescriptor<nsContainerFrame> const*, mozilla::detail::FramePropertyTypeHelper<nsContainerFrame>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<RetainedDisplayListBuilder>(mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder> const*, mozilla::detail::FramePropertyTypeHelper<RetainedDisplayListBuilder>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SmallValueHolder<mozilla::FrameBidiData> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<mozilla::FrameBidiData> > const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<mozilla::FrameBidiData> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsPlaceholderFrame>(mozilla::FramePropertyDescriptor<nsPlaceholderFrame> const*, mozilla::detail::FramePropertyTypeHelper<nsPlaceholderFrame>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsIFrame>(mozilla::FramePropertyDescriptor<nsIFrame> const*, mozilla::detail::FramePropertyTypeHelper<nsIFrame>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsRect>(mozilla::FramePropertyDescriptor<nsRect> const*, mozilla::detail::FramePropertyTypeHelper<nsRect>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SmallValueHolder<int> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<int> > const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<int> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsBoxLayoutMetrics>(mozilla::FramePropertyDescriptor<nsBoxLayoutMetrics> const*, mozilla::detail::FramePropertyTypeHelper<nsBoxLayoutMetrics>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::StickyScrollContainer>(mozilla::FramePropertyDescriptor<mozilla::StickyScrollContainer> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::StickyScrollContainer>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsMargin>(mozilla::FramePropertyDescriptor<nsMargin> const*, mozilla::detail::FramePropertyTypeHelper<nsMargin>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsBlockFrame::FrameLines>(mozilla::FramePropertyDescriptor<nsBlockFrame::FrameLines> const*, mozilla::detail::FramePropertyTypeHelper<nsBlockFrame::FrameLines>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsFrameList>(mozilla::FramePropertyDescriptor<nsFrameList> const*, mozilla::detail::FramePropertyTypeHelper<nsFrameList>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsBulletFrame>(mozilla::FramePropertyDescriptor<nsBulletFrame> const*, mozilla::detail::FramePropertyTypeHelper<nsBulletFrame>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SmallValueHolder<float> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<float> > const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<float> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsFlexContainerFrame::CachedMeasuringReflowResult>(mozilla::FramePropertyDescriptor<nsFlexContainerFrame::CachedMeasuringReflowResult> const*, mozilla::detail::FramePropertyTypeHelper<nsFlexContainerFrame::CachedMeasuringReflowResult>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<ComputedFlexContainerInfo>(mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo> const*, mozilla::detail::FramePropertyTypeHelper<ComputedFlexContainerInfo>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsFontInflationData>(mozilla::FramePropertyDescriptor<nsFontInflationData> const*, mozilla::detail::FramePropertyTypeHelper<nsFontInflationData>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsAbsoluteContainingBlock>(mozilla::FramePropertyDescriptor<nsAbsoluteContainingBlock> const*, mozilla::detail::FramePropertyTypeHelper<nsAbsoluteContainingBlock>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SmallValueHolder<unsigned int> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<unsigned int> > const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<unsigned int> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsOverflowAreas>(mozilla::FramePropertyDescriptor<nsOverflowAreas> const*, mozilla::detail::FramePropertyTypeHelper<nsOverflowAreas>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> > const*, mozilla::detail::FramePropertyTypeHelper<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::LogicalSize>(mozilla::FramePropertyDescriptor<mozilla::LogicalSize> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::LogicalSize>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::ComputedGridTrackInfo>(mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::ComputedGridTrackInfo>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::ComputedGridLineInfo>(mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::ComputedGridLineInfo>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsTArray<mozilla::css::GridNamedArea> >(mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> > const*, mozilla::detail::FramePropertyTypeHelper<nsTArray<mozilla::css::GridNamedArea> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsGridContainerFrame::SharedGridData>(mozilla::FramePropertyDescriptor<nsGridContainerFrame::SharedGridData> const*, mozilla::detail::FramePropertyTypeHelper<nsGridContainerFrame::SharedGridData>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<TabWidthStore>(mozilla::FramePropertyDescriptor<TabWidthStore> const*, mozilla::detail::FramePropertyTypeHelper<TabWidthStore>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<gfxTextRun>(mozilla::FramePropertyDescriptor<gfxTextRun> const*, mozilla::detail::FramePropertyTypeHelper<gfxTextRun>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<EmphasisMarkInfo>(mozilla::FramePropertyDescriptor<EmphasisMarkInfo> const*, mozilla::detail::FramePropertyTypeHelper<EmphasisMarkInfo>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsTextFrame>(mozilla::FramePropertyDescriptor<nsTextFrame> const*, mozilla::detail::FramePropertyTypeHelper<nsTextFrame>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsTextControlFrame::EditorInitializer>(mozilla::FramePropertyDescriptor<nsTextControlFrame::EditorInitializer> const*, mozilla::detail::FramePropertyTypeHelper<nsTextControlFrame::EditorInitializer>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsPoint>(mozilla::FramePropertyDescriptor<nsPoint> const*, mozilla::detail::FramePropertyTypeHelper<nsPoint>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsTArray<nsIFrame*> >(mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const*, mozilla::detail::FramePropertyTypeHelper<nsTArray<nsIFrame*> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<BCPropertyData>(mozilla::FramePropertyDescriptor<BCPropertyData> const*, mozilla::detail::FramePropertyTypeHelper<BCPropertyData>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsTableRowGroupFrame::FrameCursorData>(mozilla::FramePropertyDescriptor<nsTableRowGroupFrame::FrameCursorData> const*, mozilla::detail::FramePropertyTypeHelper<nsTableRowGroupFrame::FrameCursorData>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SVGFilterObserverListForCSSProp>(mozilla::FramePropertyDescriptor<mozilla::SVGFilterObserverListForCSSProp> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SVGFilterObserverListForCSSProp>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SVGMaskObserverList>(mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SVGMaskObserverList>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SVGMarkerObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SVGMarkerObserver>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SVGTextPathObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SVGTextPathObserver>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SVGTemplateElementObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SVGTemplateElementObserver>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::nsSVGPaintingProperty>(mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::nsSVGPaintingProperty>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const*, mozilla::detail::FramePropertyTypeHelper<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::TextNodeCorrespondence>(mozilla::FramePropertyDescriptor<mozilla::TextNodeCorrespondence> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::TextNodeCorrespondence>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const*, mozilla::detail::FramePropertyTypeHelper<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::ReflowOutput>(mozilla::FramePropertyDescriptor<mozilla::ReflowOutput> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::ReflowOutput>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsTArray<signed char> >(mozilla::FramePropertyDescriptor<nsTArray<signed char> > const*, mozilla::detail::FramePropertyTypeHelper<nsTArray<signed char> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsDisplayListBuilder::DisplayListBuildingData>(mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const*, mozilla::detail::FramePropertyTypeHelper<nsDisplayListBuilder::DisplayListBuildingData>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::LayerActivity>(mozilla::FramePropertyDescriptor<mozilla::LayerActivity> const*, mozilla::detail::FramePropertyTypeHelper<mozilla::LayerActivity>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<RetainedDisplayListData>(mozilla::FramePropertyDescriptor<RetainedDisplayListData> const*, mozilla::detail::FramePropertyTypeHelper<RetainedDisplayListData>::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<mozilla::SmallValueHolder<bool> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<bool> > const*, mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<bool> >::Type, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Set<nsDisplayListBuilder::OutOfFlowDisplayData>(mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const*, mozilla::detail::FramePropertyTypeHelper<nsDisplayListBuilder::OutOfFlowDisplayData>::Type, nsIFrame const*) |
181 | | |
182 | | /** |
183 | | * Add a property value; the descriptor MUST NOT already be present. |
184 | | */ |
185 | | template<typename T> |
186 | | void Add(Descriptor<T> aProperty, PropertyType<T> aValue) |
187 | 0 | { |
188 | 0 | MOZ_ASSERT(!Has(aProperty), "duplicate frame property"); |
189 | 0 | void* ptr = ReinterpretHelper<T>::ToPointer(aValue); |
190 | 0 | AddInternal(aProperty, ptr); |
191 | 0 | } Unexecuted instantiation: void mozilla::FrameProperties::Add<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >(mozilla::FramePropertyDescriptor<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> > const*, mozilla::detail::FramePropertyTypeHelper<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >::Type) Unexecuted instantiation: void mozilla::FrameProperties::Add<nsPoint>(mozilla::FramePropertyDescriptor<nsPoint> const*, mozilla::detail::FramePropertyTypeHelper<nsPoint>::Type) Unexecuted instantiation: void mozilla::FrameProperties::Add<nsMargin>(mozilla::FramePropertyDescriptor<nsMargin> const*, mozilla::detail::FramePropertyTypeHelper<nsMargin>::Type) Unexecuted instantiation: void mozilla::FrameProperties::Add<AutoTArray<nsDisplayItem*, 4ul> >(mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const*, mozilla::detail::FramePropertyTypeHelper<AutoTArray<nsDisplayItem*, 4ul> >::Type) Unexecuted instantiation: void mozilla::FrameProperties::Add<nsRect>(mozilla::FramePropertyDescriptor<nsRect> const*, mozilla::detail::FramePropertyTypeHelper<nsRect>::Type) Unexecuted instantiation: void mozilla::FrameProperties::Add<nsOverflowAreas>(mozilla::FramePropertyDescriptor<nsOverflowAreas> const*, mozilla::detail::FramePropertyTypeHelper<nsOverflowAreas>::Type) |
192 | | |
193 | | /** |
194 | | * @return true if @aProperty is set. This requires a linear search through the |
195 | | * properties of the frame. |
196 | | * |
197 | | * In most cases, this shouldn't be used outside of assertions, because if |
198 | | * you're doing a lookup anyway it would be far more efficient to call Get() |
199 | | * or Remove() and check the aFoundResult outparam to find out whether the |
200 | | * property is set. Legitimate non-assertion uses include: |
201 | | * |
202 | | * - Checking if a frame property is set in cases where that's all we want |
203 | | * to know (i.e., we don't intend to read the actual value or remove the |
204 | | * property). |
205 | | * |
206 | | * - Calling Has() before Set() in cases where we don't want to overwrite |
207 | | * an existing value for the frame property. |
208 | | * |
209 | | * The HasSkippingBitCheck variant doesn't test NS_FRAME_HAS_PROPERTIES |
210 | | * on aFrame, so it is safe to call after aFrame has been destroyed as |
211 | | * long as, since that destruction happened, it isn't possible for a |
212 | | * new frame to have been created and the same property added. |
213 | | */ |
214 | | template<typename T> |
215 | | bool Has(Descriptor<T> aProperty) const |
216 | 0 | { |
217 | 0 | return mProperties.Contains(aProperty, PropertyComparator()); |
218 | 0 | } Unexecuted instantiation: bool mozilla::FrameProperties::Has<mozilla::SmallValueHolder<mozilla::FrameBidiData> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<mozilla::FrameBidiData> > const*) const Unexecuted instantiation: bool mozilla::FrameProperties::Has<RetainedDisplayListBuilder>(mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder> const*) const Unexecuted instantiation: bool mozilla::FrameProperties::Has<ComputedFlexContainerInfo>(mozilla::FramePropertyDescriptor<ComputedFlexContainerInfo> const*) const Unexecuted instantiation: bool mozilla::FrameProperties::Has<nsMargin>(mozilla::FramePropertyDescriptor<nsMargin> const*) const Unexecuted instantiation: bool mozilla::FrameProperties::Has<mozilla::ComputedGridTrackInfo>(mozilla::FramePropertyDescriptor<mozilla::ComputedGridTrackInfo> const*) const Unexecuted instantiation: bool mozilla::FrameProperties::Has<mozilla::ComputedGridLineInfo>(mozilla::FramePropertyDescriptor<mozilla::ComputedGridLineInfo> const*) const Unexecuted instantiation: bool mozilla::FrameProperties::Has<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >(mozilla::FramePropertyDescriptor<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> > const*) const |
219 | | |
220 | | /** |
221 | | * Get a property value. This requires a linear search through |
222 | | * the properties of the frame. If the frame has no such property, |
223 | | * returns zero-filled result, which means null for pointers and |
224 | | * zero for integers and floating point types. |
225 | | * @param aFoundResult if non-null, receives a value 'true' iff |
226 | | * the frame has a value for the property. This lets callers |
227 | | * disambiguate a null result, which can mean 'no such property' or |
228 | | * 'property value is null'. |
229 | | */ |
230 | | template<typename T> |
231 | | PropertyType<T> Get(Descriptor<T> aProperty, |
232 | | bool* aFoundResult = nullptr) const |
233 | 0 | { |
234 | 0 | void* ptr = GetInternal(aProperty, aFoundResult); |
235 | 0 | return ReinterpretHelper<T>::FromPointer(ptr); |
236 | 0 | } Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<mozilla::FrameBidiData> >::Type mozilla::FrameProperties::Get<mozilla::SmallValueHolder<mozilla::FrameBidiData> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<mozilla::FrameBidiData> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsContainerFrame>::Type mozilla::FrameProperties::Get<nsContainerFrame>(mozilla::FramePropertyDescriptor<nsContainerFrame> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsTArray<nsCOMPtr<nsIWeakReference> > >::Type mozilla::FrameProperties::Get<nsTArray<nsCOMPtr<nsIWeakReference> > >(mozilla::FramePropertyDescriptor<nsTArray<nsCOMPtr<nsIWeakReference> > > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsOverflowAreas>::Type mozilla::FrameProperties::Get<nsOverflowAreas>(mozilla::FramePropertyDescriptor<nsOverflowAreas> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsPoint>::Type mozilla::FrameProperties::Get<nsPoint>(mozilla::FramePropertyDescriptor<nsPoint> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >::Type mozilla::FrameProperties::Get<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >(mozilla::FramePropertyDescriptor<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsFrameList>::Type mozilla::FrameProperties::Get<nsFrameList>(mozilla::FramePropertyDescriptor<nsFrameList> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<AnimatedGeometryRoot>::Type mozilla::FrameProperties::Get<AnimatedGeometryRoot>(mozilla::FramePropertyDescriptor<AnimatedGeometryRoot> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::ActiveScrolledRoot>::Type mozilla::FrameProperties::Get<mozilla::ActiveScrolledRoot>(mozilla::FramePropertyDescriptor<mozilla::ActiveScrolledRoot> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsDisplayListBuilder::OutOfFlowDisplayData>::Type mozilla::FrameProperties::Get<nsDisplayListBuilder::OutOfFlowDisplayData>(mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsTArray<mozilla::layers::BlobItemData*> >::Type mozilla::FrameProperties::Get<nsTArray<mozilla::layers::BlobItemData*> >(mozilla::FramePropertyDescriptor<nsTArray<mozilla::layers::BlobItemData*> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsLineBox>::Type mozilla::FrameProperties::Get<nsLineBox>(mozilla::FramePropertyDescriptor<nsLineBox> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<RetainedDisplayListBuilder>::Type mozilla::FrameProperties::Get<RetainedDisplayListBuilder>(mozilla::FramePropertyDescriptor<RetainedDisplayListBuilder> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsRect>::Type mozilla::FrameProperties::Get<nsRect>(mozilla::FramePropertyDescriptor<nsRect> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsMargin>::Type mozilla::FrameProperties::Get<nsMargin>(mozilla::FramePropertyDescriptor<nsMargin> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<int> >::Type mozilla::FrameProperties::Get<mozilla::SmallValueHolder<int> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<int> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::StickyScrollContainer>::Type mozilla::FrameProperties::Get<mozilla::StickyScrollContainer>(mozilla::FramePropertyDescriptor<mozilla::StickyScrollContainer> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsBlockFrame::FrameLines>::Type mozilla::FrameProperties::Get<nsBlockFrame::FrameLines>(mozilla::FramePropertyDescriptor<nsBlockFrame::FrameLines> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsBulletFrame>::Type mozilla::FrameProperties::Get<nsBulletFrame>(mozilla::FramePropertyDescriptor<nsBulletFrame> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsIFrame>::Type mozilla::FrameProperties::Get<nsIFrame>(mozilla::FramePropertyDescriptor<nsIFrame> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<float> >::Type mozilla::FrameProperties::Get<mozilla::SmallValueHolder<float> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<float> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsFlexContainerFrame::CachedMeasuringReflowResult>::Type mozilla::FrameProperties::Get<nsFlexContainerFrame::CachedMeasuringReflowResult>(mozilla::FramePropertyDescriptor<nsFlexContainerFrame::CachedMeasuringReflowResult> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsFontInflationData>::Type mozilla::FrameProperties::Get<nsFontInflationData>(mozilla::FramePropertyDescriptor<nsFontInflationData> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsAbsoluteContainingBlock>::Type mozilla::FrameProperties::Get<nsAbsoluteContainingBlock>(mozilla::FramePropertyDescriptor<nsAbsoluteContainingBlock> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<AutoTArray<nsDisplayItem*, 4ul> >::Type mozilla::FrameProperties::Get<AutoTArray<nsDisplayItem*, 4ul> >(mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<unsigned int> >::Type mozilla::FrameProperties::Get<mozilla::SmallValueHolder<unsigned int> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<unsigned int> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsDisplayListBuilder::DisplayListBuildingData>::Type mozilla::FrameProperties::Get<nsDisplayListBuilder::DisplayListBuildingData>(mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsBoxLayoutMetrics>::Type mozilla::FrameProperties::Get<nsBoxLayoutMetrics>(mozilla::FramePropertyDescriptor<nsBoxLayoutMetrics> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsGridContainerFrame::SharedGridData>::Type mozilla::FrameProperties::Get<nsGridContainerFrame::SharedGridData>(mozilla::FramePropertyDescriptor<nsGridContainerFrame::SharedGridData> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::LogicalSize>::Type mozilla::FrameProperties::Get<mozilla::LogicalSize>(mozilla::FramePropertyDescriptor<mozilla::LogicalSize> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<TabWidthStore>::Type mozilla::FrameProperties::Get<TabWidthStore>(mozilla::FramePropertyDescriptor<TabWidthStore> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<gfxTextRun>::Type mozilla::FrameProperties::Get<gfxTextRun>(mozilla::FramePropertyDescriptor<gfxTextRun> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<EmphasisMarkInfo>::Type mozilla::FrameProperties::Get<EmphasisMarkInfo>(mozilla::FramePropertyDescriptor<EmphasisMarkInfo> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsTextFrame>::Type mozilla::FrameProperties::Get<nsTextFrame>(mozilla::FramePropertyDescriptor<nsTextFrame> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsTArray<nsIFrame*> >::Type mozilla::FrameProperties::Get<nsTArray<nsIFrame*> >(mozilla::FramePropertyDescriptor<nsTArray<nsIFrame*> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<BCPropertyData>::Type mozilla::FrameProperties::Get<BCPropertyData>(mozilla::FramePropertyDescriptor<BCPropertyData> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsTableRowGroupFrame::FrameCursorData>::Type mozilla::FrameProperties::Get<nsTableRowGroupFrame::FrameCursorData>(mozilla::FramePropertyDescriptor<nsTableRowGroupFrame::FrameCursorData> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SVGMaskObserverList>::Type mozilla::FrameProperties::Get<mozilla::SVGMaskObserverList>(mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::TextNodeCorrespondence>::Type mozilla::FrameProperties::Get<mozilla::TextNodeCorrespondence>(mozilla::FramePropertyDescriptor<mozilla::TextNodeCorrespondence> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SVGFilterObserverListForCSSProp>::Type mozilla::FrameProperties::Get<mozilla::SVGFilterObserverListForCSSProp>(mozilla::FramePropertyDescriptor<mozilla::SVGFilterObserverListForCSSProp> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SVGMarkerObserver>::Type mozilla::FrameProperties::Get<mozilla::SVGMarkerObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SVGTextPathObserver>::Type mozilla::FrameProperties::Get<mozilla::SVGTextPathObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SVGTemplateElementObserver>::Type mozilla::FrameProperties::Get<mozilla::SVGTemplateElementObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::nsSVGPaintingProperty>::Type mozilla::FrameProperties::Get<mozilla::nsSVGPaintingProperty>(mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::Type mozilla::FrameProperties::Get<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::Type mozilla::FrameProperties::Get<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::ReflowOutput>::Type mozilla::FrameProperties::Get<mozilla::ReflowOutput>(mozilla::FramePropertyDescriptor<mozilla::ReflowOutput> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsTArray<signed char> >::Type mozilla::FrameProperties::Get<nsTArray<signed char> >(mozilla::FramePropertyDescriptor<nsTArray<signed char> > const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::LayerActivity>::Type mozilla::FrameProperties::Get<mozilla::LayerActivity>(mozilla::FramePropertyDescriptor<mozilla::LayerActivity> const*, bool*) const Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<RetainedDisplayListData>::Type mozilla::FrameProperties::Get<RetainedDisplayListData>(mozilla::FramePropertyDescriptor<RetainedDisplayListData> const*, bool*) const |
237 | | |
238 | | /** |
239 | | * Remove a property value. This requires a linear search through |
240 | | * the properties of the frame. The old property value is returned |
241 | | * (and not destroyed). If the frame has no such property, |
242 | | * returns zero-filled result, which means null for pointers and |
243 | | * zero for integers and floating point types. |
244 | | * @param aFoundResult if non-null, receives a value 'true' iff |
245 | | * the frame had a value for the property. This lets callers |
246 | | * disambiguate a null result, which can mean 'no such property' or |
247 | | * 'property value is null'. |
248 | | */ |
249 | | template<typename T> |
250 | | PropertyType<T> Remove(Descriptor<T> aProperty, |
251 | | bool* aFoundResult = nullptr) |
252 | 0 | { |
253 | 0 | void* ptr = RemoveInternal(aProperty, aFoundResult); |
254 | 0 | return ReinterpretHelper<T>::FromPointer(ptr); |
255 | 0 | } Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsFrameList>::Type mozilla::FrameProperties::Remove<nsFrameList>(mozilla::FramePropertyDescriptor<nsFrameList> const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >::Type mozilla::FrameProperties::Remove<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >(mozilla::FramePropertyDescriptor<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> > const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsIFrame>::Type mozilla::FrameProperties::Remove<nsIFrame>(mozilla::FramePropertyDescriptor<nsIFrame> const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<int> >::Type mozilla::FrameProperties::Remove<mozilla::SmallValueHolder<int> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<int> > const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsBlockFrame::FrameLines>::Type mozilla::FrameProperties::Remove<nsBlockFrame::FrameLines>(mozilla::FramePropertyDescriptor<nsBlockFrame::FrameLines> const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<AutoTArray<nsDisplayItem*, 4ul> >::Type mozilla::FrameProperties::Remove<AutoTArray<nsDisplayItem*, 4ul> >(mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<unsigned int> >::Type mozilla::FrameProperties::Remove<mozilla::SmallValueHolder<unsigned int> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<unsigned int> > const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::SmallValueHolder<float> >::Type mozilla::FrameProperties::Remove<mozilla::SmallValueHolder<float> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<float> > const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<nsPoint>::Type mozilla::FrameProperties::Remove<nsPoint>(mozilla::FramePropertyDescriptor<nsPoint> const*, bool*) Unexecuted instantiation: mozilla::detail::FramePropertyTypeHelper<mozilla::LayerActivity>::Type mozilla::FrameProperties::Remove<mozilla::LayerActivity>(mozilla::FramePropertyDescriptor<mozilla::LayerActivity> const*, bool*) |
256 | | |
257 | | /** |
258 | | * Remove and destroy a property value. This requires a linear search |
259 | | * through the properties of the frame. If the frame has no such |
260 | | * property, nothing happens. |
261 | | */ |
262 | | template<typename T> |
263 | | void Delete(Descriptor<T> aProperty, const nsIFrame* aFrame) |
264 | 0 | { |
265 | 0 | DeleteInternal(aProperty, aFrame); |
266 | 0 | } Unexecuted instantiation: void mozilla::FrameProperties::Delete<AnimatedGeometryRoot>(mozilla::FramePropertyDescriptor<AnimatedGeometryRoot> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::ActiveScrolledRoot>(mozilla::FramePropertyDescriptor<mozilla::ActiveScrolledRoot> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsTArray<mozilla::layers::BlobItemData*> >(mozilla::FramePropertyDescriptor<nsTArray<mozilla::layers::BlobItemData*> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsTextControlFrame::EditorInitializer>(mozilla::FramePropertyDescriptor<nsTextControlFrame::EditorInitializer> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsMargin>(mozilla::FramePropertyDescriptor<nsMargin> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsBoxLayoutMetrics>(mozilla::FramePropertyDescriptor<nsBoxLayoutMetrics> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsRect>(mozilla::FramePropertyDescriptor<nsRect> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::SmallValueHolder<int> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<int> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsLineBox>(mozilla::FramePropertyDescriptor<nsLineBox> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::SmallValueHolder<float> >(mozilla::FramePropertyDescriptor<mozilla::SmallValueHolder<float> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsContainerFrame>(mozilla::FramePropertyDescriptor<nsContainerFrame> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsAbsoluteContainingBlock>(mozilla::FramePropertyDescriptor<nsAbsoluteContainingBlock> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<AutoTArray<nsDisplayItem*, 4ul> >(mozilla::FramePropertyDescriptor<AutoTArray<nsDisplayItem*, 4ul> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsFlexContainerFrame::CachedMeasuringReflowResult>(mozilla::FramePropertyDescriptor<nsFlexContainerFrame::CachedMeasuringReflowResult> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsOverflowAreas>(mozilla::FramePropertyDescriptor<nsOverflowAreas> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >(mozilla::FramePropertyDescriptor<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsFrameList>(mozilla::FramePropertyDescriptor<nsFrameList> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsTArray<mozilla::css::GridNamedArea> >(mozilla::FramePropertyDescriptor<nsTArray<mozilla::css::GridNamedArea> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsGridContainerFrame::SharedGridData>(mozilla::FramePropertyDescriptor<nsGridContainerFrame::SharedGridData> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsPlaceholderFrame>(mozilla::FramePropertyDescriptor<nsPlaceholderFrame> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<TabWidthStore>(mozilla::FramePropertyDescriptor<TabWidthStore> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsTextFrame>(mozilla::FramePropertyDescriptor<nsTextFrame> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<gfxTextRun>(mozilla::FramePropertyDescriptor<gfxTextRun> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<EmphasisMarkInfo>(mozilla::FramePropertyDescriptor<EmphasisMarkInfo> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsTableRowGroupFrame::FrameCursorData>(mozilla::FramePropertyDescriptor<nsTableRowGroupFrame::FrameCursorData> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::SVGTextPathObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGTextPathObserver> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::SVGFilterObserverListForCSSProp>(mozilla::FramePropertyDescriptor<mozilla::SVGFilterObserverListForCSSProp> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::SVGMaskObserverList>(mozilla::FramePropertyDescriptor<mozilla::SVGMaskObserverList> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::nsSVGPaintingProperty>(mozilla::FramePropertyDescriptor<mozilla::nsSVGPaintingProperty> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::SVGMarkerObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGMarkerObserver> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >(mozilla::FramePropertyDescriptor<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >(mozilla::FramePropertyDescriptor<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::SVGTemplateElementObserver>(mozilla::FramePropertyDescriptor<mozilla::SVGTemplateElementObserver> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::ReflowOutput>(mozilla::FramePropertyDescriptor<mozilla::ReflowOutput> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsTArray<signed char> >(mozilla::FramePropertyDescriptor<nsTArray<signed char> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsDisplayListBuilder::DisplayListBuildingData>(mozilla::FramePropertyDescriptor<nsDisplayListBuilder::DisplayListBuildingData> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<mozilla::LayerActivity>(mozilla::FramePropertyDescriptor<mozilla::LayerActivity> const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >(mozilla::FramePropertyDescriptor<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> > const*, nsIFrame const*) Unexecuted instantiation: void mozilla::FrameProperties::Delete<nsDisplayListBuilder::OutOfFlowDisplayData>(mozilla::FramePropertyDescriptor<nsDisplayListBuilder::OutOfFlowDisplayData> const*, nsIFrame const*) |
267 | | |
268 | | /** |
269 | | * Call @aFunction for each property or until @aFunction returns false. |
270 | | */ |
271 | | template<class F> |
272 | | void ForEach(F aFunction) const |
273 | 0 | { |
274 | | #ifdef DEBUG |
275 | | size_t len = mProperties.Length(); |
276 | | #endif |
277 | 0 | for (const auto& prop : mProperties) { |
278 | 0 | bool shouldContinue = aFunction(prop.mProperty, prop.mValue); |
279 | 0 | MOZ_ASSERT(len == mProperties.Length(), |
280 | 0 | "frame property list was modified by ForEach callback!"); |
281 | 0 | if (!shouldContinue) { |
282 | 0 | return; |
283 | 0 | } |
284 | 0 | } |
285 | 0 | } Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FrameProperties::ForEach<nsContainerFrame::DestroyFrom(nsIFrame*, mozilla::layout::PostFrameDestroyData&)::$_2>(nsContainerFrame::DestroyFrom(nsIFrame*, mozilla::layout::PostFrameDestroyData&)::$_2) const Unexecuted instantiation: Unified_cpp_layout_generic1.cpp:void mozilla::FrameProperties::ForEach<nsContainerFrame::GetChildLists(nsTArray<mozilla::layout::FrameChildList>*) const::$_3>(nsContainerFrame::GetChildLists(nsTArray<mozilla::layout::FrameChildList>*) const::$_3) const |
286 | | |
287 | | /** |
288 | | * Remove and destroy all property values for the frame. |
289 | | */ |
290 | 0 | void DeleteAll(const nsIFrame* aFrame) { |
291 | 0 | nsTArray<PropertyValue> toDelete; |
292 | 0 | toDelete.SwapElements(mProperties); |
293 | 0 | for (auto& prop : toDelete) { |
294 | 0 | prop.DestroyValueFor(aFrame); |
295 | 0 | } |
296 | 0 | MOZ_ASSERT(mProperties.IsEmpty(), "a property dtor added new properties"); |
297 | 0 | } |
298 | | |
299 | 0 | size_t SizeOfExcludingThis(mozilla::MallocSizeOf aMallocSizeOf) const { |
300 | 0 | // We currently report only the shallow size of the mProperties array. |
301 | 0 | // As for the PropertyValue entries: we don't need to measure the mProperty |
302 | 0 | // field of because it always points to static memory, and we can't measure |
303 | 0 | // mValue because the type is opaque. |
304 | 0 | // XXX Can we do better, e.g. with a method on the descriptor? |
305 | 0 | return mProperties.ShallowSizeOfExcludingThis(aMallocSizeOf); |
306 | 0 | } |
307 | | |
308 | | private: |
309 | | // Prevent copying of FrameProperties; we should always return/pass around |
310 | | // references to it, not copies! |
311 | | FrameProperties(const FrameProperties&) = delete; |
312 | | FrameProperties& operator=(const FrameProperties&) = delete; |
313 | | |
314 | | inline void |
315 | | SetInternal(UntypedDescriptor aProperty, void* aValue, |
316 | | const nsIFrame* aFrame); |
317 | | |
318 | | inline void |
319 | | AddInternal(UntypedDescriptor aProperty, void* aValue); |
320 | | |
321 | | inline void* |
322 | | GetInternal(UntypedDescriptor aProperty, bool* aFoundResult) const; |
323 | | |
324 | | inline void* |
325 | | RemoveInternal(UntypedDescriptor aProperty, bool* aFoundResult); |
326 | | |
327 | | inline void |
328 | | DeleteInternal(UntypedDescriptor aProperty, const nsIFrame* aFrame); |
329 | | |
330 | | template<typename T> |
331 | | struct ReinterpretHelper |
332 | | { |
333 | | static_assert(sizeof(PropertyType<T>) <= sizeof(void*), |
334 | | "size of the value must never be larger than a pointer"); |
335 | | |
336 | | static void* ToPointer(PropertyType<T> aValue) |
337 | 0 | { |
338 | 0 | void* ptr = nullptr; |
339 | 0 | memcpy(&ptr, &aValue, sizeof(aValue)); |
340 | 0 | return ptr; |
341 | 0 | } Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<nsCOMPtr<nsIWeakReference> > >::ToPointer(nsTArray<nsCOMPtr<nsIWeakReference> >*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<AnimatedGeometryRoot>::ToPointer(AnimatedGeometryRoot*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::ActiveScrolledRoot>::ToPointer(mozilla::ActiveScrolledRoot*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<mozilla::layers::BlobItemData*> >::ToPointer(nsTArray<mozilla::layers::BlobItemData*>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >::ToPointer(nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsPoint>::ToPointer(nsPoint*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsLineBox>::ToPointer(nsLineBox*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsContainerFrame>::ToPointer(nsContainerFrame*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<RetainedDisplayListBuilder>::ToPointer(RetainedDisplayListBuilder*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<mozilla::FrameBidiData> >::ToPointer(mozilla::FrameBidiData) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsPlaceholderFrame>::ToPointer(nsPlaceholderFrame*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsIFrame>::ToPointer(nsIFrame*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsRect>::ToPointer(nsRect*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsMargin>::ToPointer(nsMargin*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<int> >::ToPointer(int) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsBoxLayoutMetrics>::ToPointer(nsBoxLayoutMetrics*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::StickyScrollContainer>::ToPointer(mozilla::StickyScrollContainer*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsBlockFrame::FrameLines>::ToPointer(nsBlockFrame::FrameLines*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsFrameList>::ToPointer(nsFrameList*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsBulletFrame>::ToPointer(nsBulletFrame*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<float> >::ToPointer(float) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsFlexContainerFrame::CachedMeasuringReflowResult>::ToPointer(nsFlexContainerFrame::CachedMeasuringReflowResult*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<ComputedFlexContainerInfo>::ToPointer(ComputedFlexContainerInfo*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsFontInflationData>::ToPointer(nsFontInflationData*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsAbsoluteContainingBlock>::ToPointer(nsAbsoluteContainingBlock*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<AutoTArray<nsDisplayItem*, 4ul> >::ToPointer(AutoTArray<nsDisplayItem*, 4ul>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<unsigned int> >::ToPointer(unsigned int) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsOverflowAreas>::ToPointer(nsOverflowAreas*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea> >::ToPointer(nsBaseHashtable<nsStringHashKey, mozilla::css::GridNamedArea, mozilla::css::GridNamedArea>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::LogicalSize>::ToPointer(mozilla::LogicalSize*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::ComputedGridTrackInfo>::ToPointer(mozilla::ComputedGridTrackInfo*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::ComputedGridLineInfo>::ToPointer(mozilla::ComputedGridLineInfo*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<mozilla::css::GridNamedArea> >::ToPointer(nsTArray<mozilla::css::GridNamedArea>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsGridContainerFrame::SharedGridData>::ToPointer(nsGridContainerFrame::SharedGridData*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<TabWidthStore>::ToPointer(TabWidthStore*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<gfxTextRun>::ToPointer(gfxTextRun*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<EmphasisMarkInfo>::ToPointer(EmphasisMarkInfo*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTextFrame>::ToPointer(nsTextFrame*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTextControlFrame::EditorInitializer>::ToPointer(nsTextControlFrame::EditorInitializer*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<nsIFrame*> >::ToPointer(nsTArray<nsIFrame*>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<BCPropertyData>::ToPointer(BCPropertyData*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTableRowGroupFrame::FrameCursorData>::ToPointer(nsTableRowGroupFrame::FrameCursorData*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGFilterObserverListForCSSProp>::ToPointer(mozilla::SVGFilterObserverListForCSSProp*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGMaskObserverList>::ToPointer(mozilla::SVGMaskObserverList*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGMarkerObserver>::ToPointer(mozilla::SVGMarkerObserver*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGTextPathObserver>::ToPointer(mozilla::SVGTextPathObserver*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGTemplateElementObserver>::ToPointer(mozilla::SVGTemplateElementObserver*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::nsSVGPaintingProperty>::ToPointer(mozilla::nsSVGPaintingProperty*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::ToPointer(nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::TextNodeCorrespondence>::ToPointer(mozilla::TextNodeCorrespondence*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::ToPointer(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::ReflowOutput>::ToPointer(mozilla::ReflowOutput*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<signed char> >::ToPointer(nsTArray<signed char>*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsDisplayListBuilder::DisplayListBuildingData>::ToPointer(nsDisplayListBuilder::DisplayListBuildingData*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::LayerActivity>::ToPointer(mozilla::LayerActivity*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<RetainedDisplayListData>::ToPointer(RetainedDisplayListData*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<bool> >::ToPointer(bool) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsDisplayListBuilder::OutOfFlowDisplayData>::ToPointer(nsDisplayListBuilder::OutOfFlowDisplayData*) |
342 | | |
343 | | static PropertyType<T> FromPointer(void* aPtr) |
344 | 0 | { |
345 | 0 | PropertyType<T> value; |
346 | 0 | memcpy(&value, &aPtr, sizeof(value)); |
347 | 0 | return value; |
348 | 0 | } Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<mozilla::FrameBidiData> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsContainerFrame>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<nsCOMPtr<nsIWeakReference> > >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsOverflowAreas>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsPoint>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsRefPtrHashtable<nsGenericHashKey<mozilla::layers::WebRenderUserDataKey>, mozilla::layers::WebRenderUserData> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsFrameList>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<AnimatedGeometryRoot>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::ActiveScrolledRoot>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsDisplayListBuilder::OutOfFlowDisplayData>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<mozilla::layers::BlobItemData*> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsLineBox>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<RetainedDisplayListBuilder>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsIFrame>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsRect>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsMargin>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<int> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::StickyScrollContainer>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsBlockFrame::FrameLines>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsBulletFrame>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<float> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsFlexContainerFrame::CachedMeasuringReflowResult>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsFontInflationData>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsAbsoluteContainingBlock>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<AutoTArray<nsDisplayItem*, 4ul> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SmallValueHolder<unsigned int> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsDisplayListBuilder::DisplayListBuildingData>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsBoxLayoutMetrics>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsGridContainerFrame::SharedGridData>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::LogicalSize>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<TabWidthStore>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<gfxTextRun>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<EmphasisMarkInfo>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTextFrame>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<nsIFrame*> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<BCPropertyData>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTableRowGroupFrame::FrameCursorData>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGMaskObserverList>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::TextNodeCorrespondence>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGFilterObserverListForCSSProp>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGMarkerObserver>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGTextPathObserver>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::SVGTemplateElementObserver>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::nsSVGPaintingProperty>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsInterfaceHashtable<nsRefPtrHashKey<mozilla::URLAndReferrerInfo>, nsIMutationObserver> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, double> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::ReflowOutput>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<nsTArray<signed char> >::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<mozilla::LayerActivity>::FromPointer(void*) Unexecuted instantiation: mozilla::FrameProperties::ReinterpretHelper<RetainedDisplayListData>::FromPointer(void*) |
349 | | }; |
350 | | |
351 | | template<typename T> |
352 | | struct ReinterpretHelper<T*> |
353 | | { |
354 | | static void* ToPointer(T* aValue) |
355 | | { |
356 | | return static_cast<void*>(aValue); |
357 | | } |
358 | | |
359 | | static T* FromPointer(void* aPtr) |
360 | | { |
361 | | return static_cast<T*>(aPtr); |
362 | | } |
363 | | }; |
364 | | |
365 | | /** |
366 | | * Stores a property descriptor/value pair. |
367 | | */ |
368 | | struct PropertyValue { |
369 | | PropertyValue() : mProperty(nullptr), mValue(nullptr) {} |
370 | | PropertyValue(UntypedDescriptor aProperty, void* aValue) |
371 | 0 | : mProperty(aProperty), mValue(aValue) {} |
372 | | |
373 | 0 | void DestroyValueFor(const nsIFrame* aFrame) { |
374 | 0 | if (mProperty->mDestructor) { |
375 | 0 | mProperty->mDestructor(mValue); |
376 | 0 | } else if (mProperty->mDestructorWithFrame) { |
377 | 0 | mProperty->mDestructorWithFrame(aFrame, mValue); |
378 | 0 | } |
379 | 0 | } |
380 | | |
381 | | UntypedDescriptor mProperty; |
382 | | void* mValue; |
383 | | }; |
384 | | |
385 | | /** |
386 | | * Used with an array of PropertyValues to allow lookups that compare |
387 | | * only on the FramePropertyDescriptor. |
388 | | */ |
389 | | class PropertyComparator { |
390 | | public: |
391 | | bool Equals(const PropertyValue& a, const PropertyValue& b) const { |
392 | | return a.mProperty == b.mProperty; |
393 | | } |
394 | | bool Equals(UntypedDescriptor a, const PropertyValue& b) const { |
395 | | return a == b.mProperty; |
396 | | } |
397 | 0 | bool Equals(const PropertyValue& a, UntypedDescriptor b) const { |
398 | 0 | return a.mProperty == b; |
399 | 0 | } |
400 | | }; |
401 | | |
402 | | nsTArray<PropertyValue> mProperties; |
403 | | }; |
404 | | |
405 | | |
406 | | inline void* |
407 | | FrameProperties::GetInternal(UntypedDescriptor aProperty, |
408 | | bool* aFoundResult) const |
409 | 0 | { |
410 | 0 | MOZ_ASSERT(aProperty, "Null property?"); |
411 | 0 |
|
412 | 0 | return mProperties.ApplyIf( |
413 | 0 | aProperty, 0, PropertyComparator(), |
414 | 0 | [&aFoundResult](const PropertyValue& aPV) -> void* { |
415 | 0 | if (aFoundResult) { |
416 | 0 | *aFoundResult = true; |
417 | 0 | } |
418 | 0 | return aPV.mValue; |
419 | 0 | }, |
420 | 0 | [&aFoundResult]() -> void* { |
421 | 0 | if (aFoundResult) { |
422 | 0 | *aFoundResult = false; |
423 | 0 | } |
424 | 0 | return nullptr; |
425 | 0 | }); |
426 | 0 | } |
427 | | |
428 | | inline void |
429 | | FrameProperties::SetInternal(UntypedDescriptor aProperty, void* aValue, |
430 | | const nsIFrame* aFrame) |
431 | 0 | { |
432 | 0 | MOZ_ASSERT(NS_IsMainThread()); |
433 | 0 | MOZ_ASSERT(aProperty, "Null property?"); |
434 | 0 |
|
435 | 0 | mProperties.ApplyIf( |
436 | 0 | aProperty, 0, PropertyComparator(), |
437 | 0 | [&](PropertyValue& aPV) { |
438 | 0 | aPV.DestroyValueFor(aFrame); |
439 | 0 | aPV.mValue = aValue; |
440 | 0 | }, |
441 | 0 | [&]() { |
442 | 0 | mProperties.AppendElement(PropertyValue(aProperty, aValue)); |
443 | 0 | }); |
444 | 0 | } |
445 | | |
446 | | inline void |
447 | | FrameProperties::AddInternal(UntypedDescriptor aProperty, void* aValue) |
448 | 0 | { |
449 | 0 | MOZ_ASSERT(NS_IsMainThread()); |
450 | 0 | MOZ_ASSERT(aProperty, "Null property?"); |
451 | 0 |
|
452 | 0 | mProperties.AppendElement(PropertyValue(aProperty, aValue)); |
453 | 0 | } |
454 | | |
455 | | inline void* |
456 | | FrameProperties::RemoveInternal(UntypedDescriptor aProperty, bool* aFoundResult) |
457 | 0 | { |
458 | 0 | MOZ_ASSERT(NS_IsMainThread()); |
459 | 0 | MOZ_ASSERT(aProperty, "Null property?"); |
460 | 0 |
|
461 | 0 | auto index = mProperties.IndexOf(aProperty, 0, PropertyComparator()); |
462 | 0 | if (index == nsTArray<PropertyValue>::NoIndex) { |
463 | 0 | if (aFoundResult) { |
464 | 0 | *aFoundResult = false; |
465 | 0 | } |
466 | 0 | return nullptr; |
467 | 0 | } |
468 | 0 |
|
469 | 0 | if (aFoundResult) { |
470 | 0 | *aFoundResult = true; |
471 | 0 | } |
472 | 0 |
|
473 | 0 | void* result = mProperties.Elements()[index].mValue; |
474 | 0 | mProperties.RemoveElementAt(index); |
475 | 0 |
|
476 | 0 | return result; |
477 | 0 | } |
478 | | |
479 | | inline void |
480 | | FrameProperties::DeleteInternal(UntypedDescriptor aProperty, |
481 | | const nsIFrame* aFrame) |
482 | 0 | { |
483 | 0 | MOZ_ASSERT(NS_IsMainThread()); |
484 | 0 | MOZ_ASSERT(aProperty, "Null property?"); |
485 | 0 |
|
486 | 0 | auto index = mProperties.IndexOf(aProperty, 0, PropertyComparator()); |
487 | 0 | if (index != nsTArray<PropertyValue>::NoIndex) { |
488 | 0 | mProperties.Elements()[index].DestroyValueFor(aFrame); |
489 | 0 | mProperties.RemoveElementAt(index); |
490 | 0 | } |
491 | 0 | } |
492 | | |
493 | | } // namespace mozilla |
494 | | |
495 | | #endif /* FRAMEPROPERTIES_H_ */ |