/work/obj-fuzz/dist/include/mozilla/Variant.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 | | /* A template class for tagged unions. */ |
8 | | |
9 | | #include <new> |
10 | | #include <stdint.h> |
11 | | |
12 | | #include "mozilla/Assertions.h" |
13 | | #include "mozilla/Move.h" |
14 | | #include "mozilla/OperatorNewExtensions.h" |
15 | | #include "mozilla/TemplateLib.h" |
16 | | #include "mozilla/TypeTraits.h" |
17 | | |
18 | | #ifndef mozilla_Variant_h |
19 | | #define mozilla_Variant_h |
20 | | |
21 | | namespace IPC { |
22 | | template <typename T> struct ParamTraits; |
23 | | } // namespace IPC |
24 | | |
25 | | namespace mozilla { |
26 | | |
27 | | template<typename... Ts> |
28 | | class Variant; |
29 | | |
30 | | namespace detail { |
31 | | |
32 | | // Nth<N, types...>::Type is the Nth type (0-based) in the list of types Ts. |
33 | | template<size_t N, typename... Ts> |
34 | | struct Nth; |
35 | | |
36 | | template<typename T, typename... Ts> |
37 | | struct Nth<0, T, Ts...> |
38 | | { |
39 | | using Type = T; |
40 | | }; |
41 | | |
42 | | template<size_t N, typename T, typename... Ts> |
43 | | struct Nth<N, T, Ts...> |
44 | | { |
45 | | using Type = typename Nth<N - 1, Ts...>::Type; |
46 | | }; |
47 | | |
48 | | /// SelectVariantTypeHelper is used in the implementation of SelectVariantType. |
49 | | template<typename T, typename... Variants> |
50 | | struct SelectVariantTypeHelper; |
51 | | |
52 | | template<typename T> |
53 | | struct SelectVariantTypeHelper<T> |
54 | | { |
55 | | static constexpr size_t count = 0; |
56 | | }; |
57 | | |
58 | | template<typename T, typename... Variants> |
59 | | struct SelectVariantTypeHelper<T, T, Variants...> |
60 | | { |
61 | | typedef T Type; |
62 | | static constexpr size_t count = 1 + SelectVariantTypeHelper<T, Variants...>::count; |
63 | | }; |
64 | | |
65 | | template<typename T, typename... Variants> |
66 | | struct SelectVariantTypeHelper<T, const T, Variants...> |
67 | | { |
68 | | typedef const T Type; |
69 | | static constexpr size_t count = 1 + SelectVariantTypeHelper<T, Variants...>::count; |
70 | | }; |
71 | | |
72 | | template<typename T, typename... Variants> |
73 | | struct SelectVariantTypeHelper<T, const T&, Variants...> |
74 | | { |
75 | | typedef const T& Type; |
76 | | static constexpr size_t count = 1 + SelectVariantTypeHelper<T, Variants...>::count; |
77 | | }; |
78 | | |
79 | | template<typename T, typename... Variants> |
80 | | struct SelectVariantTypeHelper<T, T&&, Variants...> |
81 | | { |
82 | | typedef T&& Type; |
83 | | static constexpr size_t count = 1 + SelectVariantTypeHelper<T, Variants...>::count; |
84 | | }; |
85 | | |
86 | | template<typename T, typename Head, typename... Variants> |
87 | | struct SelectVariantTypeHelper<T, Head, Variants...> |
88 | | : public SelectVariantTypeHelper<T, Variants...> |
89 | | { }; |
90 | | |
91 | | /** |
92 | | * SelectVariantType takes a type T and a list of variant types Variants and |
93 | | * yields a type Type, selected from Variants, that can store a value of type T |
94 | | * or a reference to type T. If no such type was found, Type is not defined. |
95 | | * SelectVariantType also has a `count` member that contains the total number of |
96 | | * selectable types (which will be used to check that a requested type is not |
97 | | * ambiguously present twice.) |
98 | | */ |
99 | | template <typename T, typename... Variants> |
100 | | struct SelectVariantType |
101 | | : public SelectVariantTypeHelper<typename RemoveConst<typename RemoveReference<T>::Type>::Type, |
102 | | Variants...> |
103 | | { }; |
104 | | |
105 | | // Compute a fast, compact type that can be used to hold integral values that |
106 | | // distinctly map to every type in Ts. |
107 | | template<typename... Ts> |
108 | | struct VariantTag |
109 | | { |
110 | | private: |
111 | | static const size_t TypeCount = sizeof...(Ts); |
112 | | |
113 | | public: |
114 | | using Type = |
115 | | typename Conditional<TypeCount < 3, |
116 | | bool, |
117 | | typename Conditional<TypeCount < (1 << 8), |
118 | | uint_fast8_t, |
119 | | size_t // stop caring past a certain point :-) |
120 | | >::Type |
121 | | >::Type; |
122 | | }; |
123 | | |
124 | | // TagHelper gets the given sentinel tag value for the given type T. This has to |
125 | | // be split out from VariantImplementation because you can't nest a partial |
126 | | // template specialization within a template class. |
127 | | |
128 | | template<typename Tag, size_t N, typename T, typename U, typename Next, bool isMatch> |
129 | | struct TagHelper; |
130 | | |
131 | | // In the case where T != U, we continue recursion. |
132 | | template<typename Tag, size_t N, typename T, typename U, typename Next> |
133 | | struct TagHelper<Tag, N, T, U, Next, false> |
134 | | { |
135 | 25.9k | static Tag tag() { return Next::template tag<U>(); } Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, nsTString<char16_t>, mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsTString<char16_t> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, bool, nsTString<char16_t>, mozilla::detail::VariantImplementation<unsigned char, 2ul, nsTString<char16_t> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, bool, mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsTString<char16_t> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned int, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsTString<char> const, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::CooperativeThreadPool::AllThreadsBlocked>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes, mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::OpacityAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::OpacityAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::OpacityAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::OpacityAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::OpacityAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::OpacityAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::TileAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::TileAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::TileAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::TileAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::FloodAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::FloodAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::FloodAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::MorphologyAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::NoFocusTarget, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsITimer>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, int const, char const*, mozilla::detail::VariantImplementation<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>, false>::tag() Line | Count | Source | 135 | 90 | static Tag tag() { return Next::template tag<U>(); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, int const, void (*)(nsITimer*, bool, void*, char*, unsigned long), mozilla::detail::VariantImplementation<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long), mozilla::detail::VariantImplementation<unsigned char, 2ul, void (*)(nsITimer*, bool, void*, char*, unsigned long)>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsILoadInfo*, nsPIDOMWindowOuter*, mozilla::detail::VariantImplementation<bool, 1ul, nsPIDOMWindowOuter*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, char const*, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, char const*, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, nsTString<char> const, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, nsTString<char> const, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, nsTString<char> const, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() mozilla::detail::TagHelper<bool, 0ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>, false>::tag() Line | Count | Source | 135 | 6.89k | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<bool, 0ul, char const*, nsTString<char> const, mozilla::detail::VariantImplementation<bool, 1ul, nsTString<char> const>, false>::tag() Line | Count | Source | 135 | 83 | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<bool, 0ul, nsTString<char>, char const**, mozilla::detail::VariantImplementation<bool, 1ul, char const**>, false>::tag() Line | Count | Source | 135 | 37 | static Tag tag() { return Next::template tag<U>(); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, Pref*, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::Ok, char const*, mozilla::detail::VariantImplementation<bool, 1ul, char const*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsIInputStream>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsIRequest>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, bool, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, bool, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, bool, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, short, bool, mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, unsigned short, bool, mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, int, bool, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned int, bool, mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, long, bool, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned long, bool, mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, nsTString<char>, bool, mozilla::detail::VariantImplementation<unsigned char, 10ul, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, short, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, unsigned short, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, int, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned int, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, long, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned long, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, short, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, unsigned short, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, int, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned int, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, long, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, long, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, long, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, long, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, short, long, mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, unsigned short, long, mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, int, long, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned int, long, mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, short, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, unsigned short, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, int, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, int, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, int, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, int, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, short, int, mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, unsigned short, int, mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, unsigned short, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, unsigned short, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, unsigned short, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, short, unsigned short, mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, short, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, short, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, short, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, unsigned char, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, unsigned char, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsTString<char>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsIFile>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Line | Count | Source | 135 | 6 | static Tag tag() { return Next::template tag<U>(); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::URLPreloader::CacheKey, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::FileLocation, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy>, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode>, mozilla::detail::VariantImplementation<bool, 1ul, RefPtr<mozilla::gfx::FilterNode> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, float, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::Matrix5x4, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::Matrix5x4, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::Color, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::Color, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Color, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Color, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Color, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Color, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, bool, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, bool, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, bool, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, bool, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, bool, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, bool, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, bool, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::Color, bool, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, bool, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, bool, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, bool, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float>, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::Color, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::layers::BogusAnimation>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::TerminalState, mozilla::image::Yield, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::Yield>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned int, mozilla::image::WriteState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned char, mozilla::image::WriteState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::InternalTransitionEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent>, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent>, mozilla::detail::VariantImplementation<unsigned char, 2ul, RefPtr<mozilla::dom::AnimationPlaybackEvent> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsIFrame*, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned int, mozilla::dom::ipc::StructuredCloneData, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ipc::StructuredCloneData>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>, mozilla::detail::VariantImplementation<bool, 1ul, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JS::AllFrames, JS::FirstSubsumedFrame, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame, mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::FirstSubsumedFrame>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, JSAtom*, char16_t const*, mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JS::AllFrames, JS::MaxFrames, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::WorkerPrivate*, mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, mozilla::dom::WorkerPrivate*, mozilla::detail::VariantImplementation<unsigned char, 2ul, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::WorkerPrivate*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::Nothing, nsCOMPtr<nsIDocShell>, mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::detail::VariantImplementation<unsigned char, 2ul, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ClientWorkerState>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, int, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned long, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, long, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, nsTString<char> const, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, bool, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, signed char, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned char, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, short, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned short, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, int, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, unsigned int, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, long, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, unsigned long, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, double, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 14ul, mozilla::DDRange, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 15ul, nsresult, mozilla::MediaResult, mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, bool, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, bool, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, bool, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, nsTString<char> const, bool, mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, nsresult, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, nsresult, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, nsresult, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, nsTString<char> const, nsresult, mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, bool, nsresult, mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, signed char, nsresult, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned char, nsresult, mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, short, nsresult, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned short, nsresult, mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, int, nsresult, mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, unsigned int, nsresult, mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, long, nsresult, mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, unsigned long, nsresult, mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, double, nsresult, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::Nothing, long, mozilla::detail::VariantImplementation<bool, 1ul, long>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, double, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, double, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, double, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, nsTString<char> const, double, mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, bool, double, mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, signed char, double, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned char, double, mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, short, double, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned short, double, mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, int, double, mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, unsigned int, double, mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, long, double, mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, unsigned long, double, mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, long, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, long, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, long, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, nsTString<char> const, long, mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, bool, long, mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, signed char, long, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned char, long, mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, short, long, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned short, long, mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, int, long, mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, unsigned int, long, mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, nsTString<char> const, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, bool, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, signed char, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned char, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, short, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned short, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, int, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, unsigned int, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, long, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, nsTString<char> const, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, bool, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, signed char, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned char, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, short, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned short, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, int, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Null, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Null, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Pattern, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, RefPtr<mozilla::dom::Promise>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::ServoStyleSet*, mozilla::dom::ShadowRoot*, mozilla::detail::VariantImplementation<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::ShadowRoot*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::detail::VariantImplementation<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData, mozilla::detail::VariantImplementation<bool, 1ul, UniqueStacks::FrameKey::JITFrameData>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsTString<char16_t>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsIZipReaderCache>, nsresult, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSAtom*, mozilla::UniquePtr<char16_t [], JS::FreePolicy>, mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long, mozilla::detail::VariantImplementation<bool, 1ul, unsigned long>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, false>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>, false>::tag() Line | Count | Source | 135 | 17 | static Tag tag() { return Next::template tag<U>(); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Compressed, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSObject*, JSString*, mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSObject*, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>, mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSObject*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSObject*, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, false>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, js::ImmediateMetadata, JSObject*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::DelayMetadata, JSObject*>, false>::tag() Line | Count | Source | 135 | 405 | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<unsigned char, 1ul, js::DelayMetadata, JSObject*, mozilla::detail::VariantImplementation<unsigned char, 2ul, JSObject*>, false>::tag() Line | Count | Source | 135 | 405 | static Tag tag() { return Next::template tag<U>(); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::Tier2GeneratorTask*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::jit::IonBuilder*, js::ParseTask*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::wasm::CompileTask*, js::ParseTask*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::ParseTask*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, mozilla::detail::VariantImplementation<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::jit::IonBuilder*, js::SourceCompressionTask*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::wasm::CompileTask*, js::SourceCompressionTask*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::SourceCompressionTask*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, js::PromiseHelperTask*, js::SourceCompressionTask*, mozilla::detail::VariantImplementation<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, mozilla::detail::VariantImplementation<unsigned char, 5ul, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, js::jit::IonBuilder*, js::GCParallelTask*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Line | Count | Source | 135 | 2.97k | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<unsigned char, 1ul, js::wasm::CompileTask*, js::GCParallelTask*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Line | Count | Source | 135 | 2.97k | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::GCParallelTask*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Line | Count | Source | 135 | 2.97k | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<unsigned char, 3ul, js::PromiseHelperTask*, js::GCParallelTask*, mozilla::detail::VariantImplementation<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Line | Count | Source | 135 | 2.97k | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<unsigned char, 4ul, js::ParseTask*, js::GCParallelTask*, mozilla::detail::VariantImplementation<unsigned char, 5ul, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Line | Count | Source | 135 | 2.97k | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<unsigned char, 5ul, js::SourceCompressionTask*, js::GCParallelTask*, mozilla::detail::VariantImplementation<unsigned char, 6ul, js::GCParallelTask*>, false>::tag() Line | Count | Source | 135 | 2.97k | static Tag tag() { return Next::template tag<U>(); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, JS::Realm*, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, JS::Zone*, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JS::Realm*, JS::Zone*, mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, js::ZonesInState, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Line | Count | Source | 135 | 36 | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<unsigned char, 1ul, JS::Realm*, js::ZonesInState, mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Line | Count | Source | 135 | 36 | static Tag tag() { return Next::template tag<U>(); } |
mozilla::detail::TagHelper<unsigned char, 2ul, JS::Zone*, js::ZonesInState, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Line | Count | Source | 135 | 36 | static Tag tag() { return Next::template tag<U>(); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, JSRuntime*, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JS::Realm*, JSRuntime*, mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, JS::Zone*, JSRuntime*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, js::ZonesInState, JSRuntime*, mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, js::CompilationsUsingNursery, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JS::Realm*, js::CompilationsUsingNursery, mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, JS::Zone*, js::CompilationsUsingNursery, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, js::ZonesInState, js::CompilationsUsingNursery, mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::InterpreterFrame*, js::wasm::DebugFrame*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::wasm::DebugFrame*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::InterpreterFrame*, js::jit::RematerializedFrame*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::jit::MBasicBlock*, js::jit::AbortReason, mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::jit::MInstruction*, js::jit::AbortReason, mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::jit::MCall*, js::jit::AbortReason, mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::jit::MDefinition*, js::jit::AbortReason, mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, char const*, mozilla::UniquePtr<char [], JS::FreePolicy>, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::UniquePtr<char [], JS::FreePolicy> >, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::ScriptSourceObject*, js::WasmInstanceObject*, mozilla::detail::VariantImplementation<bool, 1ul, js::WasmInstanceObject*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, js::LazyScript*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::LazyScript*, js::WasmInstanceObject*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, js::WasmInstanceObject*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::LazyScript*, js::WasmInstanceObject*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::LazyScript*, js::WasmInstanceObject*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::WasmInstanceObject*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, js::AllCompilations, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JS::Realm*, js::AllCompilations, mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, JS::Zone*, js::AllCompilations, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, js::ZonesInState, js::AllCompilations, mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, JSRuntime*, js::AllCompilations, mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations, mozilla::detail::VariantImplementation<unsigned char, 6ul, js::AllCompilations>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::jit::IonBuilder*, js::PromiseHelperTask*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::wasm::CompileTask*, js::PromiseHelperTask*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, false>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, js::ImmediateMetadata, js::DelayMetadata, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::DelayMetadata, JSObject*>, false>::tag() Line | Count | Source | 135 | 116 | static Tag tag() { return Next::template tag<U>(); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, bool, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned int, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, double, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinVariant, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned char, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, false>::tag() |
136 | | }; |
137 | | |
138 | | // In the case where T == U, return the tag number. |
139 | | template<typename Tag, size_t N, typename T, typename U, typename Next> |
140 | | struct TagHelper<Tag, N, T, U, Next, true> |
141 | | { |
142 | 197M | static Tag tag() { return Tag(N); } Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, char const*, char const*, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::UniquePtr<char [], JS::FreePolicy> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JS::AllFrames, JS::AllFrames, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsTString<char16_t> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, bool, bool, mozilla::detail::VariantImplementation<unsigned char, 2ul, nsTString<char16_t> >, true>::tag() mozilla::detail::TagHelper<bool, 0ul, unsigned int, unsigned int, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Line | Count | Source | 142 | 193M | static Tag tag() { return Tag(N); } |
mozilla::detail::TagHelper<bool, 0ul, nsTString<char> const, nsTString<char> const, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Line | Count | Source | 142 | 144 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned long, unsigned long, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::CooperativeThreadPool::AllThreadsBlocked>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DropShadowAttributes, mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::ImageAttributes, mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::MergeAttributes, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::CompositeAttributes, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::OffsetAttributes, mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::OpacityAttributes, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::TileAttributes, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::FloodAttributes, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::MorphologyAttributes, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::BlendAttributes, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::EmptyAttributes, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::ScrollTargets, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>, true>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, int const, int const, mozilla::detail::VariantImplementation<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>, true>::tag() Line | Count | Source | 142 | 464 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsITimer>, nsCOMPtr<nsITimer>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() mozilla::detail::TagHelper<unsigned char, 1ul, char const*, char const*, mozilla::detail::VariantImplementation<unsigned char, 2ul, void (*)(nsITimer*, bool, void*, char*, unsigned long)>, true>::tag() Line | Count | Source | 142 | 90 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsILoadInfo*, nsILoadInfo*, mozilla::detail::VariantImplementation<bool, 1ul, nsPIDOMWindowOuter*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, char const*, char const*, mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, nsTString<char> const, nsTString<char> const, mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDNoValue, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::DDLogObject, mozilla::DDLogObject, mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() mozilla::detail::TagHelper<bool, 0ul, PrefsHashIter::Elem, PrefsHashIter::Elem, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>, true>::tag() Line | Count | Source | 142 | 20.6k | static Tag tag() { return Tag(N); } |
mozilla::detail::TagHelper<bool, 0ul, nsTString<char>, nsTString<char>, mozilla::detail::VariantImplementation<bool, 1ul, char const**>, true>::tag() Line | Count | Source | 142 | 2.41M | static Tag tag() { return Tag(N); } |
mozilla::detail::TagHelper<bool, 0ul, Pref*, Pref*, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>, true>::tag() Line | Count | Source | 142 | 18.0k | static Tag tag() { return Tag(N); } |
mozilla::detail::TagHelper<bool, 0ul, Pref*, Pref*, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Line | Count | Source | 142 | 9 | static Tag tag() { return Tag(N); } |
mozilla::detail::TagHelper<bool, 0ul, mozilla::Ok, mozilla::Ok, mozilla::detail::VariantImplementation<bool, 1ul, char const*>, true>::tag() Line | Count | Source | 142 | 6 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, char const*, char const*, mozilla::detail::VariantImplementation<bool, 1ul, nsTString<char> const>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsIInputStream>, nsCOMPtr<nsIInputStream>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsIRequest>, nsCOMPtr<nsIRequest>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, mozilla::plugins::IpdlTuple::InvalidType, mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, nsTString<char>, nsTString<char>, mozilla::detail::VariantImplementation<unsigned char, 10ul, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, unsigned long, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, long, long, mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, unsigned int, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, int, int, mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, unsigned short, unsigned short, mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, short, short, mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, unsigned char, unsigned char, mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, signed char, signed char, mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>, true>::tag() mozilla::detail::TagHelper<bool, 0ul, nsTString<char>, nsTString<char>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Line | Count | Source | 142 | 15 | static Tag tag() { return Tag(N); } |
mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsIFile>, nsCOMPtr<nsIFile>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Line | Count | Source | 142 | 30 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::URLPreloader::CacheKey, mozilla::URLPreloader::CacheKey, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() mozilla::detail::TagHelper<bool, 0ul, mozilla::FileLocation, mozilla::FileLocation, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Line | Count | Source | 142 | 72 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::SourceSurface>, mozilla::detail::VariantImplementation<bool, 1ul, RefPtr<mozilla::gfx::FilterNode> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, unsigned int, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, float, float, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Matrix5x4, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::Color, mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, bool, bool, mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, std::__1::vector<float, std::__1::allocator<float> >, mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCSSValueSharedList*, nsCSSValueSharedList*, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::layers::BogusAnimation>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::TerminalState, mozilla::image::TerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::Yield>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned int, unsigned int, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned char, unsigned char, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::InternalAnimationEvent, mozilla::InternalAnimationEvent, mozilla::detail::VariantImplementation<unsigned char, 2ul, RefPtr<mozilla::dom::AnimationPlaybackEvent> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::InternalTransitionEvent, mozilla::InternalTransitionEvent, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsIFrame*, nsIFrame*, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned int, unsigned int, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ipc::StructuredCloneData>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, mozilla::detail::VariantImplementation<bool, 1ul, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JS::MaxFrames, JS::MaxFrames, mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::FirstSubsumedFrame>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, nsCOMPtr<nsIDocShell>, nsCOMPtr<nsIDocShell>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::WorkerPrivate*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::Nothing, mozilla::Nothing, mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, RefPtr<nsPIDOMWindowInner>, mozilla::detail::VariantImplementation<unsigned char, 2ul, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWindowState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ClientWorkerState>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, int, int, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned long, unsigned long, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, long, long, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, bool, bool, mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 15ul, nsresult, nsresult, mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::Nothing, mozilla::Nothing, mozilla::detail::VariantImplementation<bool, 1ul, long>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 13ul, double, double, mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 11ul, long, long, mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::dom::MediaRecorder::Session::RunningState, mozilla::dom::MediaRecorder::Session::RunningState, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 12ul, unsigned long, unsigned long, mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 10ul, unsigned int, unsigned int, mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::Result<mozilla::Ok, nsresult>, mozilla::Result<mozilla::Ok, nsresult>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Origin, mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Prefix, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Pattern, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, RefPtr<mozilla::dom::Promise>, RefPtr<mozilla::dom::Promise>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, mozilla::ServoStyleSet*, mozilla::ServoStyleSet*, mozilla::detail::VariantImplementation<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, nsXBLPrototypeBinding*, nsXBLPrototypeBinding*, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::ShadowRoot*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::NormalFrameData, mozilla::detail::VariantImplementation<bool, 1ul, UniqueStacks::FrameKey::JITFrameData>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsTString<char16_t>, nsTString<char16_t>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, nsCOMPtr<nsIZipReaderCache>, nsCOMPtr<nsIZipReaderCache>, mozilla::detail::VariantImplementation<bool, 1ul, nsresult>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, char16_t const*, char16_t const*, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSAtom*, JSAtom*, mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, JSAtom*, JSAtom*, mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, mozilla::detail::VariantImplementation<bool, 1ul, unsigned long>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>, true>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Missing, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>, true>::tag() Line | Count | Source | 142 | 23 | static Tag tag() { return Tag(N); } |
mozilla::detail::TagHelper<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Uncompressed, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>, true>::tag() Line | Count | Source | 142 | 17 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, js::InterpreterFrame*, js::InterpreterFrame*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>, true>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, JSObject*, JSObject*, mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, true>::tag() Line | Count | Source | 142 | 1.62M | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JSString*, JSString*, mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >, true>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, js::ImmediateMetadata, js::ImmediateMetadata, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::DelayMetadata, JSObject*>, true>::tag() Line | Count | Source | 142 | 9 | static Tag tag() { return Tag(N); } |
mozilla::detail::TagHelper<unsigned char, 0ul, js::jit::IonBuilder*, js::jit::IonBuilder*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, true>::tag() Line | Count | Source | 142 | 43 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::CompileTask*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::wasm::Tier2GeneratorTask*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, js::ParseTask*, js::ParseTask*, mozilla::detail::VariantImplementation<unsigned char, 5ul, js::SourceCompressionTask*, js::GCParallelTask*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, js::SourceCompressionTask*, js::SourceCompressionTask*, mozilla::detail::VariantImplementation<unsigned char, 6ul, js::GCParallelTask*>, true>::tag() mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, JSScript*, mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, true>::tag() Line | Count | Source | 142 | 4 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, JS::Realm*, JS::Realm*, mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, JS::Zone*, JS::Zone*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, true>::tag() mozilla::detail::TagHelper<unsigned char, 3ul, js::ZonesInState, js::ZonesInState, mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>, true>::tag() Line | Count | Source | 142 | 36 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 4ul, JSRuntime*, JSRuntime*, mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 5ul, js::CompilationsUsingNursery, js::CompilationsUsingNursery, mozilla::detail::VariantImplementation<unsigned char, 6ul, js::AllCompilations>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::CommonFrameLayout*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 2ul, js::jit::RematerializedFrame*, js::jit::RematerializedFrame*, mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>, true>::tag() mozilla::detail::TagHelper<bool, 0ul, js::jit::MBasicBlock*, js::jit::MBasicBlock*, mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>, true>::tag() Line | Count | Source | 142 | 210 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::jit::MInstruction*, js::jit::MInstruction*, mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>, true>::tag() mozilla::detail::TagHelper<bool, 0ul, js::jit::MCall*, js::jit::MCall*, mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>, true>::tag() Line | Count | Source | 142 | 210 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::jit::MDefinition*, js::jit::MDefinition*, mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::ScriptSourceObject*, js::ScriptSourceObject*, mozilla::detail::VariantImplementation<bool, 1ul, js::WasmInstanceObject*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 0ul, JSScript*, JSScript*, mozilla::detail::VariantImplementation<unsigned char, 1ul, js::LazyScript*, js::WasmInstanceObject*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 1ul, js::LazyScript*, js::LazyScript*, mozilla::detail::VariantImplementation<unsigned char, 2ul, js::WasmInstanceObject*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<unsigned char, 3ul, js::PromiseHelperTask*, js::PromiseHelperTask*, mozilla::detail::VariantImplementation<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>, true>::tag() mozilla::detail::TagHelper<unsigned char, 1ul, js::DelayMetadata, js::DelayMetadata, mozilla::detail::VariantImplementation<unsigned char, 2ul, JSObject*>, true>::tag() Line | Count | Source | 142 | 116 | static Tag tag() { return Tag(N); } |
Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, bool, bool, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned int, unsigned int, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, double, double, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinVariant, js::frontend::BinVariant, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, unsigned char, unsigned char, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() Unexecuted instantiation: mozilla::detail::TagHelper<bool, 0ul, js::frontend::BinTokenReaderBase::SkippableSubTree, js::frontend::BinTokenReaderBase::SkippableSubTree, mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>, true>::tag() |
143 | | }; |
144 | | |
145 | | // The VariantImplementation template provides the guts of mozilla::Variant. We |
146 | | // create a VariantImplementation for each T in Ts... which handles |
147 | | // construction, destruction, etc for when the Variant's type is T. If the |
148 | | // Variant's type isn't T, it punts the request on to the next |
149 | | // VariantImplementation. |
150 | | |
151 | | template<typename Tag, size_t N, typename... Ts> |
152 | | struct VariantImplementation; |
153 | | |
154 | | // The singly typed Variant / recursion base case. |
155 | | template<typename Tag, size_t N, typename T> |
156 | | struct VariantImplementation<Tag, N, T> |
157 | | { |
158 | | template<typename U> |
159 | 10.4k | static Tag tag() { |
160 | 10.4k | static_assert(mozilla::IsSame<T, U>::value, |
161 | 10.4k | "mozilla::Variant: tag: bad type!"); |
162 | 10.4k | return Tag(N); |
163 | 10.4k | } Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, nsTString<char16_t> >::tag<nsTString<char16_t> >() bool mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::tag<nsresult>() Line | Count | Source | 159 | 6 | static Tag tag() { | 160 | 6 | static_assert(mozilla::IsSame<T, U>::value, | 161 | 6 | "mozilla::Variant: tag: bad type!"); | 162 | 6 | return Tag(N); | 163 | 6 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::CooperativeThreadPool::AllThreadsBlocked>::tag<mozilla::CooperativeThreadPool::AllThreadsBlocked>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>::tag<mozilla::layers::FocusTarget::NoFocusTarget>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::tag<void (*)(nsITimer*, bool, void*, char*, unsigned long)>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, nsPIDOMWindowOuter*>::tag<nsPIDOMWindowOuter*>() bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::tag<mozilla::SharedPrefMap::Pref>() Line | Count | Source | 159 | 6.89k | static Tag tag() { | 160 | 6.89k | static_assert(mozilla::IsSame<T, U>::value, | 161 | 6.89k | "mozilla::Variant: tag: bad type!"); | 162 | 6.89k | return Tag(N); | 163 | 6.89k | } |
bool mozilla::detail::VariantImplementation<bool, 1ul, nsTString<char> const>::tag<nsTString<char> const>() Line | Count | Source | 159 | 83 | static Tag tag() { | 160 | 83 | static_assert(mozilla::IsSame<T, U>::value, | 161 | 83 | "mozilla::Variant: tag: bad type!"); | 162 | 83 | return Tag(N); | 163 | 83 | } |
bool mozilla::detail::VariantImplementation<bool, 1ul, char const**>::tag<char const**>() Line | Count | Source | 159 | 37 | static Tag tag() { | 160 | 37 | static_assert(mozilla::IsSame<T, U>::value, | 161 | 37 | "mozilla::Variant: tag: bad type!"); | 162 | 37 | return Tag(N); | 163 | 37 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, char const*>::tag<char const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, bool>::tag<bool>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::tag<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, RefPtr<mozilla::gfx::FilterNode> >::tag<RefPtr<mozilla::gfx::FilterNode> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::layers::BogusAnimation>::tag<mozilla::layers::BogusAnimation>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::Yield>::tag<mozilla::image::Yield>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>::tag<mozilla::image::WriteState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::tag<mozilla::image::TerminalState>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::tag<RefPtr<mozilla::dom::AnimationPlaybackEvent> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ipc::StructuredCloneData>::tag<mozilla::dom::ipc::StructuredCloneData>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::tag<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::FirstSubsumedFrame>::tag<JS::FirstSubsumedFrame>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>::tag<char16_t const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::WorkerPrivate*>::tag<mozilla::dom::WorkerPrivate*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ClientWorkerState>::tag<mozilla::dom::ClientWorkerState>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, long>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Null>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::ShadowRoot*>::tag<mozilla::dom::ShadowRoot*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, UniqueStacks::FrameKey::JITFrameData>::tag<UniqueStacks::FrameKey::JITFrameData>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::tag<mozilla::UniquePtr<char16_t [], JS::FreePolicy> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, unsigned long>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>::tag<js::ScriptSource::Compressed>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >() unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, JSObject*>::tag<JSObject*>() Line | Count | Source | 159 | 405 | static Tag tag() { | 160 | 405 | static_assert(mozilla::IsSame<T, U>::value, | 161 | 405 | "mozilla::Variant: tag: bad type!"); | 162 | 405 | return Tag(N); | 163 | 405 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, js::GCParallelTask*>::tag<js::GCParallelTask*>() Line | Count | Source | 159 | 2.97k | static Tag tag() { | 160 | 2.97k | static_assert(mozilla::IsSame<T, U>::value, | 161 | 2.97k | "mozilla::Variant: tag: bad type!"); | 162 | 2.97k | return Tag(N); | 163 | 2.97k | } |
Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>::tag<js::wasm::DebugFrame*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::tag<js::jit::AbortReason>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::UniquePtr<char [], JS::FreePolicy> >::tag<mozilla::UniquePtr<char [], JS::FreePolicy> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, js::WasmInstanceObject*>::tag<js::WasmInstanceObject*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::WasmInstanceObject*>::tag<js::WasmInstanceObject*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, js::AllCompilations>::tag<js::AllCompilations>() bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::tag<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>() Line | Count | Source | 159 | 8 | static Tag tag() { | 160 | 8 | static_assert(mozilla::IsSame<T, U>::value, | 161 | 8 | "mozilla::Variant: tag: bad type!"); | 162 | 8 | return Tag(N); | 163 | 8 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::tag<JS::Error*>() |
164 | | |
165 | | template<typename Variant> |
166 | 8 | static void copyConstruct(void* aLhs, const Variant& aRhs) { |
167 | 8 | ::new (KnownNotNull, aLhs) T(aRhs.template as<N>()); |
168 | 8 | } Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<unsigned int, nsresult> >(void*, mozilla::Variant<unsigned int, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsTString<char> const, nsresult> >(void*, mozilla::Variant<nsTString<char> const, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::CooperativeThreadPool::AllThreadsBlocked>::copyConstruct<mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> >(void*, mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::copyConstruct<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(void*, mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsITimer>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsITimer>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>::copyConstruct<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(void*, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::copyConstruct<mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> >(void*, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<Pref*, nsresult> >(void*, mozilla::Variant<Pref*, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, char const*>::copyConstruct<mozilla::Variant<mozilla::Ok, char const*> >(void*, mozilla::Variant<mozilla::Ok, char const*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsTString<char>, nsresult> >(void*, mozilla::Variant<nsTString<char>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsIFile>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsIFile>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult> >(void*, mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<mozilla::FileLocation, nsresult> >(void*, mozilla::Variant<mozilla::FileLocation, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, RefPtr<mozilla::gfx::FilterNode> >::copyConstruct<mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > >(void*, mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::layers::BogusAnimation>::copyConstruct<mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation> >(void*, mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::Yield>::copyConstruct<mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> >(void*, mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsIFrame*, nsresult> >(void*, mozilla::Variant<nsIFrame*, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ClientWorkerState>::copyConstruct<mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> >(void*, mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::copyConstruct<mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > >(void*, mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<int, nsresult> >(void*, mozilla::Variant<int, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<unsigned long, nsresult> >(void*, mozilla::Variant<unsigned long, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<long, nsresult> >(void*, mozilla::Variant<long, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, long>::copyConstruct<mozilla::Variant<mozilla::Nothing, long> >(void*, mozilla::Variant<mozilla::Nothing, long> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult> >(void*, mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult> >(void*, mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>::copyConstruct<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(void*, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult> >(void*, mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::ShadowRoot*>::copyConstruct<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(void*, mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, UniqueStacks::FrameKey::JITFrameData>::copyConstruct<mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> >(void*, mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsTString<char16_t>, nsresult> >(void*, mozilla::Variant<nsTString<char16_t>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsTString<char16_t> >::copyConstruct<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(void*, mozilla::Variant<unsigned int, bool, nsTString<char16_t> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, double>::copyConstruct<mozilla::Variant<mozilla::Nothing, int, double> >(void*, mozilla::Variant<mozilla::Nothing, int, double> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>::copyConstruct<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(void*, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::copyConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::copyConstruct<mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason> >(void*, mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::copyConstruct<mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason> >(void*, mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::copyConstruct<mozilla::Variant<js::jit::MCall*, js::jit::AbortReason> >(void*, mozilla::Variant<js::jit::MCall*, js::jit::AbortReason> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::copyConstruct<mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason> >(void*, mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, JSObject*>::copyConstruct<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(void*, mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> const&) void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::copyConstruct<mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> >(void*, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> const&) Line | Count | Source | 166 | 8 | static void copyConstruct(void* aLhs, const Variant& aRhs) { | 167 | 8 | ::new (KnownNotNull, aLhs) T(aRhs.template as<N>()); | 168 | 8 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<unsigned int, JS::Error*> >(void*, mozilla::Variant<unsigned int, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<bool, JS::Error*> >(void*, mozilla::Variant<bool, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<double, JS::Error*> >(void*, mozilla::Variant<double, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinVariant, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinVariant, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<unsigned char, JS::Error*> >(void*, mozilla::Variant<unsigned char, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*> const&) |
169 | | |
170 | | template<typename Variant> |
171 | 116 | static void moveConstruct(void* aLhs, Variant&& aRhs) { |
172 | 116 | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); |
173 | 116 | } Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, bool> >(void*, mozilla::Variant<mozilla::Nothing, bool, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::CooperativeThreadPool::AllThreadsBlocked>::moveConstruct<mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> >(void*, mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::moveConstruct<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(void*, mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::moveConstruct<mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> >(void*, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsTString<char> const>::moveConstruct<mozilla::Variant<char const*, nsTString<char> const> >(void*, mozilla::Variant<char const*, nsTString<char> const>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, bool, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::CopyableErrorResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>::moveConstruct<mozilla::Variant<JSAtom*, char16_t const*> >(void*, mozilla::Variant<JSAtom*, char16_t const*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, RefPtr<mozilla::gfx::FilterNode> >::moveConstruct<mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > >(void*, mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>::moveConstruct<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(void*, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::Yield>::moveConstruct<mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> >(void*, mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>::moveConstruct<mozilla::Variant<unsigned char, mozilla::image::WriteState> >(void*, mozilla::Variant<unsigned char, mozilla::image::WriteState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>::moveConstruct<mozilla::Variant<unsigned int, mozilla::image::WriteState> >(void*, mozilla::Variant<unsigned int, mozilla::image::WriteState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::moveConstruct<mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> > >(void*, mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned long>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long> >(void*, mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::FirstSubsumedFrame>::moveConstruct<mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(void*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ClientWorkerState>::moveConstruct<mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> >(void*, mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::WaitForDataRejectValue>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaTrackDemuxer::SkipFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::SeekRejectValue>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, RefPtr<mozilla::MediaMgrError> >::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> > >(void*, mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsresult, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsresult, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Maybe<nsTString<char16_t> > >::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > > >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned long>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::DecryptResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>::moveConstruct<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(void*, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::moveConstruct<mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > >(void*, mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::CopyableErrorResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::ShadowRoot*>::moveConstruct<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(void*, mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsTString<char16_t> >::moveConstruct<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(void*, mozilla::Variant<unsigned int, bool, nsTString<char16_t> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::moveConstruct<mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(void*, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, unsigned long>::moveConstruct<mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long> >(void*, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, double>::moveConstruct<mozilla::Variant<mozilla::Nothing, int, double> >(void*, mozilla::Variant<mozilla::Nothing, int, double>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, double>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<int>, double> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>::moveConstruct<mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(void*, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::moveConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&&) void mozilla::detail::VariantImplementation<unsigned char, 2ul, JSObject*>::moveConstruct<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(void*, mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>&&) Line | Count | Source | 171 | 116 | static void moveConstruct(void* aLhs, Variant&& aRhs) { | 172 | 116 | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); | 173 | 116 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>::moveConstruct<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(void*, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::WasmInstanceObject*>::moveConstruct<mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> >(void*, mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, js::WasmInstanceObject*>::moveConstruct<mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*> >(void*, mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>&&) |
174 | | |
175 | | template<typename Variant> |
176 | 1.32k | static void destroy(Variant& aV) { |
177 | 1.32k | aV.template as<N>().~T(); |
178 | 1.32k | } Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::UniquePtr<char [], JS::FreePolicy> >::destroy<mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> > >(mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::FirstSubsumedFrame>::destroy<mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsTString<char16_t> >::destroy<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(mozilla::Variant<unsigned int, bool, nsTString<char16_t> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<unsigned int, nsresult> >(mozilla::Variant<unsigned int, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsTString<char> const, nsresult> >(mozilla::Variant<nsTString<char> const, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::CooperativeThreadPool::AllThreadsBlocked>::destroy<mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> >(mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, bool, bool> >(mozilla::Variant<mozilla::Nothing, bool, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>::destroy<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::destroy<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsITimer>, nsresult> >(mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsPIDOMWindowOuter*>::destroy<mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> >(mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) void mozilla::detail::VariantImplementation<bool, 1ul, nsTString<char> const>::destroy<mozilla::Variant<char const*, nsTString<char> const> >(mozilla::Variant<char const*, nsTString<char> const>&) Line | Count | Source | 176 | 83 | static void destroy(Variant& aV) { | 177 | 83 | aV.template as<N>().~T(); | 178 | 83 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::destroy<mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref> >(mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, char const*>::destroy<mozilla::Variant<mozilla::Ok, char const*> >(mozilla::Variant<mozilla::Ok, char const*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, char const**>::destroy<mozilla::Variant<nsTString<char>, char const**> >(mozilla::Variant<nsTString<char>, char const**>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::destroy<mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> >(mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<Pref*, nsresult> >(mozilla::Variant<Pref*, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult> >(mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult> >(mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, bool, nsresult> >(mozilla::Variant<mozilla::Nothing, bool, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::CopyableErrorResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsTString<char>, nsresult> >(mozilla::Variant<nsTString<char>, nsresult>&) void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsIFile>, nsresult> >(mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>&) Line | Count | Source | 176 | 3 | static void destroy(Variant& aV) { | 177 | 3 | aV.template as<N>().~T(); | 178 | 3 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult> >(mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<mozilla::FileLocation, nsresult> >(mozilla::Variant<mozilla::FileLocation, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>::destroy<mozilla::Variant<JSAtom*, char16_t const*> >(mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, RefPtr<mozilla::gfx::FilterNode> >::destroy<mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > >(mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::layers::BogusAnimation>::destroy<mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation> >(mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::Yield>::destroy<mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> >(mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>::destroy<mozilla::Variant<unsigned int, mozilla::image::WriteState> >(mozilla::Variant<unsigned int, mozilla::image::WriteState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::WriteState>::destroy<mozilla::Variant<unsigned char, mozilla::image::WriteState> >(mozilla::Variant<unsigned char, mozilla::image::WriteState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::destroy<mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> > >(mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsIFrame*, nsresult> >(mozilla::Variant<nsIFrame*, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ipc::StructuredCloneData>::destroy<mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData> >(mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::destroy<mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > >(mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::dom::ClientWorkerState>::destroy<mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> >(mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned long>::destroy<mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long> >(mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::WorkerPrivate*>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*> >(mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::WaitForDataRejectValue>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<int, nsresult> >(mozilla::Variant<int, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<unsigned long, nsresult> >(mozilla::Variant<unsigned long, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<long, nsresult> >(mozilla::Variant<long, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaTrackDemuxer::SkipFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder> >(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, long>::destroy<mozilla::Variant<mozilla::Nothing, long> >(mozilla::Variant<mozilla::Nothing, long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsTString<char>, bool> >(mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult> >(mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool> >(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::SeekRejectValue>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue> >(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, RefPtr<mozilla::MediaMgrError> >::destroy<mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> > >(mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsresult, bool> >(mozilla::Variant<mozilla::Nothing, nsresult, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Maybe<nsTString<char16_t> > >::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > > >(mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned long>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long> >(mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::DecryptResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult> >(mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult> >(mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder> >(mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>::destroy<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult> >(mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::destroy<mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> > >(mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::CopyableErrorResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::ShadowRoot*>::destroy<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, UniqueStacks::FrameKey::JITFrameData>::destroy<mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> >(mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsTString<char16_t>, nsresult> >(mozilla::Variant<nsTString<char16_t>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, nsresult> >(mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult> >(mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::destroy<mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, unsigned long>::destroy<mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long> >(mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, double>::destroy<mozilla::Variant<mozilla::Nothing, int, double> >(mozilla::Variant<mozilla::Nothing, int, double>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, double>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<int>, double> >(mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>::destroy<mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>::destroy<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::destroy<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&) void mozilla::detail::VariantImplementation<unsigned char, 2ul, JSObject*>::destroy<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>&) Line | Count | Source | 176 | 232 | static void destroy(Variant& aV) { | 177 | 232 | aV.template as<N>().~T(); | 178 | 232 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, js::AllCompilations>::destroy<mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> >(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::destroy<mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason> >(mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::destroy<mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason> >(mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::destroy<mozilla::Variant<js::jit::MCall*, js::jit::AbortReason> >(mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::jit::AbortReason>::destroy<mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason> >(mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, js::WasmInstanceObject*>::destroy<mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*> >(mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, js::WasmInstanceObject*>::destroy<mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> >(mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>&) void mozilla::detail::VariantImplementation<unsigned char, 6ul, js::GCParallelTask*>::destroy<mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*> >(mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>&) Line | Count | Source | 176 | 991 | static void destroy(Variant& aV) { | 177 | 991 | aV.template as<N>().~T(); | 178 | 991 | } |
void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::destroy<mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> >(mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>&) Line | Count | Source | 176 | 16 | static void destroy(Variant& aV) { | 177 | 16 | aV.template as<N>().~T(); | 178 | 16 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<unsigned int, JS::Error*> >(mozilla::Variant<unsigned int, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<bool, JS::Error*> >(mozilla::Variant<bool, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<double, JS::Error*> >(mozilla::Variant<double, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinVariant, JS::Error*> >(mozilla::Variant<js::frontend::BinVariant, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<unsigned char, JS::Error*> >(mozilla::Variant<unsigned char, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 1ul, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*> >(mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>&) |
179 | | |
180 | | template<typename Variant> |
181 | | static bool |
182 | 0 | equal(const Variant& aLhs, const Variant& aRhs) { |
183 | 0 | return aLhs.template as<N>() == aRhs.template as<N>(); |
184 | 0 | } Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::CooperativeThreadPool::AllThreadsBlocked>::equal<mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> >(mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&, mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, char const**>::equal<mozilla::Variant<nsTString<char>, char const**> >(mozilla::Variant<nsTString<char>, char const**> const&, mozilla::Variant<nsTString<char>, char const**> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>::equal<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, mozilla::image::Yield>::equal<mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> >(mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> const&, mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, UniqueStacks::FrameKey::JITFrameData>::equal<mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> >(mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> const&, mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>::equal<mozilla::Variant<JSAtom*, char16_t const*> >(mozilla::Variant<JSAtom*, char16_t const*> const&, mozilla::Variant<JSAtom*, char16_t const*> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>::equal<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::equal<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 1ul, js::WasmInstanceObject*>::equal<mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> >(mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> const&, mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> const&) |
185 | | |
186 | | template<typename Matcher, typename ConcreteVariant> |
187 | | static auto |
188 | | match(Matcher&& aMatcher, ConcreteVariant& aV) |
189 | | -> decltype(aMatcher.match(aV.template as<N>())) |
190 | 157k | { |
191 | 157k | return aMatcher.match(aV.template as<N>()); |
192 | 157k | } Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<19ul>))())) mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>::match<IPC::ParamTraits<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >::VariantWriter&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const>(IPC::ParamTraits<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >::VariantWriter&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::GetBoolValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::GetBoolValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::GetIntValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::GetIntValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::GetBareStringValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::GetBareStringValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::Name() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::Name() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, nsTString<char> const>::match<nsPrefBranch::PrefName::PtrMatcher&, mozilla::Variant<char const*, nsTString<char> const> const>(nsPrefBranch::PrefName::PtrMatcher&, mozilla::Variant<char const*, nsTString<char> const> const&) Line | Count | Source | 190 | 6.90k | { | 191 | 6.90k | return aMatcher.match(aV.template as<N>()); | 192 | 6.90k | } |
decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, nsTString<char> const>::match<nsPrefBranch::PrefName::LenMatcher&, mozilla::Variant<char const*, nsTString<char> const> const>(nsPrefBranch::PrefName::LenMatcher&, mozilla::Variant<char const*, nsTString<char> const> const&) Line | Count | Source | 190 | 3 | { | 191 | 3 | return aMatcher.match(aV.template as<N>()); | 192 | 3 | } |
Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefsIter::Done()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref> >(PrefsIter::Done()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefsIter::MakeEntry()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref> >(PrefsIter::MakeEntry()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefsIter::NextEntry()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref> >(PrefsIter::NextEntry()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::NameString() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::NameString() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, nsTString<char> const>::match<nsPrefBranch::PrefName::CStringMatcher&, mozilla::Variant<char const*, nsTString<char> const> const>(nsPrefBranch::PrefName::CStringMatcher&, mozilla::Variant<char const*, nsTString<char> const> const&) Line | Count | Source | 190 | 71 | { | 191 | 71 | return aMatcher.match(aV.template as<N>()); | 192 | 71 | } |
Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::HasDefaultValue() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::HasDefaultValue() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::IsSticky() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::IsSticky() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::GetStringValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::GetStringValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::IsLocked() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::IsLocked() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::HasUserValue() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::HasUserValue() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::Type() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::Type() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::DefaultChanged() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::DefaultChanged() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<13ul>))())) mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, RefPtr<mozilla::gfx::FilterNode> >::match<mozilla::gfx::Setter&, mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > >(mozilla::gfx::Setter&, mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<19ul>))())) mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<19ul>))())) mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<19ul>))())) mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<19ul>))())) mozilla::detail::VariantImplementation<unsigned char, 19ul, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::layers::FocusTarget::NoFocusTarget>::match<mozilla::layers::FocusState::Update(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&)::FocusTargetDataMatcher&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const>(mozilla::layers::FocusState::Update(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&)::FocusTargetDataMatcher&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<16ul>))())) mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<16ul>))())) mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesOrigin(mozilla::dom::quota::OriginScope::Origin const&) const::OriginMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesOrigin(mozilla::dom::quota::OriginScope::Origin const&) const::OriginMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesPrefix(mozilla::dom::quota::OriginScope::Prefix const&) const::PrefixMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesPrefix(mozilla::dom::quota::OriginScope::Prefix const&) const::PrefixMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesPattern(mozilla::dom::quota::OriginScope::Pattern const&) const::PatternMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesPattern(mozilla::dom::quota::OriginScope::Pattern const&) const::PatternMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::Matches(mozilla::dom::quota::OriginScope const&) const::Matcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::Matches(mozilla::dom::quota::OriginScope const&) const::Matcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: Unified_cpp_extensions0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, nsPIDOMWindowOuter*>::match<mozilla::extensions::DocInfo::IsTopLevel() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const>(mozilla::extensions::DocInfo::IsTopLevel() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const&) Unexecuted instantiation: Unified_cpp_extensions0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, nsPIDOMWindowOuter*>::match<mozilla::extensions::DocInfo::ShouldMatchActiveTabPermission() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const>(mozilla::extensions::DocInfo::ShouldMatchActiveTabPermission() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const&) Unexecuted instantiation: Unified_cpp_extensions0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, nsPIDOMWindowOuter*>::match<mozilla::extensions::DocInfo::FrameID() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const>(mozilla::extensions::DocInfo::FrameID() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const&) Unexecuted instantiation: Unified_cpp_extensions0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, nsPIDOMWindowOuter*>::match<mozilla::extensions::DocInfo::Principal() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const>(mozilla::extensions::DocInfo::Principal() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::HashPolicy::HashingMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::HashPolicy::HashingMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::HashPolicy::EqualityMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::HashPolicy::EqualityMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(mozilla::devtools::TwoByteString::CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>::match<mozilla::devtools::TwoByteString::AsTwoByteStringMatcher&, mozilla::Variant<JSAtom*, char16_t const*> >(mozilla::devtools::TwoByteString::AsTwoByteStringMatcher&, mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::IsNonNullMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::IsNonNullMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, unsigned long>::match<mozilla::devtools::GetOrInternStringMatcher<char16_t, mozilla::Vector<mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> >, 0ul, mozilla::MallocAllocPolicy> >&, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long> >(mozilla::devtools::GetOrInternStringMatcher<char16_t, mozilla::Vector<mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> >, 0ul, mozilla::MallocAllocPolicy> >&, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, unsigned long>::match<mozilla::devtools::GetOrInternStringMatcher<char, mozilla::Vector<mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> >, 0ul, mozilla::MallocAllocPolicy> >&, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long> >(mozilla::devtools::GetOrInternStringMatcher<char, mozilla::Vector<mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> >, 0ul, mozilla::MallocAllocPolicy> >&, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>::match<js::ScriptSource::length() const::LengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> const>(js::ScriptSource::length() const::LengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> const&) Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_14applyToWrappedIZNS8_11compartmentEvE21GetCompartmentFunctorEEDTclfp_scPS7_LDnEEET_E14WrappedMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSH_RT0_ Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::match<js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const>(js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_14applyToWrappedIZNKS8_9isTenuredEvE16IsTenuredFunctorEEDTclfp_scPS7_LDnEEET_E14WrappedMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSH_RT0_ Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::HasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const>(js::LiveSavedFrameCache::FramePtr::HasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::SetHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(js::LiveSavedFrameCache::FramePtr::SetHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::ClearHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(js::LiveSavedFrameCache::FramePtr::ClearHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: Unified_cpp_js_src10.cpp:_ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_14applyToWrappedIN12_GLOBAL__N_120TraceIncomingFunctorEEEDTclfp_scPS7_LDnEEET_E14WrappedMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSI_RT0_ Unexecuted instantiation: Unified_cpp_js_src27.cpp:_ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_14applyToWrappedIN12_GLOBAL__N_124VisitGrayCallbackFunctorEEEDTclfp_scPS7_LDnEEET_E14WrappedMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSI_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_14applyToWrappedIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS7_LDnEEET_E14WrappedMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSI_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_15applyToDebuggerIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS5_LDnEEET_E15DebuggerMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSI_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_14applyToWrappedIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS7_LDnEEET_E14WrappedMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSI_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_15applyToDebuggerIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS5_LDnEEET_E15DebuggerMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSI_RT0_ Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, js::AllCompilations>::match<JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, js::AllCompilations>::match<IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, js::AllCompilations>::match<GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::match<js::detail::ParseHandlerMatcher&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> >(js::detail::ParseHandlerMatcher&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>&) Line | Count | Source | 190 | 44 | { | 191 | 44 | return aMatcher.match(aV.template as<N>()); | 192 | 44 | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::match<js::detail::ErrorReporterMatcher&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> >(js::detail::ErrorReporterMatcher&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>&) Line | Count | Source | 190 | 148k | { | 191 | 148k | return aMatcher.match(aV.template as<N>()); | 192 | 148k | } |
Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::match<js::detail::ErrorReporterMatcher&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> const>(js::detail::ErrorReporterMatcher&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> const&) decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::match<js::detail::InvokeMemberFunction<js::detail::GetParser, js::detail::ParserOptions>&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> const>(js::detail::InvokeMemberFunction<js::detail::GetParser, js::detail::ParserOptions>&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> const&) Line | Count | Source | 190 | 1.48k | { | 191 | 1.48k | return aMatcher.match(aV.template as<N>()); | 192 | 1.48k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::match<js::detail::InvokeMemberFunction<js::detail::GetParser, js::detail::ParserNewObjectBox, JSObject*>&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> >(js::detail::InvokeMemberFunction<js::detail::GetParser, js::detail::ParserNewObjectBox, JSObject*>&, mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>&) Line | Count | Source | 190 | 188 | { | 191 | 188 | return aMatcher.match(aV.template as<N>()); | 192 | 188 | } |
Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: Unified_cpp_js_src39.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::FirstSubsumedFrame>::match<js::captureIsSatisfied(JSContext*, JSPrincipals*, JSAtom const*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&)::Matcher&, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(js::captureIsSatisfied(JSContext*, JSPrincipals*, JSAtom const*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&)::Matcher&, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>::match<JS::ubi::AtomizingMatcher&, mozilla::Variant<JSAtom*, char16_t const*> >(JS::ubi::AtomizingMatcher&, mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>::match<CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*> >(CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<bool, 1ul, char16_t const*>::match<LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*> >(LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: Unified_cpp_js_src9.cpp:_ZN7mozilla6detail21VariantImplementationIhLm4EJNS_5TupleIJPN2js12NativeObjectEP8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNS8_14applyToWrappedIN12_GLOBAL__N_122AddOutgoingEdgeFunctorEEEDTclfp_scPS7_LDnEEET_E14WrappedMatcherNS_7VariantIJS7_P8JSStringNS2_IJS5_P8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEESA_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm4EEEEEEOSI_RT0_ |
193 | | }; |
194 | | |
195 | | // VariantImplementation for some variant type T. |
196 | | template<typename Tag, size_t N, typename T, typename... Ts> |
197 | | struct VariantImplementation<Tag, N, T, Ts...> |
198 | | { |
199 | | // The next recursive VariantImplementation. |
200 | | using Next = VariantImplementation<Tag, N + 1, Ts...>; |
201 | | |
202 | | template<typename U> |
203 | 197M | static Tag tag() { |
204 | 197M | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); |
205 | 197M | } Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::tag<char const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::tag<JS::AllFrames>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, bool, nsTString<char16_t> >::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, bool, nsTString<char16_t> >::tag<nsTString<char16_t> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsTString<char16_t> >::tag<nsTString<char16_t> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, bool, nsTString<char16_t> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsTString<char16_t> >::tag<bool>() bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, nsresult>::tag<unsigned int>() Line | Count | Source | 203 | 193M | static Tag tag() { | 204 | 193M | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 193M | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, nsresult>::tag<nsresult>() bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char> const, nsresult>::tag<nsTString<char> const>() Line | Count | Source | 203 | 144 | static Tag tag() { | 204 | 144 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 144 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char> const, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::tag<unsigned long>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::tag<mozilla::CooperativeThreadPool::AllThreadsBlocked>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ToAlphaAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::SpecularLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DiffuseLightingAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DropShadowAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::GaussianBlurAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ImageAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MergeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::CompositeAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TurbulenceAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::DisplacementMapAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OffsetAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ConvolveMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OpacityAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OpacityAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OpacityAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OpacityAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OpacityAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OpacityAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OpacityAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::OpacityAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ComponentTransferAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ComponentTransferAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ComponentTransferAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ComponentTransferAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ComponentTransferAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ComponentTransferAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ComponentTransferAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TileAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TileAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TileAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TileAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TileAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::TileAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::FloodAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::FloodAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::FloodAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::FloodAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::FloodAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ColorMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ColorMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ColorMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::ColorMatrixAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MorphologyAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MorphologyAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::MorphologyAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::BlendAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::BlendAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::tag<mozilla::gfx::EmptyAttributes>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::tag<mozilla::layers::FocusTarget::NoFocusTarget>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::tag<mozilla::layers::FocusTarget::NoFocusTarget>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::tag<mozilla::layers::FocusTarget::ScrollTargets>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::tag<mozilla::layers::FocusTarget::ScrollTargets>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::tag<mozilla::layers::LayersId>() unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::tag<int const>() Line | Count | Source | 203 | 464 | static Tag tag() { | 204 | 464 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 464 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsITimer>, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsITimer>, nsresult>::tag<nsCOMPtr<nsITimer> >() unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::tag<char const*>() Line | Count | Source | 203 | 90 | static Tag tag() { | 204 | 90 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 90 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::tag<char const*>() Line | Count | Source | 203 | 90 | static Tag tag() { | 204 | 90 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 90 | } |
Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::tag<void (*)(nsITimer*, bool, void*, char*, unsigned long)>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::tag<void (*)(nsITimer*, bool, void*, char*, unsigned long)>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::tag<nsPIDOMWindowOuter*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::tag<nsILoadInfo*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<char const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<char const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<char const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsTString<char> const>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsTString<char> const>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsTString<char> const>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsTString<char> const>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::DDNoValue>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::DDLogObject>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::DDLogObject>() bool mozilla::detail::VariantImplementation<bool, 0ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::tag<PrefsHashIter::Elem>() Line | Count | Source | 203 | 20.6k | static Tag tag() { | 204 | 20.6k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 20.6k | } |
bool mozilla::detail::VariantImplementation<bool, 0ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::tag<mozilla::SharedPrefMap::Pref>() Line | Count | Source | 203 | 6.89k | static Tag tag() { | 204 | 6.89k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 6.89k | } |
bool mozilla::detail::VariantImplementation<bool, 0ul, char const*, nsTString<char> const>::tag<nsTString<char> const>() Line | Count | Source | 203 | 83 | static Tag tag() { | 204 | 83 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 83 | } |
bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char>, char const**>::tag<nsTString<char> >() Line | Count | Source | 203 | 2.41M | static Tag tag() { | 204 | 2.41M | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 2.41M | } |
bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char>, char const**>::tag<char const**>() Line | Count | Source | 203 | 37 | static Tag tag() { | 204 | 37 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 37 | } |
bool mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::tag<Pref*>() Line | Count | Source | 203 | 18.0k | static Tag tag() { | 204 | 18.0k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 18.0k | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::tag<mozilla::SharedPrefMap::Pref>() bool mozilla::detail::VariantImplementation<bool, 0ul, Pref*, nsresult>::tag<Pref*>() Line | Count | Source | 203 | 9 | static Tag tag() { | 204 | 9 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 9 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, Pref*, nsresult>::tag<nsresult>() bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Ok, char const*>::tag<mozilla::Ok>() Line | Count | Source | 203 | 6 | static Tag tag() { | 204 | 6 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 6 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Ok, char const*>::tag<char const*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, char const*, nsTString<char> const>::tag<char const*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIInputStream>, nsresult>::tag<nsCOMPtr<nsIInputStream> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIInputStream>, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIRequest>, nsresult>::tag<nsCOMPtr<nsIRequest> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIRequest>, nsresult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<mozilla::plugins::IpdlTuple::InvalidType>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>::tag<nsTString<char> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<short>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned char>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned char>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<unsigned char>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<signed char>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::tag<signed char>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char>, nsresult>::tag<nsresult>() bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char>, nsresult>::tag<nsTString<char> >() Line | Count | Source | 203 | 15 | static Tag tag() { | 204 | 15 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 15 | } |
bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIFile>, nsresult>::tag<nsresult>() Line | Count | Source | 203 | 6 | static Tag tag() { | 204 | 6 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 6 | } |
bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIFile>, nsresult>::tag<nsCOMPtr<nsIFile> >() Line | Count | Source | 203 | 30 | static Tag tag() { | 204 | 30 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 30 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::URLPreloader::CacheKey, nsresult>::tag<mozilla::URLPreloader::CacheKey>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::URLPreloader::CacheKey, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::FileLocation, nsresult>::tag<nsresult>() bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::FileLocation, nsresult>::tag<mozilla::FileLocation>() Line | Count | Source | 203 | 72 | static Tag tag() { | 204 | 72 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 72 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::tag<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::tag<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::tag<RefPtr<mozilla::gfx::SourceSurface> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::tag<RefPtr<mozilla::gfx::FilterNode> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<float>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<float>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Matrix5x4>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Matrix5x4>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Matrix5x4>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Matrix5x4>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Color>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Color>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Color>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Color>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Color>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Color>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Color>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::Color>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<mozilla::gfx::BaseMatrix<float> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::tag<std::__1::vector<float, std::__1::allocator<float> > >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::tag<mozilla::layers::BogusAnimation>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::tag<nsCSSValueSharedList*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::TerminalState, mozilla::image::Yield>::tag<mozilla::image::TerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::TerminalState, mozilla::image::Yield>::tag<mozilla::image::Yield>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, mozilla::image::WriteState>::tag<unsigned int>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, mozilla::image::WriteState>::tag<mozilla::image::WriteState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::TerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::TerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned char, mozilla::image::WriteState>::tag<unsigned char>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned char, mozilla::image::WriteState>::tag<mozilla::image::WriteState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::TerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::TerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::TerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::TerminalState>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::tag<RefPtr<mozilla::dom::AnimationPlaybackEvent> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::tag<RefPtr<mozilla::dom::AnimationPlaybackEvent> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::tag<mozilla::InternalAnimationEvent>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::tag<mozilla::InternalAnimationEvent>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::tag<mozilla::InternalTransitionEvent>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsIFrame*, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsIFrame*, nsresult>::tag<nsIFrame*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, mozilla::dom::ipc::StructuredCloneData>::tag<unsigned int>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, mozilla::dom::ipc::StructuredCloneData>::tag<mozilla::dom::ipc::StructuredCloneData>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::tag<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::tag<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::tag<JS::FirstSubsumedFrame>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame>::tag<JS::FirstSubsumedFrame>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::tag<char16_t const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::tag<JS::MaxFrames>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame>::tag<JS::MaxFrames>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<mozilla::dom::WorkerPrivate*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<mozilla::dom::WorkerPrivate*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<mozilla::dom::WorkerPrivate*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<nsCOMPtr<nsIDocShell> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<nsCOMPtr<nsIDocShell> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<nsCOMPtr<nsIDocShell> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<mozilla::Nothing>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<RefPtr<nsPIDOMWindowInner> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::tag<RefPtr<nsPIDOMWindowInner> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::tag<mozilla::dom::ClientWindowState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::tag<mozilla::dom::ClientWorkerState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, int, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, int, nsresult>::tag<int>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, nsresult>::tag<unsigned long>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, long, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, long, nsresult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>::tag<mozilla::MediaResult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<bool>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Nothing, long>::tag<long>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Nothing, long>::tag<mozilla::Nothing>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<double>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<long>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::tag<mozilla::dom::MediaRecorder::Session::RunningState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned long>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::tag<unsigned int>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult>::tag<mozilla::Result<mozilla::Ok, nsresult> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult>::tag<nsresult>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Origin>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Null>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Null>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Null>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Prefix>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Prefix>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Pattern>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Pattern>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::tag<mozilla::dom::quota::OriginScope::Pattern>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::dom::Promise>, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::dom::Promise>, nsresult>::tag<RefPtr<mozilla::dom::Promise> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::tag<mozilla::ServoStyleSet*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::tag<mozilla::dom::ShadowRoot*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::tag<mozilla::dom::ShadowRoot*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::tag<nsXBLPrototypeBinding*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::tag<nsXBLPrototypeBinding*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::tag<UniqueStacks::FrameKey::JITFrameData>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::tag<UniqueStacks::FrameKey::NormalFrameData>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char16_t>, nsresult>::tag<nsTString<char16_t> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char16_t>, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIZipReaderCache>, nsresult>::tag<nsresult>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIZipReaderCache>, nsresult>::tag<nsCOMPtr<nsIZipReaderCache> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::tag<char16_t const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::tag<char16_t const*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::tag<JSAtom*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::tag<mozilla::UniquePtr<char16_t [], JS::FreePolicy> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::tag<mozilla::UniquePtr<char16_t [], JS::FreePolicy> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::tag<JSAtom*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::tag<unsigned long>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::tag<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::LexerTransition<TestState>::NonTerminalState>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::tag<mozilla::image::TerminalState>() unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::tag<js::ScriptSource::Missing>() Line | Count | Source | 203 | 23 | static Tag tag() { | 204 | 23 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 23 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::tag<js::ScriptSource::Uncompressed>() Line | Count | Source | 203 | 17 | static Tag tag() { | 204 | 17 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 17 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::tag<js::ScriptSource::Uncompressed>() Line | Count | Source | 203 | 17 | static Tag tag() { | 204 | 17 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 17 | } |
Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::tag<js::ScriptSource::Compressed>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::tag<js::ScriptSource::Compressed>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::InterpreterFrame*>() unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<JSObject*>() Line | Count | Source | 203 | 1.62M | static Tag tag() { | 204 | 1.62M | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 1.62M | } |
Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<JSString*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<JSString*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, JSScript*> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, JSScript*> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, JSScript*> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, js::LazyScript*> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, js::LazyScript*> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, js::LazyScript*> >() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::tag<mozilla::Tuple<js::NativeObject*, js::LazyScript*> >() unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::tag<JSObject*>() Line | Count | Source | 203 | 405 | static Tag tag() { | 204 | 405 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 405 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::DelayMetadata, JSObject*>::tag<JSObject*>() Line | Count | Source | 203 | 405 | static Tag tag() { | 204 | 405 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 405 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::tag<js::ImmediateMetadata>() Line | Count | Source | 203 | 9 | static Tag tag() { | 204 | 9 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 9 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::jit::IonBuilder*>() Line | Count | Source | 203 | 43 | static Tag tag() { | 204 | 43 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 43 | } |
Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::wasm::CompileTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::wasm::CompileTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::wasm::Tier2GeneratorTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::wasm::Tier2GeneratorTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::wasm::Tier2GeneratorTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::ParseTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::ParseTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::ParseTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::ParseTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::ParseTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::SourceCompressionTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::SourceCompressionTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::SourceCompressionTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::SourceCompressionTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::SourceCompressionTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::SourceCompressionTask*>() unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::GCParallelTask*>() Line | Count | Source | 203 | 2.97k | static Tag tag() { | 204 | 2.97k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 2.97k | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::GCParallelTask*>() Line | Count | Source | 203 | 2.97k | static Tag tag() { | 204 | 2.97k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 2.97k | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::GCParallelTask*>() Line | Count | Source | 203 | 2.97k | static Tag tag() { | 204 | 2.97k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 2.97k | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::GCParallelTask*>() Line | Count | Source | 203 | 2.97k | static Tag tag() { | 204 | 2.97k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 2.97k | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::GCParallelTask*>() Line | Count | Source | 203 | 2.97k | static Tag tag() { | 204 | 2.97k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 2.97k | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::GCParallelTask*>() Line | Count | Source | 203 | 2.97k | static Tag tag() { | 204 | 2.97k | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 2.97k | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JSScript*>() Line | Count | Source | 203 | 4 | static Tag tag() { | 204 | 4 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 4 | } |
Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JS::Realm*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JS::Realm*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JS::Zone*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JS::Zone*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JS::Zone*>() unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::ZonesInState>() Line | Count | Source | 203 | 36 | static Tag tag() { | 204 | 36 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 36 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::ZonesInState>() Line | Count | Source | 203 | 36 | static Tag tag() { | 204 | 36 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 36 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::ZonesInState>() Line | Count | Source | 203 | 36 | static Tag tag() { | 204 | 36 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 36 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::ZonesInState>() Line | Count | Source | 203 | 36 | static Tag tag() { | 204 | 36 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 36 | } |
Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JSRuntime*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JSRuntime*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JSRuntime*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JSRuntime*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<JSRuntime*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::CompilationsUsingNursery>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::CompilationsUsingNursery>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::CompilationsUsingNursery>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::CompilationsUsingNursery>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::CompilationsUsingNursery>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::CompilationsUsingNursery>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::jit::CommonFrameLayout*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::jit::CommonFrameLayout*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::wasm::DebugFrame*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::wasm::DebugFrame*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::wasm::DebugFrame*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::jit::RematerializedFrame*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::jit::RematerializedFrame*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::tag<js::jit::RematerializedFrame*>() bool mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MBasicBlock*, js::jit::AbortReason>::tag<js::jit::MBasicBlock*>() Line | Count | Source | 203 | 210 | static Tag tag() { | 204 | 210 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 210 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MBasicBlock*, js::jit::AbortReason>::tag<js::jit::AbortReason>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MInstruction*, js::jit::AbortReason>::tag<js::jit::MInstruction*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MInstruction*, js::jit::AbortReason>::tag<js::jit::AbortReason>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MCall*, js::jit::AbortReason>::tag<js::jit::AbortReason>() bool mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MCall*, js::jit::AbortReason>::tag<js::jit::MCall*>() Line | Count | Source | 203 | 210 | static Tag tag() { | 204 | 210 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 210 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MDefinition*, js::jit::AbortReason>::tag<js::jit::MDefinition*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MDefinition*, js::jit::AbortReason>::tag<js::jit::AbortReason>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::tag<mozilla::UniquePtr<char [], JS::FreePolicy> >() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::tag<js::ScriptSourceObject*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::tag<js::WasmInstanceObject*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::tag<JSScript*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::tag<js::LazyScript*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::LazyScript*, js::WasmInstanceObject*>::tag<js::LazyScript*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::tag<js::WasmInstanceObject*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::LazyScript*, js::WasmInstanceObject*>::tag<js::WasmInstanceObject*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::AllCompilations>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::AllCompilations>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::AllCompilations>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::AllCompilations>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::AllCompilations>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>::tag<js::AllCompilations>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::PromiseHelperTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::PromiseHelperTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::PromiseHelperTask*>() Unexecuted instantiation: unsigned char mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::tag<js::PromiseHelperTask*>() unsigned char mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::tag<js::DelayMetadata>() Line | Count | Source | 203 | 116 | static Tag tag() { | 204 | 116 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 116 | } |
unsigned char mozilla::detail::VariantImplementation<unsigned char, 1ul, js::DelayMetadata, JSObject*>::tag<js::DelayMetadata>() Line | Count | Source | 203 | 116 | static Tag tag() { | 204 | 116 | return TagHelper<Tag, N, T, U, Next, IsSame<T, U>::value>::tag(); | 205 | 116 | } |
Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, bool, JS::Error*>::tag<bool>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, bool, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, JS::Error*>::tag<unsigned int>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, double, JS::Error*>::tag<double>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, double, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinVariant, JS::Error*>::tag<js::frontend::BinVariant>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinVariant, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::tag<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned char, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned char, JS::Error*>::tag<unsigned char>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::tag<JS::Error*>() Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::tag<js::frontend::BinTokenReaderBase::SkippableSubTree>() |
206 | | |
207 | | template<typename Variant> |
208 | 424 | static void copyConstruct(void* aLhs, const Variant& aRhs) { |
209 | 424 | if (aRhs.template is<N>()) { |
210 | 334 | ::new (KnownNotNull, aLhs) T(aRhs.template as<N>()); |
211 | 334 | } else { |
212 | 90 | Next::copyConstruct(aLhs, aRhs); |
213 | 90 | } |
214 | 424 | } Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, nsresult>::copyConstruct<mozilla::Variant<unsigned int, nsresult> >(void*, mozilla::Variant<unsigned int, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char> const, nsresult>::copyConstruct<mozilla::Variant<nsTString<char> const, nsresult> >(void*, mozilla::Variant<nsTString<char> const, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::copyConstruct<mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> >(void*, mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::copyConstruct<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(void*, mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> const&) Line | Count | Source | 208 | 90 | static void copyConstruct(void* aLhs, const Variant& aRhs) { | 209 | 90 | if (aRhs.template is<N>()) { | 210 | 0 | ::new (KnownNotNull, aLhs) T(aRhs.template as<N>()); | 211 | 90 | } else { | 212 | 90 | Next::copyConstruct(aLhs, aRhs); | 213 | 90 | } | 214 | 90 | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::copyConstruct<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(void*, mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> const&) Line | Count | Source | 208 | 90 | static void copyConstruct(void* aLhs, const Variant& aRhs) { | 209 | 90 | if (aRhs.template is<N>()) { | 210 | 90 | ::new (KnownNotNull, aLhs) T(aRhs.template as<N>()); | 211 | 90 | } else { | 212 | 0 | Next::copyConstruct(aLhs, aRhs); | 213 | 0 | } | 214 | 90 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsITimer>, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsITimer>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsITimer>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::copyConstruct<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(void*, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::copyConstruct<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(void*, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) void mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::copyConstruct<mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> >(void*, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 208 | 12 | static void copyConstruct(void* aLhs, const Variant& aRhs) { | 209 | 12 | if (aRhs.template is<N>()) { | 210 | 12 | ::new (KnownNotNull, aLhs) T(aRhs.template as<N>()); | 211 | 12 | } else { | 212 | 0 | Next::copyConstruct(aLhs, aRhs); | 213 | 0 | } | 214 | 12 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, Pref*, nsresult>::copyConstruct<mozilla::Variant<Pref*, nsresult> >(void*, mozilla::Variant<Pref*, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Ok, char const*>::copyConstruct<mozilla::Variant<mozilla::Ok, char const*> >(void*, mozilla::Variant<mozilla::Ok, char const*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIInputStream>, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIRequest>, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char>, nsresult>::copyConstruct<mozilla::Variant<nsTString<char>, nsresult> >(void*, mozilla::Variant<nsTString<char>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIFile>, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsIFile>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsIFile>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::URLPreloader::CacheKey, nsresult>::copyConstruct<mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult> >(void*, mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::FileLocation, nsresult>::copyConstruct<mozilla::Variant<mozilla::FileLocation, nsresult> >(void*, mozilla::Variant<mozilla::FileLocation, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::copyConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::copyConstruct<mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > >(void*, mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::copyConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::copyConstruct<mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation> >(void*, mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::TerminalState, mozilla::image::Yield>::copyConstruct<mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> >(void*, mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsIFrame*, nsresult>::copyConstruct<mozilla::Variant<nsIFrame*, nsresult> >(void*, mozilla::Variant<nsIFrame*, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::copyConstruct<mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> >(void*, mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::copyConstruct<mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > >(void*, mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, int, nsresult>::copyConstruct<mozilla::Variant<int, nsresult> >(void*, mozilla::Variant<int, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, nsresult>::copyConstruct<mozilla::Variant<unsigned long, nsresult> >(void*, mozilla::Variant<unsigned long, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, long, nsresult>::copyConstruct<mozilla::Variant<long, nsresult> >(void*, mozilla::Variant<long, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Nothing, long>::copyConstruct<mozilla::Variant<mozilla::Nothing, long> >(void*, mozilla::Variant<mozilla::Nothing, long> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::copyConstruct<mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult> >(void*, mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>::copyConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult>::copyConstruct<mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult> >(void*, mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::copyConstruct<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(void*, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::copyConstruct<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(void*, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::copyConstruct<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(void*, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::dom::Promise>, nsresult>::copyConstruct<mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult> >(void*, mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::copyConstruct<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(void*, mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::copyConstruct<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(void*, mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::copyConstruct<mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> >(void*, mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char16_t>, nsresult>::copyConstruct<mozilla::Variant<nsTString<char16_t>, nsresult> >(void*, mozilla::Variant<nsTString<char16_t>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, bool, nsTString<char16_t> >::copyConstruct<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(void*, mozilla::Variant<unsigned int, bool, nsTString<char16_t> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsTString<char16_t> >::copyConstruct<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(void*, mozilla::Variant<unsigned int, bool, nsTString<char16_t> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIZipReaderCache>, nsresult>::copyConstruct<mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult> >(void*, mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, int, double>::copyConstruct<mozilla::Variant<mozilla::Nothing, int, double> >(void*, mozilla::Variant<mozilla::Nothing, int, double> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, int, double>::copyConstruct<mozilla::Variant<mozilla::Nothing, int, double> >(void*, mozilla::Variant<mozilla::Nothing, int, double> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::copyConstruct<mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::copyConstruct<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(void*, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::copyConstruct<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(void*, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::copyConstruct<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(void*, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::copyConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::copyConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::copyConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::copyConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MBasicBlock*, js::jit::AbortReason>::copyConstruct<mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason> >(void*, mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MInstruction*, js::jit::AbortReason>::copyConstruct<mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason> >(void*, mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MCall*, js::jit::AbortReason>::copyConstruct<mozilla::Variant<js::jit::MCall*, js::jit::AbortReason> >(void*, mozilla::Variant<js::jit::MCall*, js::jit::AbortReason> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MDefinition*, js::jit::AbortReason>::copyConstruct<mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason> >(void*, mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason> const&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::copyConstruct<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(void*, mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> const&) Line | Count | Source | 208 | 232 | static void copyConstruct(void* aLhs, const Variant& aRhs) { | 209 | 232 | if (aRhs.template is<N>()) { | 210 | 232 | ::new (KnownNotNull, aLhs) T(aRhs.template as<N>()); | 211 | 232 | } else { | 212 | 0 | Next::copyConstruct(aLhs, aRhs); | 213 | 0 | } | 214 | 232 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::DelayMetadata, JSObject*>::copyConstruct<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(void*, mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, JS::Error*>::copyConstruct<mozilla::Variant<unsigned int, JS::Error*> >(void*, mozilla::Variant<unsigned int, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, bool, JS::Error*>::copyConstruct<mozilla::Variant<bool, JS::Error*> >(void*, mozilla::Variant<bool, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, double, JS::Error*>::copyConstruct<mozilla::Variant<double, JS::Error*> >(void*, mozilla::Variant<double, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinVariant, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinVariant, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinVariant, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned char, JS::Error*>::copyConstruct<mozilla::Variant<unsigned char, JS::Error*> >(void*, mozilla::Variant<unsigned char, JS::Error*> const&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::copyConstruct<mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*> >(void*, mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*> const&) |
215 | | |
216 | | template<typename Variant> |
217 | 8.32k | static void moveConstruct(void* aLhs, Variant&& aRhs) { |
218 | 8.32k | if (aRhs.template is<N>()) { |
219 | 7.79k | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); |
220 | 7.79k | } else { |
221 | 533 | Next::moveConstruct(aLhs, std::move(aRhs)); |
222 | 533 | } |
223 | 8.32k | } Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, bool> >(void*, mozilla::Variant<mozilla::Nothing, bool, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, bool> >(void*, mozilla::Variant<mozilla::Nothing, bool, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::moveConstruct<mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> >(void*, mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>&&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::moveConstruct<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(void*, mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>&&) Line | Count | Source | 217 | 774 | static void moveConstruct(void* aLhs, Variant&& aRhs) { | 218 | 774 | if (aRhs.template is<N>()) { | 219 | 598 | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); | 220 | 598 | } else { | 221 | 176 | Next::moveConstruct(aLhs, std::move(aRhs)); | 222 | 176 | } | 223 | 774 | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::moveConstruct<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(void*, mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>&&) Line | Count | Source | 217 | 176 | static void moveConstruct(void* aLhs, Variant&& aRhs) { | 218 | 176 | if (aRhs.template is<N>()) { | 219 | 176 | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); | 220 | 176 | } else { | 221 | 0 | Next::moveConstruct(aLhs, std::move(aRhs)); | 222 | 0 | } | 223 | 176 | } |
void mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::moveConstruct<mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> >(void*, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>&&) Line | Count | Source | 217 | 6.89k | static void moveConstruct(void* aLhs, Variant&& aRhs) { | 218 | 6.89k | if (aRhs.template is<N>()) { | 219 | 6.89k | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); | 220 | 6.89k | } else { | 221 | 0 | Next::moveConstruct(aLhs, std::move(aRhs)); | 222 | 0 | } | 223 | 6.89k | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, char const*, nsTString<char> const>::moveConstruct<mozilla::Variant<char const*, nsTString<char> const> >(void*, mozilla::Variant<char const*, nsTString<char> const>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsCOMPtr<nsITabParent>, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, bool, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, bool, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::moveConstruct<mozilla::Variant<JSAtom*, char16_t const*> >(void*, mozilla::Variant<JSAtom*, char16_t const*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<bool>, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<bool>, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::moveConstruct<mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > >(void*, mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::moveConstruct<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(void*, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::moveConstruct<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(void*, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::moveConstruct<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(void*, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::moveConstruct<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(void*, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::wr::MemoryReport, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::wr::MemoryReport, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::TerminalState, mozilla::image::Yield>::moveConstruct<mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> >(void*, mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned char, mozilla::image::WriteState>::moveConstruct<mozilla::Variant<unsigned char, mozilla::image::WriteState> >(void*, mozilla::Variant<unsigned char, mozilla::image::WriteState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, mozilla::image::WriteState>::moveConstruct<mozilla::Variant<unsigned int, mozilla::image::WriteState> >(void*, mozilla::Variant<unsigned int, mozilla::image::WriteState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::moveConstruct<mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> > >(void*, mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::moveConstruct<mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> > >(void*, mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, unsigned long, unsigned long>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long> >(void*, mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, unsigned long, unsigned long>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long> >(void*, mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::moveConstruct<mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(void*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame>::moveConstruct<mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(void*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::ClientOpResult, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::ClientState, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::ClientState, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::moveConstruct<mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> >(void*, mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::MediaResult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::media::TimeUnit, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, unsigned int, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, unsigned int, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::MediaStatistics, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::MediaStatistics, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTString<char>, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTString<char>, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<bool>, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<bool>, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::MetadataHolder, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> > >(void*, mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, RefPtr<mozilla::MediaMgrError> >::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> > >(void*, mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsresult, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsresult, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsresult, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsresult, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsresult, bool> >(void*, mozilla::Variant<mozilla::Nothing, nsresult, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > > >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, mozilla::Maybe<nsTString<char16_t> > >::moveConstruct<mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > > >(void*, mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<unsigned long>, unsigned long>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTString<char>, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTString<char>, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DecryptResult, mozilla::DecryptResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::MediaRawData>, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool> >(void*, mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::moveConstruct<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(void*, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::moveConstruct<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(void*, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::moveConstruct<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(void*, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::moveConstruct<mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > >(void*, mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::moveConstruct<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(void*, mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::moveConstruct<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(void*, mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, unsigned int, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, unsigned int, nsresult>::moveConstruct<mozilla::Variant<mozilla::Nothing, unsigned int, nsresult> >(void*, mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, bool, nsTString<char16_t> >::moveConstruct<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(void*, mozilla::Variant<unsigned int, bool, nsTString<char16_t> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsTString<char16_t> >::moveConstruct<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(void*, mozilla::Variant<unsigned int, bool, nsTString<char16_t> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::moveConstruct<mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(void*, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::moveConstruct<mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(void*, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::moveConstruct<mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long> >(void*, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, int, double>::moveConstruct<mozilla::Variant<mozilla::Nothing, int, double> >(void*, mozilla::Variant<mozilla::Nothing, int, double>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, int, double>::moveConstruct<mozilla::Variant<mozilla::Nothing, int, double> >(void*, mozilla::Variant<mozilla::Nothing, int, double>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<int>, double>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<int>, double> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<int>, double>::moveConstruct<mozilla::Variant<mozilla::Nothing, nsTArray<int>, double> >(void*, mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::moveConstruct<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool> >(void*, mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::moveConstruct<mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> >(void*, mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>&&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::moveConstruct<mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(void*, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&&) Line | Count | Source | 217 | 9 | static void moveConstruct(void* aLhs, Variant&& aRhs) { | 218 | 9 | if (aRhs.template is<N>()) { | 219 | 0 | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); | 220 | 9 | } else { | 221 | 9 | Next::moveConstruct(aLhs, std::move(aRhs)); | 222 | 9 | } | 223 | 9 | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::moveConstruct<mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(void*, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&&) Line | Count | Source | 217 | 9 | static void moveConstruct(void* aLhs, Variant&& aRhs) { | 218 | 9 | if (aRhs.template is<N>()) { | 219 | 9 | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); | 220 | 9 | } else { | 221 | 0 | Next::moveConstruct(aLhs, std::move(aRhs)); | 222 | 0 | } | 223 | 9 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::moveConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::moveConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::moveConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::moveConstruct<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(void*, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::moveConstruct<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(void*, mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>&&) Line | Count | Source | 217 | 232 | static void moveConstruct(void* aLhs, Variant&& aRhs) { | 218 | 232 | if (aRhs.template is<N>()) { | 219 | 0 | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); | 220 | 232 | } else { | 221 | 232 | Next::moveConstruct(aLhs, std::move(aRhs)); | 222 | 232 | } | 223 | 232 | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::DelayMetadata, JSObject*>::moveConstruct<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(void*, mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>&&) Line | Count | Source | 217 | 232 | static void moveConstruct(void* aLhs, Variant&& aRhs) { | 218 | 232 | if (aRhs.template is<N>()) { | 219 | 116 | ::new (KnownNotNull, aLhs) T(aRhs.template extract<N>()); | 220 | 116 | } else { | 221 | 116 | Next::moveConstruct(aLhs, std::move(aRhs)); | 222 | 116 | } | 223 | 232 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::moveConstruct<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(void*, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::moveConstruct<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(void*, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::moveConstruct<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(void*, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::moveConstruct<mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> >(void*, mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::moveConstruct<mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*> >(void*, mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>&&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::LazyScript*, js::WasmInstanceObject*>::moveConstruct<mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*> >(void*, mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>&&) |
224 | | |
225 | | template<typename Variant> |
226 | 96.7M | static void destroy(Variant& aV) { |
227 | 96.7M | if (aV.template is<N>()) { |
228 | 96.7M | aV.template as<N>().~T(); |
229 | 96.7M | } else { |
230 | 7.19k | Next::destroy(aV); |
231 | 7.19k | } |
232 | 96.7M | } Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::destroy<mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> > >(mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::destroy<mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame>::destroy<mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, bool, nsTString<char16_t> >::destroy<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(mozilla::Variant<unsigned int, bool, nsTString<char16_t> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsTString<char16_t> >::destroy<mozilla::Variant<unsigned int, bool, nsTString<char16_t> > >(mozilla::Variant<unsigned int, bool, nsTString<char16_t> >&) void mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, nsresult>::destroy<mozilla::Variant<unsigned int, nsresult> >(mozilla::Variant<unsigned int, nsresult>&) Line | Count | Source | 226 | 95.0M | static void destroy(Variant& aV) { | 227 | 95.0M | if (aV.template is<N>()) { | 228 | 95.0M | aV.template as<N>().~T(); | 229 | 95.0M | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 95.0M | } |
void mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char> const, nsresult>::destroy<mozilla::Variant<nsTString<char> const, nsresult> >(mozilla::Variant<nsTString<char> const, nsresult>&) Line | Count | Source | 226 | 48 | static void destroy(Variant& aV) { | 227 | 48 | if (aV.template is<N>()) { | 228 | 48 | aV.template as<N>().~T(); | 229 | 48 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 48 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::destroy<mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> >(mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, bool>::destroy<mozilla::Variant<mozilla::Nothing, bool, bool> >(mozilla::Variant<mozilla::Nothing, bool, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, bool>::destroy<mozilla::Variant<mozilla::Nothing, bool, bool> >(mozilla::Variant<mozilla::Nothing, bool, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::destroy<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::destroy<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::destroy<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::destroy<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>&) Line | Count | Source | 226 | 1.21k | static void destroy(Variant& aV) { | 227 | 1.21k | if (aV.template is<N>()) { | 228 | 860 | aV.template as<N>().~T(); | 229 | 860 | } else { | 230 | 352 | Next::destroy(aV); | 231 | 352 | } | 232 | 1.21k | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::destroy<mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> >(mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>&) Line | Count | Source | 226 | 352 | static void destroy(Variant& aV) { | 227 | 352 | if (aV.template is<N>()) { | 228 | 352 | aV.template as<N>().~T(); | 229 | 352 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 352 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsITimer>, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsITimer>, nsresult> >(mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::destroy<mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> >(mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> >(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&) void mozilla::detail::VariantImplementation<bool, 0ul, char const*, nsTString<char> const>::destroy<mozilla::Variant<char const*, nsTString<char> const> >(mozilla::Variant<char const*, nsTString<char> const>&) Line | Count | Source | 226 | 83 | static void destroy(Variant& aV) { | 227 | 83 | if (aV.template is<N>()) { | 228 | 0 | aV.template as<N>().~T(); | 229 | 83 | } else { | 230 | 83 | Next::destroy(aV); | 231 | 83 | } | 232 | 83 | } |
void mozilla::detail::VariantImplementation<bool, 0ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::destroy<mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref> >(mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>&) Line | Count | Source | 226 | 6 | static void destroy(Variant& aV) { | 227 | 6 | if (aV.template is<N>()) { | 228 | 6 | aV.template as<N>().~T(); | 229 | 6 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 6 | } |
void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Ok, char const*>::destroy<mozilla::Variant<mozilla::Ok, char const*> >(mozilla::Variant<mozilla::Ok, char const*>&) Line | Count | Source | 226 | 3 | static void destroy(Variant& aV) { | 227 | 3 | if (aV.template is<N>()) { | 228 | 3 | aV.template as<N>().~T(); | 229 | 3 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 3 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char>, char const**>::destroy<mozilla::Variant<nsTString<char>, char const**> >(mozilla::Variant<nsTString<char>, char const**>&) void mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::destroy<mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> >(mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>&) Line | Count | Source | 226 | 24.9k | static void destroy(Variant& aV) { | 227 | 24.9k | if (aV.template is<N>()) { | 228 | 24.9k | aV.template as<N>().~T(); | 229 | 24.9k | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 24.9k | } |
void mozilla::detail::VariantImplementation<bool, 0ul, Pref*, nsresult>::destroy<mozilla::Variant<Pref*, nsresult> >(mozilla::Variant<Pref*, nsresult>&) Line | Count | Source | 226 | 3 | static void destroy(Variant& aV) { | 227 | 3 | if (aV.template is<N>()) { | 228 | 3 | aV.template as<N>().~T(); | 229 | 3 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 3 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIInputStream>, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult> >(mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIRequest>, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult> >(mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsCOMPtr<nsITabParent>, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, bool, nsresult> >(mozilla::Variant<mozilla::Nothing, bool, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, bool, nsresult> >(mozilla::Variant<mozilla::Nothing, bool, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason> >(mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>&) void mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char>, nsresult>::destroy<mozilla::Variant<nsTString<char>, nsresult> >(mozilla::Variant<nsTString<char>, nsresult>&) Line | Count | Source | 226 | 5 | static void destroy(Variant& aV) { | 227 | 5 | if (aV.template is<N>()) { | 228 | 5 | aV.template as<N>().~T(); | 229 | 5 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 5 | } |
void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIFile>, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsIFile>, nsresult> >(mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>&) Line | Count | Source | 226 | 12 | static void destroy(Variant& aV) { | 227 | 12 | if (aV.template is<N>()) { | 228 | 9 | aV.template as<N>().~T(); | 229 | 9 | } else { | 230 | 3 | Next::destroy(aV); | 231 | 3 | } | 232 | 12 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::URLPreloader::CacheKey, nsresult>::destroy<mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult> >(mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>&) void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::FileLocation, nsresult>::destroy<mozilla::Variant<mozilla::FileLocation, nsresult> >(mozilla::Variant<mozilla::FileLocation, nsresult>&) Line | Count | Source | 226 | 24 | static void destroy(Variant& aV) { | 227 | 24 | if (aV.template is<N>()) { | 228 | 24 | aV.template as<N>().~T(); | 229 | 24 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 24 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::destroy<mozilla::Variant<JSAtom*, char16_t const*> >(mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<bool>, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<bool>, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::destroy<mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::destroy<mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > >(mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::destroy<mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation> >(mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::wr::MemoryReport, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::wr::MemoryReport, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::TerminalState, mozilla::image::Yield>::destroy<mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> >(mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, mozilla::image::WriteState>::destroy<mozilla::Variant<unsigned int, mozilla::image::WriteState> >(mozilla::Variant<unsigned int, mozilla::image::WriteState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned char, mozilla::image::WriteState>::destroy<mozilla::Variant<unsigned char, mozilla::image::WriteState> >(mozilla::Variant<unsigned char, mozilla::image::WriteState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::destroy<mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> > >(mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::destroy<mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> > >(mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsIFrame*, nsresult>::destroy<mozilla::Variant<nsIFrame*, nsresult> >(mozilla::Variant<nsIFrame*, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, mozilla::dom::ipc::StructuredCloneData>::destroy<mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData> >(mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::destroy<mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > >(mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::destroy<mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> >(mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, unsigned long, unsigned long>::destroy<mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long> >(mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, unsigned long, unsigned long>::destroy<mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long> >(mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::ClientOpResult, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::ClientState, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::ClientState, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*> >(mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*> >(mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*> >(mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, int, nsresult>::destroy<mozilla::Variant<int, nsresult> >(mozilla::Variant<int, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, nsresult>::destroy<mozilla::Variant<unsigned long, nsresult> >(mozilla::Variant<unsigned long, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, long, nsresult>::destroy<mozilla::Variant<long, nsresult> >(mozilla::Variant<long, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::MediaResult, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::media::TimeUnit, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder> >(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder> >(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, unsigned int, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, unsigned int, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::MediaStatistics, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::MediaStatistics, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Nothing, long>::destroy<mozilla::Variant<mozilla::Nothing, long> >(mozilla::Variant<mozilla::Nothing, long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsTString<char>, bool> >(mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTString<char>, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsTString<char>, bool> >(mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::destroy<mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult> >(mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<bool>, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool> >(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<bool>, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool> >(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::MetadataHolder, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue> >(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue> >(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::destroy<mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> > >(mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, RefPtr<mozilla::MediaMgrError> >::destroy<mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> > >(mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsresult, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsresult, bool> >(mozilla::Variant<mozilla::Nothing, nsresult, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsresult, bool>::destroy<mozilla::Variant<mozilla::Nothing, nsresult, bool> >(mozilla::Variant<mozilla::Nothing, nsresult, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > > >(mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, bool, mozilla::Maybe<nsTString<char16_t> > >::destroy<mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > > >(mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long> >(mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<unsigned long>, unsigned long>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long> >(mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTString<char>, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTString<char>, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult> >(mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult> >(mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DecryptResult, mozilla::DecryptResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult> >(mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult>::destroy<mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult> >(mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, RefPtr<mozilla::MediaRawData>, bool>::destroy<mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool> >(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder> >(mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder> >(mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::destroy<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::destroy<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::destroy<mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> >(mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::dom::Promise>, nsresult>::destroy<mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult> >(mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult> >(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::destroy<mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> > >(mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult> >(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::destroy<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::destroy<mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> >(mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::destroy<mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> >(mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char16_t>, nsresult>::destroy<mozilla::Variant<nsTString<char16_t>, nsresult> >(mozilla::Variant<nsTString<char16_t>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, unsigned int, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, nsresult> >(mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, unsigned int, nsresult>::destroy<mozilla::Variant<mozilla::Nothing, unsigned int, nsresult> >(mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, nsCOMPtr<nsIZipReaderCache>, nsresult>::destroy<mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult> >(mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::destroy<mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::destroy<mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::destroy<mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long> >(mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, int, double>::destroy<mozilla::Variant<mozilla::Nothing, int, double> >(mozilla::Variant<mozilla::Nothing, int, double>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, int, double>::destroy<mozilla::Variant<mozilla::Nothing, int, double> >(mozilla::Variant<mozilla::Nothing, int, double>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, nsTArray<int>, double>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<int>, double> >(mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, nsTArray<int>, double>::destroy<mozilla::Variant<mozilla::Nothing, nsTArray<int>, double> >(mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::destroy<mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool> >(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::destroy<mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> >(mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::destroy<mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Line | Count | Source | 226 | 18 | static void destroy(Variant& aV) { | 227 | 18 | if (aV.template is<N>()) { | 228 | 9 | aV.template as<N>().~T(); | 229 | 9 | } else { | 230 | 9 | Next::destroy(aV); | 231 | 9 | } | 232 | 18 | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::destroy<mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Line | Count | Source | 226 | 9 | static void destroy(Variant& aV) { | 227 | 9 | if (aV.template is<N>()) { | 228 | 9 | aV.template as<N>().~T(); | 229 | 9 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 9 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::destroy<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::destroy<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::destroy<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::destroy<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&) Line | Count | Source | 226 | 1.62M | static void destroy(Variant& aV) { | 227 | 1.62M | if (aV.template is<N>()) { | 228 | 1.62M | aV.template as<N>().~T(); | 229 | 1.62M | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 1.62M | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::destroy<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::destroy<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::destroy<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::destroy<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>&) Line | Count | Source | 226 | 696 | static void destroy(Variant& aV) { | 227 | 696 | if (aV.template is<N>()) { | 228 | 232 | aV.template as<N>().~T(); | 229 | 464 | } else { | 230 | 464 | Next::destroy(aV); | 231 | 464 | } | 232 | 696 | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::DelayMetadata, JSObject*>::destroy<mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> >(mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>&) Line | Count | Source | 226 | 464 | static void destroy(Variant& aV) { | 227 | 464 | if (aV.template is<N>()) { | 228 | 232 | aV.template as<N>().~T(); | 229 | 232 | } else { | 230 | 232 | Next::destroy(aV); | 231 | 232 | } | 232 | 464 | } |
void mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::destroy<mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> >(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>&) Line | Count | Source | 226 | 40 | static void destroy(Variant& aV) { | 227 | 40 | if (aV.template is<N>()) { | 228 | 4 | aV.template as<N>().~T(); | 229 | 36 | } else { | 230 | 36 | Next::destroy(aV); | 231 | 36 | } | 232 | 40 | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::destroy<mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> >(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>&) Line | Count | Source | 226 | 36 | static void destroy(Variant& aV) { | 227 | 36 | if (aV.template is<N>()) { | 228 | 0 | aV.template as<N>().~T(); | 229 | 36 | } else { | 230 | 36 | Next::destroy(aV); | 231 | 36 | } | 232 | 36 | } |
void mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::destroy<mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> >(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>&) Line | Count | Source | 226 | 36 | static void destroy(Variant& aV) { | 227 | 36 | if (aV.template is<N>()) { | 228 | 0 | aV.template as<N>().~T(); | 229 | 36 | } else { | 230 | 36 | Next::destroy(aV); | 231 | 36 | } | 232 | 36 | } |
void mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::destroy<mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> >(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>&) Line | Count | Source | 226 | 36 | static void destroy(Variant& aV) { | 227 | 36 | if (aV.template is<N>()) { | 228 | 36 | aV.template as<N>().~T(); | 229 | 36 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 36 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::destroy<mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> >(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>::destroy<mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> >(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>&) void mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MBasicBlock*, js::jit::AbortReason>::destroy<mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason> >(mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>&) Line | Count | Source | 226 | 70 | static void destroy(Variant& aV) { | 227 | 70 | if (aV.template is<N>()) { | 228 | 70 | aV.template as<N>().~T(); | 229 | 70 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 70 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MInstruction*, js::jit::AbortReason>::destroy<mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason> >(mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>&) void mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MCall*, js::jit::AbortReason>::destroy<mozilla::Variant<js::jit::MCall*, js::jit::AbortReason> >(mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>&) Line | Count | Source | 226 | 70 | static void destroy(Variant& aV) { | 227 | 70 | if (aV.template is<N>()) { | 228 | 70 | aV.template as<N>().~T(); | 229 | 70 | } else { | 230 | 0 | Next::destroy(aV); | 231 | 0 | } | 232 | 70 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::jit::MDefinition*, js::jit::AbortReason>::destroy<mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason> >(mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::destroy<mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*> >(mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::LazyScript*, js::WasmInstanceObject*>::destroy<mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*> >(mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::destroy<mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> >(mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>&) void mozilla::detail::VariantImplementation<unsigned char, 0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::destroy<mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*> >(mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>&) Line | Count | Source | 226 | 1.00k | static void destroy(Variant& aV) { | 227 | 1.00k | if (aV.template is<N>()) { | 228 | 14 | aV.template as<N>().~T(); | 229 | 991 | } else { | 230 | 991 | Next::destroy(aV); | 231 | 991 | } | 232 | 1.00k | } |
void mozilla::detail::VariantImplementation<unsigned char, 1ul, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::destroy<mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*> >(mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>&) Line | Count | Source | 226 | 991 | static void destroy(Variant& aV) { | 227 | 991 | if (aV.template is<N>()) { | 228 | 0 | aV.template as<N>().~T(); | 229 | 991 | } else { | 230 | 991 | Next::destroy(aV); | 231 | 991 | } | 232 | 991 | } |
void mozilla::detail::VariantImplementation<unsigned char, 2ul, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::destroy<mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*> >(mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>&) Line | Count | Source | 226 | 991 | static void destroy(Variant& aV) { | 227 | 991 | if (aV.template is<N>()) { | 228 | 0 | aV.template as<N>().~T(); | 229 | 991 | } else { | 230 | 991 | Next::destroy(aV); | 231 | 991 | } | 232 | 991 | } |
void mozilla::detail::VariantImplementation<unsigned char, 3ul, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::destroy<mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*> >(mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>&) Line | Count | Source | 226 | 991 | static void destroy(Variant& aV) { | 227 | 991 | if (aV.template is<N>()) { | 228 | 0 | aV.template as<N>().~T(); | 229 | 991 | } else { | 230 | 991 | Next::destroy(aV); | 231 | 991 | } | 232 | 991 | } |
void mozilla::detail::VariantImplementation<unsigned char, 4ul, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::destroy<mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*> >(mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>&) Line | Count | Source | 226 | 991 | static void destroy(Variant& aV) { | 227 | 991 | if (aV.template is<N>()) { | 228 | 0 | aV.template as<N>().~T(); | 229 | 991 | } else { | 230 | 991 | Next::destroy(aV); | 231 | 991 | } | 232 | 991 | } |
void mozilla::detail::VariantImplementation<unsigned char, 5ul, js::SourceCompressionTask*, js::GCParallelTask*>::destroy<mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*> >(mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>&) Line | Count | Source | 226 | 991 | static void destroy(Variant& aV) { | 227 | 991 | if (aV.template is<N>()) { | 228 | 0 | aV.template as<N>().~T(); | 229 | 991 | } else { | 230 | 991 | Next::destroy(aV); | 231 | 991 | } | 232 | 991 | } |
Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned int, JS::Error*>::destroy<mozilla::Variant<unsigned int, JS::Error*> >(mozilla::Variant<unsigned int, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, bool, JS::Error*>::destroy<mozilla::Variant<bool, JS::Error*> >(mozilla::Variant<bool, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, double, JS::Error*>::destroy<mozilla::Variant<double, JS::Error*> >(mozilla::Variant<double, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinVariant, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinVariant, JS::Error*> >(mozilla::Variant<js::frontend::BinVariant, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*> >(mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, unsigned char, JS::Error*>::destroy<mozilla::Variant<unsigned char, JS::Error*> >(mozilla::Variant<unsigned char, JS::Error*>&) Unexecuted instantiation: void mozilla::detail::VariantImplementation<bool, 0ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::destroy<mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*> >(mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>&) |
233 | | |
234 | | template<typename Variant> |
235 | 0 | static bool equal(const Variant& aLhs, const Variant& aRhs) { |
236 | 0 | if (aLhs.template is<N>()) { |
237 | 0 | MOZ_ASSERT(aRhs.template is<N>()); |
238 | 0 | return aLhs.template as<N>() == aRhs.template as<N>(); |
239 | 0 | } else { |
240 | 0 | return Next::equal(aLhs, aRhs); |
241 | 0 | } |
242 | 0 | } Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::equal<mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> >(mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&, mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, nsTString<char>, char const**>::equal<mozilla::Variant<nsTString<char>, char const**> >(mozilla::Variant<nsTString<char>, char const**> const&, mozilla::Variant<nsTString<char>, char const**> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::equal<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::equal<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::equal<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, mozilla::image::TerminalState, mozilla::image::Yield>::equal<mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> >(mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> const&, mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::equal<mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> >(mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> const&, mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::equal<mozilla::Variant<JSAtom*, char16_t const*> >(mozilla::Variant<JSAtom*, char16_t const*> const&, mozilla::Variant<JSAtom*, char16_t const*> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::equal<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::equal<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::equal<mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::equal<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::equal<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::equal<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::equal<mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > >(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: bool mozilla::detail::VariantImplementation<bool, 0ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::equal<mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> >(mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> const&, mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> const&) |
243 | | |
244 | | template<typename Matcher, typename ConcreteVariant> |
245 | | static auto |
246 | | match(Matcher&& aMatcher, ConcreteVariant& aV) |
247 | | -> decltype(aMatcher.match(aV.template as<N>())) |
248 | 1.68M | { |
249 | 1.68M | if (aV.template is<N>()) { |
250 | 1.67M | return aMatcher.match(aV.template as<N>()); |
251 | 1.67M | } else { |
252 | 7.21k | // If you're seeing compilation errors here like "no matching |
253 | 7.21k | // function for call to 'match'" then that means that the |
254 | 7.21k | // Matcher doesn't exhaust all variant types. There must exist a |
255 | 7.21k | // Matcher::match(T&) for every variant type T. |
256 | 7.21k | // |
257 | 7.21k | // If you're seeing compilation errors here like "cannot |
258 | 7.21k | // initialize return object of type <...> with an rvalue of type |
259 | 7.21k | // <...>" then that means that the Matcher::match(T&) overloads |
260 | 7.21k | // are returning different types. They must all return the same |
261 | 7.21k | // Matcher::ReturnType type. |
262 | 7.21k | return Next::match(aMatcher, aV); |
263 | 7.21k | } |
264 | 1.68M | } Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<11ul>))())) mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<12ul>))())) mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<13ul>))())) mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<14ul>))())) mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<15ul>))())) mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<16ul>))())) mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<17ul>))())) mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<18ul>))())) mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(IPC::ParamTraits<mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> >::VariantWriter&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::match<IPC::ParamTraits<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >::VariantWriter&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const>(IPC::ParamTraits<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >::VariantWriter&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::match<IPC::ParamTraits<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >::VariantWriter&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const>(IPC::ParamTraits<mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> >::VariantWriter&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::GetBoolValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::GetBoolValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 3.92k | { | 249 | 3.92k | if (aV.template is<N>()) { | 250 | 3.92k | return aMatcher.match(aV.template as<N>()); | 251 | 3.92k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 3.92k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::GetIntValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::GetIntValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 226 | { | 249 | 226 | if (aV.template is<N>()) { | 250 | 226 | return aMatcher.match(aV.template as<N>()); | 251 | 226 | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 226 | } |
Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::GetBareStringValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::GetBareStringValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::Name() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::Name() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 6.90k | { | 249 | 6.90k | if (aV.template is<N>()) { | 250 | 6.90k | return aMatcher.match(aV.template as<N>()); | 251 | 6.90k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 6.90k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, char const*, nsTString<char> const>::match<nsPrefBranch::PrefName::PtrMatcher&, mozilla::Variant<char const*, nsTString<char> const> const>(nsPrefBranch::PrefName::PtrMatcher&, mozilla::Variant<char const*, nsTString<char> const> const&) Line | Count | Source | 248 | 6.90k | { | 249 | 6.90k | if (aV.template is<N>()) { | 250 | 0 | return aMatcher.match(aV.template as<N>()); | 251 | 6.90k | } else { | 252 | 6.90k | // If you're seeing compilation errors here like "no matching | 253 | 6.90k | // function for call to 'match'" then that means that the | 254 | 6.90k | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 6.90k | // Matcher::match(T&) for every variant type T. | 256 | 6.90k | // | 257 | 6.90k | // If you're seeing compilation errors here like "cannot | 258 | 6.90k | // initialize return object of type <...> with an rvalue of type | 259 | 6.90k | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 6.90k | // are returning different types. They must all return the same | 261 | 6.90k | // Matcher::ReturnType type. | 262 | 6.90k | return Next::match(aMatcher, aV); | 263 | 6.90k | } | 264 | 6.90k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, char const*, nsTString<char> const>::match<nsPrefBranch::PrefName::LenMatcher&, mozilla::Variant<char const*, nsTString<char> const> const>(nsPrefBranch::PrefName::LenMatcher&, mozilla::Variant<char const*, nsTString<char> const> const&) Line | Count | Source | 248 | 3 | { | 249 | 3 | if (aV.template is<N>()) { | 250 | 0 | return aMatcher.match(aV.template as<N>()); | 251 | 3 | } else { | 252 | 3 | // If you're seeing compilation errors here like "no matching | 253 | 3 | // function for call to 'match'" then that means that the | 254 | 3 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 3 | // Matcher::match(T&) for every variant type T. | 256 | 3 | // | 257 | 3 | // If you're seeing compilation errors here like "cannot | 258 | 3 | // initialize return object of type <...> with an rvalue of type | 259 | 3 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 3 | // are returning different types. They must all return the same | 261 | 3 | // Matcher::ReturnType type. | 262 | 3 | return Next::match(aMatcher, aV); | 263 | 3 | } | 264 | 3 | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::match<PrefsIter::Done()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref> >(PrefsIter::Done()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>&) Line | Count | Source | 248 | 6.90k | { | 249 | 6.90k | if (aV.template is<N>()) { | 250 | 6.90k | return aMatcher.match(aV.template as<N>()); | 251 | 6.90k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 6.90k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::match<PrefsIter::MakeEntry()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref> >(PrefsIter::MakeEntry()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>&) Line | Count | Source | 248 | 6.89k | { | 249 | 6.89k | if (aV.template is<N>()) { | 250 | 6.89k | return aMatcher.match(aV.template as<N>()); | 251 | 6.89k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 6.89k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::match<PrefsIter::NextEntry()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref> >(PrefsIter::NextEntry()::Matcher&, mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>&) Line | Count | Source | 248 | 6.89k | { | 249 | 6.89k | if (aV.template is<N>()) { | 250 | 6.89k | return aMatcher.match(aV.template as<N>()); | 251 | 6.89k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 6.89k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::NameString() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::NameString() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 3 | { | 249 | 3 | if (aV.template is<N>()) { | 250 | 3 | return aMatcher.match(aV.template as<N>()); | 251 | 3 | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 3 | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, char const*, nsTString<char> const>::match<nsPrefBranch::PrefName::CStringMatcher&, mozilla::Variant<char const*, nsTString<char> const> const>(nsPrefBranch::PrefName::CStringMatcher&, mozilla::Variant<char const*, nsTString<char> const> const&) Line | Count | Source | 248 | 71 | { | 249 | 71 | if (aV.template is<N>()) { | 250 | 0 | return aMatcher.match(aV.template as<N>()); | 251 | 71 | } else { | 252 | 71 | // If you're seeing compilation errors here like "no matching | 253 | 71 | // function for call to 'match'" then that means that the | 254 | 71 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 71 | // Matcher::match(T&) for every variant type T. | 256 | 71 | // | 257 | 71 | // If you're seeing compilation errors here like "cannot | 258 | 71 | // initialize return object of type <...> with an rvalue of type | 259 | 71 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 71 | // are returning different types. They must all return the same | 261 | 71 | // Matcher::ReturnType type. | 262 | 71 | return Next::match(aMatcher, aV); | 263 | 71 | } | 264 | 71 | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::HasDefaultValue() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::HasDefaultValue() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 4.18k | { | 249 | 4.18k | if (aV.template is<N>()) { | 250 | 4.18k | return aMatcher.match(aV.template as<N>()); | 251 | 4.18k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 4.18k | } |
Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::IsSticky() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::IsSticky() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::GetStringValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::GetStringValue(mozilla::PrefValueKind) const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 37 | { | 249 | 37 | if (aV.template is<N>()) { | 250 | 37 | return aMatcher.match(aV.template as<N>()); | 251 | 37 | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 37 | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::IsLocked() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::IsLocked() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 4.19k | { | 249 | 4.19k | if (aV.template is<N>()) { | 250 | 4.19k | return aMatcher.match(aV.template as<N>()); | 251 | 4.19k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 4.19k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::HasUserValue() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::HasUserValue() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 4.18k | { | 249 | 4.18k | if (aV.template is<N>()) { | 250 | 4.18k | return aMatcher.match(aV.template as<N>()); | 251 | 4.18k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 4.18k | } |
decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::Type() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::Type() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 248 | 11.0k | { | 249 | 11.0k | if (aV.template is<N>()) { | 250 | 11.0k | return aMatcher.match(aV.template as<N>()); | 251 | 11.0k | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 11.0k | } |
Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, Pref*, mozilla::SharedPrefMap::Pref>::match<PrefWrapper::DefaultChanged() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const>(PrefWrapper::DefaultChanged() const::Matcher&, mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::VariantWriter&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, int, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned int, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, long, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned long, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, nsTString<char>, bool>::match<IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const>(IPC::ParamTraits<mozilla::plugins::IpdlTuple::MaybeVariant<signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> >::LogMatcher&, mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<11ul>))())) mozilla::detail::VariantImplementation<unsigned char, 11ul, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<12ul>))())) mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::match<mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > >(mozilla::gfx::Setter&, mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::match<mozilla::gfx::Setter&, mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > >(mozilla::gfx::Setter&, mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<11ul>))())) mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<12ul>))())) mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<13ul>))())) mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<14ul>))())) mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<15ul>))())) mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<16ul>))())) mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<17ul>))())) mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<18ul>))())) mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterNodeFromPrimitiveDescription(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::DrawTarget*, nsTArray<RefPtr<mozilla::gfx::FilterNode> >&, nsTArray<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >&, nsTArray<RefPtr<mozilla::gfx::SourceSurface> >&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<11ul>))())) mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<12ul>))())) mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<13ul>))())) mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<14ul>))())) mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<15ul>))())) mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<16ul>))())) mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<17ul>))())) mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<18ul>))())) mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::ResultChangeRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<11ul>))())) mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<12ul>))())) mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<13ul>))())) mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<14ul>))())) mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<15ul>))())) mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<16ul>))())) mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<17ul>))())) mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<18ul>))())) mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::SourceNeededRegionForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> const&, int)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<11ul>))())) mozilla::detail::VariantImplementation<unsigned char, 11ul, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<12ul>))())) mozilla::detail::VariantImplementation<unsigned char, 12ul, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<13ul>))())) mozilla::detail::VariantImplementation<unsigned char, 13ul, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<14ul>))())) mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<15ul>))())) mozilla::detail::VariantImplementation<unsigned char, 15ul, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<16ul>))())) mozilla::detail::VariantImplementation<unsigned char, 16ul, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<17ul>))())) mozilla::detail::VariantImplementation<unsigned char, 17ul, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<18ul>))())) mozilla::detail::VariantImplementation<unsigned char, 18ul, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::match<mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const>(mozilla::gfx::FilterSupport::PostFilterExtentsForPrimitive(mozilla::gfx::FilterPrimitiveDescription const&, nsTArray<mozilla::gfx::IntRegionTyped<mozilla::gfx::UnknownUnits> > const&)::PrimitiveAttributesMatcher&, mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::match<mozilla::layers::FocusState::Update(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&)::FocusTargetDataMatcher&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const>(mozilla::layers::FocusState::Update(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&)::FocusTargetDataMatcher&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::match<mozilla::layers::FocusState::Update(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&)::FocusTargetDataMatcher&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const>(mozilla::layers::FocusState::Update(mozilla::layers::LayersId, mozilla::layers::LayersId, mozilla::layers::FocusTarget const&)::FocusTargetDataMatcher&, mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<11ul>))())) mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<12ul>))())) mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<13ul>))())) mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<14ul>))())) mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<15ul>))())) mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcher&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<6ul>))())) mozilla::detail::VariantImplementation<unsigned char, 6ul, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<7ul>))())) mozilla::detail::VariantImplementation<unsigned char, 7ul, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<8ul>))())) mozilla::detail::VariantImplementation<unsigned char, 8ul, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<9ul>))())) mozilla::detail::VariantImplementation<unsigned char, 9ul, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<10ul>))())) mozilla::detail::VariantImplementation<unsigned char, 10ul, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<11ul>))())) mozilla::detail::VariantImplementation<unsigned char, 11ul, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<12ul>))())) mozilla::detail::VariantImplementation<unsigned char, 12ul, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<13ul>))())) mozilla::detail::VariantImplementation<unsigned char, 13ul, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<14ul>))())) mozilla::detail::VariantImplementation<unsigned char, 14ul, mozilla::DDRange, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<15ul>))())) mozilla::detail::VariantImplementation<unsigned char, 15ul, nsresult, mozilla::MediaResult>::match<mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const>(mozilla::LogValueMatcherJson&, mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::Matches(mozilla::dom::quota::OriginScope const&) const::Matcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::Matches(mozilla::dom::quota::OriginScope const&) const::Matcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesOrigin(mozilla::dom::quota::OriginScope::Origin const&) const::OriginMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesOrigin(mozilla::dom::quota::OriginScope::Origin const&) const::OriginMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesOrigin(mozilla::dom::quota::OriginScope::Origin const&) const::OriginMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesOrigin(mozilla::dom::quota::OriginScope::Origin const&) const::OriginMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesOrigin(mozilla::dom::quota::OriginScope::Origin const&) const::OriginMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesOrigin(mozilla::dom::quota::OriginScope::Origin const&) const::OriginMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::Matches(mozilla::dom::quota::OriginScope const&) const::Matcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::Matches(mozilla::dom::quota::OriginScope const&) const::Matcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesPrefix(mozilla::dom::quota::OriginScope::Prefix const&) const::PrefixMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesPrefix(mozilla::dom::quota::OriginScope::Prefix const&) const::PrefixMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesPrefix(mozilla::dom::quota::OriginScope::Prefix const&) const::PrefixMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesPrefix(mozilla::dom::quota::OriginScope::Prefix const&) const::PrefixMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesPrefix(mozilla::dom::quota::OriginScope::Prefix const&) const::PrefixMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesPrefix(mozilla::dom::quota::OriginScope::Prefix const&) const::PrefixMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::Matches(mozilla::dom::quota::OriginScope const&) const::Matcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::Matches(mozilla::dom::quota::OriginScope const&) const::Matcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesPattern(mozilla::dom::quota::OriginScope::Pattern const&) const::PatternMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesPattern(mozilla::dom::quota::OriginScope::Pattern const&) const::PatternMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesPattern(mozilla::dom::quota::OriginScope::Pattern const&) const::PatternMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesPattern(mozilla::dom::quota::OriginScope::Pattern const&) const::PatternMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::match<mozilla::dom::quota::OriginScope::MatchesPattern(mozilla::dom::quota::OriginScope::Pattern const&) const::PatternMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const>(mozilla::dom::quota::OriginScope::MatchesPattern(mozilla::dom::quota::OriginScope::Pattern const&) const::PatternMatcher&, mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: Unified_cpp_extensions0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::match<mozilla::extensions::DocInfo::IsTopLevel() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const>(mozilla::extensions::DocInfo::IsTopLevel() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const&) Unexecuted instantiation: Unified_cpp_extensions0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::match<mozilla::extensions::DocInfo::ShouldMatchActiveTabPermission() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const>(mozilla::extensions::DocInfo::ShouldMatchActiveTabPermission() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const&) Unexecuted instantiation: Unified_cpp_extensions0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::match<mozilla::extensions::DocInfo::FrameID() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const>(mozilla::extensions::DocInfo::FrameID() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const&) Unexecuted instantiation: Unified_cpp_extensions0.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::match<mozilla::extensions::DocInfo::Principal() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const>(mozilla::extensions::DocInfo::Principal() const::Matcher&, mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::HashPolicy::HashingMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::HashPolicy::HashingMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::HashPolicy::HashingMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::HashPolicy::HashingMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::HashPolicy::EqualityMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::HashPolicy::EqualityMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::HashPolicy::EqualityMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::HashPolicy::EqualityMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(mozilla::devtools::TwoByteString::CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > >(mozilla::devtools::TwoByteString::CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::match<mozilla::devtools::TwoByteString::AsTwoByteStringMatcher&, mozilla::Variant<JSAtom*, char16_t const*> >(mozilla::devtools::TwoByteString::AsTwoByteStringMatcher&, mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::IsNonNullMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::IsNonNullMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::match<mozilla::devtools::TwoByteString::IsNonNullMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const>(mozilla::devtools::TwoByteString::IsNonNullMatcher&, mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::match<mozilla::devtools::GetOrInternStringMatcher<char16_t, mozilla::Vector<mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> >, 0ul, mozilla::MallocAllocPolicy> >&, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long> >(mozilla::devtools::GetOrInternStringMatcher<char16_t, mozilla::Vector<mozilla::UniquePtr<char16_t [], mozilla::detail::FreePolicy<char16_t []> >, 0ul, mozilla::MallocAllocPolicy> >&, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::match<mozilla::devtools::GetOrInternStringMatcher<char, mozilla::Vector<mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> >, 0ul, mozilla::MallocAllocPolicy> >&, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long> >(mozilla::devtools::GetOrInternStringMatcher<char, mozilla::Vector<mozilla::UniquePtr<char [], mozilla::detail::FreePolicy<char []> >, 0ul, mozilla::MallocAllocPolicy> >&, mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&) decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<js::ScriptSource::length() const::LengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> const>(js::ScriptSource::length() const::LengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> const&) Line | Count | Source | 248 | 18 | { | 249 | 18 | if (aV.template is<N>()) { | 250 | 0 | return aMatcher.match(aV.template as<N>()); | 251 | 18 | } else { | 252 | 18 | // If you're seeing compilation errors here like "no matching | 253 | 18 | // function for call to 'match'" then that means that the | 254 | 18 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 18 | // Matcher::match(T&) for every variant type T. | 256 | 18 | // | 257 | 18 | // If you're seeing compilation errors here like "cannot | 258 | 18 | // initialize return object of type <...> with an rvalue of type | 259 | 18 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 18 | // are returning different types. They must all return the same | 261 | 18 | // Matcher::ReturnType type. | 262 | 18 | return Next::match(aMatcher, aV); | 263 | 18 | } | 264 | 18 | } |
decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<js::ScriptSource::length() const::LengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> const>(js::ScriptSource::length() const::LengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> const&) Line | Count | Source | 248 | 18 | { | 249 | 18 | if (aV.template is<N>()) { | 250 | 18 | return aMatcher.match(aV.template as<N>()); | 251 | 18 | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 18 | } |
_ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIZNSG_11compartmentEvE21GetCompartmentFunctorEEDTclfp_scPS3_LDnEEET_E14WrappedMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSP_RT0_ Line | Count | Source | 248 | 1.62M | { | 249 | 1.62M | if (aV.template is<N>()) { | 250 | 1.62M | return aMatcher.match(aV.template as<N>()); | 251 | 1.62M | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 1.62M | } |
Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIZNSG_11compartmentEvE21GetCompartmentFunctorEEDTclfp_scPSF_LDnEEET_E14WrappedMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSP_RT0_ Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_14applyToWrappedIZNSE_11compartmentEvE21GetCompartmentFunctorEEDTclfp_scPSD_LDnEEET_E14WrappedMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSN_RT0_ Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_14applyToWrappedIZNSB_11compartmentEvE21GetCompartmentFunctorEEDTclfp_scPSA_LDnEEET_E14WrappedMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSK_RT0_ Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::match<js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const>(js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::match<js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const>(js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::match<js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const>(js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::match<js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const>(js::CrossCompartmentKey::Hasher::HashFunctor&, mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIZNKSG_9isTenuredEvE16IsTenuredFunctorEEDTclfp_scPS3_LDnEEET_E14WrappedMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSP_RT0_ Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIZNKSG_9isTenuredEvE16IsTenuredFunctorEEDTclfp_scPSF_LDnEEET_E14WrappedMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSP_RT0_ Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_14applyToWrappedIZNKSE_9isTenuredEvE16IsTenuredFunctorEEDTclfp_scPSD_LDnEEET_E14WrappedMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSN_RT0_ Unexecuted instantiation: _ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_14applyToWrappedIZNKSB_9isTenuredEvE16IsTenuredFunctorEEDTclfp_scPSA_LDnEEET_E14WrappedMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSK_RT0_ Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::HasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const>(js::LiveSavedFrameCache::FramePtr::HasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::HasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const>(js::LiveSavedFrameCache::FramePtr::HasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::HasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const>(js::LiveSavedFrameCache::FramePtr::HasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::SetHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(js::LiveSavedFrameCache::FramePtr::SetHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::SetHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(js::LiveSavedFrameCache::FramePtr::SetHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::SetHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(js::LiveSavedFrameCache::FramePtr::SetHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::ClearHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(js::LiveSavedFrameCache::FramePtr::ClearHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::ClearHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(js::LiveSavedFrameCache::FramePtr::ClearHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::match<js::LiveSavedFrameCache::FramePtr::ClearHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> >(js::LiveSavedFrameCache::FramePtr::ClearHasCachedMatcher&, mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&) Unexecuted instantiation: Unified_cpp_js_src10.cpp:_ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_120TraceIncomingFunctorEEEDTclfp_scPS3_LDnEEET_E14WrappedMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src10.cpp:_ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_120TraceIncomingFunctorEEEDTclfp_scPSF_LDnEEET_E14WrappedMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src10.cpp:_ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_14applyToWrappedIN12_GLOBAL__N_120TraceIncomingFunctorEEEDTclfp_scPSD_LDnEEET_E14WrappedMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSO_RT0_ Unexecuted instantiation: Unified_cpp_js_src10.cpp:_ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_14applyToWrappedIN12_GLOBAL__N_120TraceIncomingFunctorEEEDTclfp_scPSA_LDnEEET_E14WrappedMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSL_RT0_ Unexecuted instantiation: Unified_cpp_js_src27.cpp:_ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_124VisitGrayCallbackFunctorEEEDTclfp_scPS3_LDnEEET_E14WrappedMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src27.cpp:_ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_124VisitGrayCallbackFunctorEEEDTclfp_scPSF_LDnEEET_E14WrappedMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src27.cpp:_ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_14applyToWrappedIN12_GLOBAL__N_124VisitGrayCallbackFunctorEEEDTclfp_scPSD_LDnEEET_E14WrappedMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSO_RT0_ Unexecuted instantiation: Unified_cpp_js_src27.cpp:_ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_14applyToWrappedIN12_GLOBAL__N_124VisitGrayCallbackFunctorEEEDTclfp_scPSA_LDnEEET_E14WrappedMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSL_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS3_LDnEEET_E14WrappedMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPSF_LDnEEET_E14WrappedMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_14applyToWrappedIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPSD_LDnEEET_E14WrappedMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSO_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_14applyToWrappedIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPSA_LDnEEET_E14WrappedMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSL_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_15applyToDebuggerIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS9_LDnEEET_E15DebuggerMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_15applyToDebuggerIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS7_LDnEEET_E15DebuggerMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_15applyToDebuggerIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS5_LDnEEET_E15DebuggerMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSO_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_15applyToDebuggerIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS5_LDnEEET_E15DebuggerMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSL_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS3_LDnEEET_E14WrappedMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPSF_LDnEEET_E14WrappedMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_14applyToWrappedIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPSD_LDnEEET_E14WrappedMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSO_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_14applyToWrappedIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPSA_LDnEEET_E14WrappedMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSL_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_15applyToDebuggerIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS9_LDnEEET_E15DebuggerMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_15applyToDebuggerIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS7_LDnEEET_E15DebuggerMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_15applyToDebuggerIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS5_LDnEEET_E15DebuggerMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSO_RT0_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_15applyToDebuggerIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS5_LDnEEET_E15DebuggerMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSL_RT0_ Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Line | Count | Source | 248 | 40 | { | 249 | 40 | if (aV.template is<N>()) { | 250 | 4 | return aMatcher.match(aV.template as<N>()); | 251 | 36 | } else { | 252 | 36 | // If you're seeing compilation errors here like "no matching | 253 | 36 | // function for call to 'match'" then that means that the | 254 | 36 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 36 | // Matcher::match(T&) for every variant type T. | 256 | 36 | // | 257 | 36 | // If you're seeing compilation errors here like "cannot | 258 | 36 | // initialize return object of type <...> with an rvalue of type | 259 | 36 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 36 | // are returning different types. They must all return the same | 261 | 36 | // Matcher::ReturnType type. | 262 | 36 | return Next::match(aMatcher, aV); | 263 | 36 | } | 264 | 40 | } |
Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Line | Count | Source | 248 | 36 | { | 249 | 36 | if (aV.template is<N>()) { | 250 | 0 | return aMatcher.match(aV.template as<N>()); | 251 | 36 | } else { | 252 | 36 | // If you're seeing compilation errors here like "no matching | 253 | 36 | // function for call to 'match'" then that means that the | 254 | 36 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 36 | // Matcher::match(T&) for every variant type T. | 256 | 36 | // | 257 | 36 | // If you're seeing compilation errors here like "cannot | 258 | 36 | // initialize return object of type <...> with an rvalue of type | 259 | 36 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 36 | // are returning different types. They must all return the same | 261 | 36 | // Matcher::ReturnType type. | 262 | 36 | return Next::match(aMatcher, aV); | 263 | 36 | } | 264 | 36 | } |
Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Line | Count | Source | 248 | 36 | { | 249 | 36 | if (aV.template is<N>()) { | 250 | 0 | return aMatcher.match(aV.template as<N>()); | 251 | 36 | } else { | 252 | 36 | // If you're seeing compilation errors here like "no matching | 253 | 36 | // function for call to 'match'" then that means that the | 254 | 36 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 36 | // Matcher::match(T&) for every variant type T. | 256 | 36 | // | 257 | 36 | // If you're seeing compilation errors here like "cannot | 258 | 36 | // initialize return object of type <...> with an rvalue of type | 259 | 36 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 36 | // are returning different types. They must all return the same | 261 | 36 | // Matcher::ReturnType type. | 262 | 36 | return Next::match(aMatcher, aV); | 263 | 36 | } | 264 | 36 | } |
Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Line | Count | Source | 248 | 36 | { | 249 | 36 | if (aV.template is<N>()) { | 250 | 36 | return aMatcher.match(aV.template as<N>()); | 251 | 36 | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 36 | } |
Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>::match<JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(JitDataStructuresExist(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>::match<IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(IonBuilderMatches(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&, js::jit::IonBuilder*)::BuilderMatches&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Line | Count | Source | 248 | 40 | { | 249 | 40 | if (aV.template is<N>()) { | 250 | 4 | return aMatcher.match(aV.template as<N>()); | 251 | 36 | } else { | 252 | 36 | // If you're seeing compilation errors here like "no matching | 253 | 36 | // function for call to 'match'" then that means that the | 254 | 36 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 36 | // Matcher::match(T&) for every variant type T. | 256 | 36 | // | 257 | 36 | // If you're seeing compilation errors here like "cannot | 258 | 36 | // initialize return object of type <...> with an rvalue of type | 259 | 36 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 36 | // are returning different types. They must all return the same | 261 | 36 | // Matcher::ReturnType type. | 262 | 36 | return Next::match(aMatcher, aV); | 263 | 36 | } | 264 | 40 | } |
Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Line | Count | Source | 248 | 36 | { | 249 | 36 | if (aV.template is<N>()) { | 250 | 0 | return aMatcher.match(aV.template as<N>()); | 251 | 36 | } else { | 252 | 36 | // If you're seeing compilation errors here like "no matching | 253 | 36 | // function for call to 'match'" then that means that the | 254 | 36 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 36 | // Matcher::match(T&) for every variant type T. | 256 | 36 | // | 257 | 36 | // If you're seeing compilation errors here like "cannot | 258 | 36 | // initialize return object of type <...> with an rvalue of type | 259 | 36 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 36 | // are returning different types. They must all return the same | 261 | 36 | // Matcher::ReturnType type. | 262 | 36 | return Next::match(aMatcher, aV); | 263 | 36 | } | 264 | 36 | } |
Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<2ul>))())) mozilla::detail::VariantImplementation<unsigned char, 2ul, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Line | Count | Source | 248 | 36 | { | 249 | 36 | if (aV.template is<N>()) { | 250 | 0 | return aMatcher.match(aV.template as<N>()); | 251 | 36 | } else { | 252 | 36 | // If you're seeing compilation errors here like "no matching | 253 | 36 | // function for call to 'match'" then that means that the | 254 | 36 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 36 | // Matcher::match(T&) for every variant type T. | 256 | 36 | // | 257 | 36 | // If you're seeing compilation errors here like "cannot | 258 | 36 | // initialize return object of type <...> with an rvalue of type | 259 | 36 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 36 | // are returning different types. They must all return the same | 261 | 36 | // Matcher::ReturnType type. | 262 | 36 | return Next::match(aMatcher, aV); | 263 | 36 | } | 264 | 36 | } |
Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<3ul>))())) mozilla::detail::VariantImplementation<unsigned char, 3ul, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Line | Count | Source | 248 | 36 | { | 249 | 36 | if (aV.template is<N>()) { | 250 | 36 | return aMatcher.match(aV.template as<N>()); | 251 | 36 | } else { | 252 | 0 | // If you're seeing compilation errors here like "no matching | 253 | 0 | // function for call to 'match'" then that means that the | 254 | 0 | // Matcher doesn't exhaust all variant types. There must exist a | 255 | 0 | // Matcher::match(T&) for every variant type T. | 256 | 0 | // | 257 | 0 | // If you're seeing compilation errors here like "cannot | 258 | 0 | // initialize return object of type <...> with an rvalue of type | 259 | 0 | // <...>" then that means that the Matcher::match(T&) overloads | 260 | 0 | // are returning different types. They must all return the same | 261 | 0 | // Matcher::ReturnType type. | 262 | 0 | return Next::match(aMatcher, aV); | 263 | 0 | } | 264 | 36 | } |
Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<4ul>))())) mozilla::detail::VariantImplementation<unsigned char, 4ul, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::match<GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: Unified_cpp_js_src35.cpp:decltype (({parm#1}.match)(({parm#2}.(as<5ul>))())) mozilla::detail::VariantImplementation<unsigned char, 5ul, js::CompilationsUsingNursery, js::AllCompilations>::match<GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const>(GetSelectorRuntime(mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&)::Matcher&, mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations> const&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)0>(js::XDRState<(js::XDRMode)0>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::CompressedLengthMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::match<mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed> >(mozilla::Result<mozilla::Ok, JS::TranscodeResult> js::ScriptSource::performXDR<(js::XDRMode)1>(js::XDRState<(js::XDRMode)1>*)::RawDataMatcher&, mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&) Unexecuted instantiation: Unified_cpp_js_src39.cpp:decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<unsigned char, 0ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::match<js::captureIsSatisfied(JSContext*, JSPrincipals*, JSAtom const*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&)::Matcher&, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(js::captureIsSatisfied(JSContext*, JSPrincipals*, JSAtom const*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&)::Matcher&, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&) Unexecuted instantiation: Unified_cpp_js_src39.cpp:decltype (({parm#1}.match)(({parm#2}.(as<1ul>))())) mozilla::detail::VariantImplementation<unsigned char, 1ul, JS::MaxFrames, JS::FirstSubsumedFrame>::match<js::captureIsSatisfied(JSContext*, JSPrincipals*, JSAtom const*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&)::Matcher&, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame> >(js::captureIsSatisfied(JSContext*, JSPrincipals*, JSAtom const*, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&)::Matcher&, mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::match<JS::ubi::AtomizingMatcher&, mozilla::Variant<JSAtom*, char16_t const*> >(JS::ubi::AtomizingMatcher&, mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::match<CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*> >(CopyToBufferMatcher&, mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: decltype (({parm#1}.match)(({parm#2}.(as<0ul>))())) mozilla::detail::VariantImplementation<bool, 0ul, JSAtom*, char16_t const*>::match<LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*> >(LengthMatcher&, mozilla::Variant<JSAtom*, char16_t const*>&) Unexecuted instantiation: Unified_cpp_js_src9.cpp:_ZN7mozilla6detail21VariantImplementationIhLm0EJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS6_IJS9_PNS7_10LazyScriptEEEENS6_IJS9_S3_NS7_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_122AddOutgoingEdgeFunctorEEEDTclfp_scPS3_LDnEEET_E14WrappedMatcherNS_7VariantIJS3_S5_SC_SF_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm0EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src9.cpp:_ZN7mozilla6detail21VariantImplementationIhLm1EJP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS4_IJS7_PNS5_10LazyScriptEEEENS4_IJS7_P8JSObjectNS5_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSG_14applyToWrappedIN12_GLOBAL__N_122AddOutgoingEdgeFunctorEEEDTclfp_scPSF_LDnEEET_E14WrappedMatcherNS_7VariantIJSF_S3_SA_SD_SI_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm1EEEEEEOSQ_RT0_ Unexecuted instantiation: Unified_cpp_js_src9.cpp:_ZN7mozilla6detail21VariantImplementationIhLm2EJNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS2_IJS5_PNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSE_14applyToWrappedIN12_GLOBAL__N_122AddOutgoingEdgeFunctorEEEDTclfp_scPSD_LDnEEET_E14WrappedMatcherNS_7VariantIJSD_P8JSStringS8_SB_SG_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm2EEEEEEOSO_RT0_ Unexecuted instantiation: Unified_cpp_js_src9.cpp:_ZN7mozilla6detail21VariantImplementationIhLm3EJNS_5TupleIJPN2js12NativeObjectEPNS3_10LazyScriptEEEENS2_IJS5_P8JSObjectNS3_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSB_14applyToWrappedIN12_GLOBAL__N_122AddOutgoingEdgeFunctorEEEDTclfp_scPSA_LDnEEET_E14WrappedMatcherNS_7VariantIJSA_P8JSStringNS2_IJS5_P8JSScriptEEES8_SD_EEEEEDTcldtfp_5matchcldtfp0_2asIXLm3EEEEEEOSL_RT0_ |
265 | | }; |
266 | | |
267 | | /** |
268 | | * AsVariantTemporary stores a value of type T to allow construction of a |
269 | | * Variant value via type inference. Because T is copied and there's no |
270 | | * guarantee that the copy can be elided, AsVariantTemporary is best used with |
271 | | * primitive or very small types. |
272 | | */ |
273 | | template <typename T> |
274 | | struct AsVariantTemporary |
275 | | { |
276 | | explicit AsVariantTemporary(const T& aValue) |
277 | | : mValue(aValue) |
278 | 18.0k | {} Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned long&>::AsVariantTemporary(unsigned long&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned long const&>::AsVariantTemporary(unsigned long const&) mozilla::detail::AsVariantTemporary<Pref*&>::AsVariantTemporary(Pref*&) Line | Count | Source | 278 | 18.0k | {} |
Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::SharedPrefMap::Pref const&>::AsVariantTemporary(mozilla::SharedPrefMap::Pref const&) mozilla::detail::AsVariantTemporary<char const**&>::AsVariantTemporary(char const**&) Line | Count | Source | 278 | 37 | {} |
Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::NoFocusTarget&>::AsVariantTemporary(mozilla::layers::FocusTarget::NoFocusTarget&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::ScrollTargets&>::AsVariantTemporary(mozilla::layers::FocusTarget::ScrollTargets&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::LayersId&>::AsVariantTemporary(mozilla::layers::LayersId&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned int&>::AsVariantTemporary(unsigned int&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsTString<char16_t>&>::AsVariantTemporary(nsTString<char16_t>&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<bool&>::AsVariantTemporary(bool&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsTString<char>&>::AsVariantTemporary(nsTString<char>&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<long&>::AsVariantTemporary(long&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<int&>::AsVariantTemporary(int&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned short&>::AsVariantTemporary(unsigned short&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<short&>::AsVariantTemporary(short&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned char&>::AsVariantTemporary(unsigned char&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<signed char&>::AsVariantTemporary(signed char&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::plugins::IpdlTuple::InvalidType&>::AsVariantTemporary(mozilla::plugins::IpdlTuple::InvalidType&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned int const&>::AsVariantTemporary(unsigned int const&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::WorkerPrivate*&>::AsVariantTemporary(mozilla::dom::WorkerPrivate*&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWindowState const&>::AsVariantTemporary(mozilla::dom::ClientWindowState const&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWorkerState const&>::AsVariantTemporary(mozilla::dom::ClientWorkerState const&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>&>::AsVariantTemporary(nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>&>::AsVariantTemporary(nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::GaussianBlurAttributes&>::AsVariantTemporary(mozilla::gfx::GaussianBlurAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsILoadInfo*&>::AsVariantTemporary(nsILoadInfo*&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsPIDOMWindowOuter*&>::AsVariantTemporary(nsPIDOMWindowOuter*&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::image::WriteState&>::AsVariantTemporary(mozilla::image::WriteState&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<js::WasmInstanceObject*&>::AsVariantTemporary(js::WasmInstanceObject*&) |
279 | | |
280 | | template<typename U> |
281 | | explicit AsVariantTemporary(U&& aValue) |
282 | | : mValue(std::forward<U>(aValue)) |
283 | 1.41k | {} Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::CooperativeThreadPool::AllThreadsBlocked>::AsVariantTemporary<mozilla::CooperativeThreadPool::AllThreadsBlocked>(mozilla::CooperativeThreadPool::AllThreadsBlocked&&) mozilla::detail::AsVariantTemporary<PrefsHashIter::Elem>::AsVariantTemporary<PrefsHashIter::Elem>(PrefsHashIter::Elem&&) Line | Count | Source | 283 | 6 | {} |
Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::SharedPrefMap::Pref>::AsVariantTemporary<mozilla::SharedPrefMap::Pref>(mozilla::SharedPrefMap::Pref&&) mozilla::detail::AsVariantTemporary<nsTString<char> >::AsVariantTemporary<nsTString<char> >(nsTString<char>&&) Line | Count | Source | 283 | 1.40k | {} |
Unexecuted instantiation: mozilla::detail::AsVariantTemporary<char const*>::AsVariantTemporary<char const*>(char const*&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::NoFocusTarget>::AsVariantTemporary<mozilla::layers::FocusTarget::NoFocusTarget>(mozilla::layers::FocusTarget::NoFocusTarget&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::LayersId>::AsVariantTemporary<mozilla::layers::LayersId>(mozilla::layers::LayersId&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned int>::AsVariantTemporary<unsigned int>(unsigned int&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned char>::AsVariantTemporary<unsigned char>(unsigned char&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::image::WriteState>::AsVariantTemporary<mozilla::image::WriteState>(mozilla::image::WriteState&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::Nothing>::AsVariantTemporary<mozilla::Nothing>(mozilla::Nothing&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<RefPtr<nsPIDOMWindowInner> >::AsVariantTemporary<RefPtr<nsPIDOMWindowInner> >(RefPtr<nsPIDOMWindowInner>&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsCOMPtr<nsIDocShell> >::AsVariantTemporary<nsCOMPtr<nsIDocShell> >(nsCOMPtr<nsIDocShell>&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWindowState>::AsVariantTemporary<mozilla::dom::ClientWindowState>(mozilla::dom::ClientWindowState&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWorkerState>::AsVariantTemporary<mozilla::dom::ClientWorkerState>(mozilla::dom::ClientWorkerState&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Origin>::AsVariantTemporary<mozilla::dom::quota::OriginScope::Origin>(mozilla::dom::quota::OriginScope::Origin&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Prefix>::AsVariantTemporary<mozilla::dom::quota::OriginScope::Prefix>(mozilla::dom::quota::OriginScope::Prefix&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Pattern>::AsVariantTemporary<mozilla::dom::quota::OriginScope::Pattern>(mozilla::dom::quota::OriginScope::Pattern&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::BlendAttributes>::AsVariantTemporary<mozilla::gfx::BlendAttributes>(mozilla::gfx::BlendAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ColorMatrixAttributes>::AsVariantTemporary<mozilla::gfx::ColorMatrixAttributes>(mozilla::gfx::ColorMatrixAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ComponentTransferAttributes>::AsVariantTemporary<mozilla::gfx::ComponentTransferAttributes>(mozilla::gfx::ComponentTransferAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::CompositeAttributes>::AsVariantTemporary<mozilla::gfx::CompositeAttributes>(mozilla::gfx::CompositeAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ConvolveMatrixAttributes>::AsVariantTemporary<mozilla::gfx::ConvolveMatrixAttributes>(mozilla::gfx::ConvolveMatrixAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DiffuseLightingAttributes>::AsVariantTemporary<mozilla::gfx::DiffuseLightingAttributes>(mozilla::gfx::DiffuseLightingAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::OffsetAttributes>::AsVariantTemporary<mozilla::gfx::OffsetAttributes>(mozilla::gfx::OffsetAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DisplacementMapAttributes>::AsVariantTemporary<mozilla::gfx::DisplacementMapAttributes>(mozilla::gfx::DisplacementMapAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DropShadowAttributes>::AsVariantTemporary<mozilla::gfx::DropShadowAttributes>(mozilla::gfx::DropShadowAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::FloodAttributes>::AsVariantTemporary<mozilla::gfx::FloodAttributes>(mozilla::gfx::FloodAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::GaussianBlurAttributes>::AsVariantTemporary<mozilla::gfx::GaussianBlurAttributes>(mozilla::gfx::GaussianBlurAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ImageAttributes>::AsVariantTemporary<mozilla::gfx::ImageAttributes>(mozilla::gfx::ImageAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::MergeAttributes>::AsVariantTemporary<mozilla::gfx::MergeAttributes>(mozilla::gfx::MergeAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::MorphologyAttributes>::AsVariantTemporary<mozilla::gfx::MorphologyAttributes>(mozilla::gfx::MorphologyAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::SpecularLightingAttributes>::AsVariantTemporary<mozilla::gfx::SpecularLightingAttributes>(mozilla::gfx::SpecularLightingAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::TileAttributes>::AsVariantTemporary<mozilla::gfx::TileAttributes>(mozilla::gfx::TileAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::TurbulenceAttributes>::AsVariantTemporary<mozilla::gfx::TurbulenceAttributes>(mozilla::gfx::TurbulenceAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ipc::StructuredCloneData>::AsVariantTemporary<mozilla::dom::ipc::StructuredCloneData>(mozilla::dom::ipc::StructuredCloneData&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::OpacityAttributes>::AsVariantTemporary<mozilla::gfx::OpacityAttributes>(mozilla::gfx::OpacityAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ToAlphaAttributes>::AsVariantTemporary<mozilla::gfx::ToAlphaAttributes>(mozilla::gfx::ToAlphaAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Null>::AsVariantTemporary<mozilla::dom::quota::OriginScope::Null>(mozilla::dom::quota::OriginScope::Null&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::UniquePtr<char [], JS::FreePolicy> >::AsVariantTemporary<mozilla::UniquePtr<char [], JS::FreePolicy> >(mozilla::UniquePtr<char [], JS::FreePolicy>&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<js::ScriptSourceObject*>::AsVariantTemporary<js::ScriptSourceObject*>(js::ScriptSourceObject*&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<js::WasmInstanceObject*>::AsVariantTemporary<js::WasmInstanceObject*>(js::WasmInstanceObject*&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<JSScript*>::AsVariantTemporary<JSScript*>(JSScript*&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<js::LazyScript*>::AsVariantTemporary<js::LazyScript*>(js::LazyScript*&&) |
284 | | |
285 | | AsVariantTemporary(const AsVariantTemporary& aOther) |
286 | | : mValue(aOther.mValue) |
287 | | {} |
288 | | |
289 | | AsVariantTemporary(AsVariantTemporary&& aOther) |
290 | | : mValue(std::move(aOther.mValue)) |
291 | 0 | {} Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned int&>::AsVariantTemporary(mozilla::detail::AsVariantTemporary<unsigned int&>&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsTString<char16_t>&>::AsVariantTemporary(mozilla::detail::AsVariantTemporary<nsTString<char16_t>&>&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<bool&>::AsVariantTemporary(mozilla::detail::AsVariantTemporary<bool&>&&) |
292 | | |
293 | | AsVariantTemporary() = delete; |
294 | | void operator=(const AsVariantTemporary&) = delete; |
295 | | void operator=(AsVariantTemporary&&) = delete; |
296 | | |
297 | | typename RemoveConst<typename RemoveReference<T>::Type>::Type mValue; |
298 | | }; |
299 | | |
300 | | } // namespace detail |
301 | | |
302 | | // Used to unambiguously specify one of the Variant's type. |
303 | | template<typename T> struct VariantType { using Type = T; }; |
304 | | |
305 | | // Used to specify one of the Variant's type by index. |
306 | | template<size_t N> struct VariantIndex { static constexpr size_t index = N; }; |
307 | | |
308 | | /** |
309 | | * # mozilla::Variant |
310 | | * |
311 | | * A variant / tagged union / heterogenous disjoint union / sum-type template |
312 | | * class. Similar in concept to (but not derived from) `boost::variant`. |
313 | | * |
314 | | * Sometimes, you may wish to use a C union with non-POD types. However, this is |
315 | | * forbidden in C++ because it is not clear which type in the union should have |
316 | | * its constructor and destructor run on creation and deletion |
317 | | * respectively. This is the problem that `mozilla::Variant` solves. |
318 | | * |
319 | | * ## Usage |
320 | | * |
321 | | * A `mozilla::Variant` instance is constructed (via move or copy) from one of |
322 | | * its variant types (ignoring const and references). It does *not* support |
323 | | * construction from subclasses of variant types or types that coerce to one of |
324 | | * the variant types. |
325 | | * |
326 | | * Variant<char, uint32_t> v1('a'); |
327 | | * Variant<UniquePtr<A>, B, C> v2(MakeUnique<A>()); |
328 | | * Variant<bool, char> v3(VariantType<char>, 0); // disambiguation needed |
329 | | * Variant<int, int> v4(VariantIndex<1>, 0); // 2nd int |
330 | | * |
331 | | * Because specifying the full type of a Variant value is often verbose, |
332 | | * there are two easier ways to construct values: |
333 | | * |
334 | | * A. AsVariant() can be used to construct a Variant value using type inference |
335 | | * in contexts such as expressions or when returning values from functions. |
336 | | * Because AsVariant() must copy or move the value into a temporary and this |
337 | | * cannot necessarily be elided by the compiler, it's mostly appropriate only |
338 | | * for use with primitive or very small types. |
339 | | * |
340 | | * Variant<char, uint32_t> Foo() { return AsVariant('x'); } |
341 | | * // ... |
342 | | * Variant<char, uint32_t> v1 = Foo(); // v1 holds char('x'). |
343 | | * |
344 | | * B. Brace-construction with VariantType or VariantIndex; this also allows |
345 | | * in-place construction with any number of arguments. |
346 | | * |
347 | | * struct AB { AB(int, int){...} }; |
348 | | * static Variant<AB, bool> foo() |
349 | | * { |
350 | | * return {VariantIndex<0>{}, 1, 2}; |
351 | | * } |
352 | | * // ... |
353 | | * Variant<AB, bool> v0 = Foo(); // v0 holds AB(1,2). |
354 | | * |
355 | | * All access to the contained value goes through type-safe accessors. |
356 | | * Either the stored type, or the type index may be provided. |
357 | | * |
358 | | * void |
359 | | * Foo(Variant<A, B, C> v) |
360 | | * { |
361 | | * if (v.is<A>()) { |
362 | | * A& ref = v.as<A>(); |
363 | | * ... |
364 | | * } else (v.is<1>()) { // Instead of v.is<B>. |
365 | | * ... |
366 | | * } else { |
367 | | * ... |
368 | | * } |
369 | | * } |
370 | | * |
371 | | * In some situation, a Variant may be constructed from templated types, in |
372 | | * which case it is possible that the same type could be given multiple times by |
373 | | * an external developer. Or seemingly-different types could be aliases. |
374 | | * In this case, repeated types can only be accessed through their index, to |
375 | | * prevent ambiguous access by type. |
376 | | * |
377 | | * // Bad! |
378 | | * template <typename T> |
379 | | * struct ResultOrError |
380 | | * { |
381 | | * Variant<T, int> m; |
382 | | * ResultOrError() : m(int(0)) {} // Error '0' by default |
383 | | * ResultOrError(const T& r) : m(r) {} |
384 | | * bool IsResult() const { return m.is<T>(); } |
385 | | * bool IsError() const { return m.is<int>(); } |
386 | | * }; |
387 | | * // Now instantiante with the result being an int too: |
388 | | * ResultOrError<int> myResult(123); // Fail! |
389 | | * // In Variant<int, int>, which 'int' are we refering to, from inside |
390 | | * // ResultOrError functions? |
391 | | * |
392 | | * // Good! |
393 | | * template <typename T> |
394 | | * struct ResultOrError |
395 | | * { |
396 | | * Variant<T, int> m; |
397 | | * ResultOrError() : m(VariantIndex<1>{}, 0) {} // Error '0' by default |
398 | | * ResultOrError(const T& r) : m(VariantIndex<0>{}, r) {} |
399 | | * bool IsResult() const { return m.is<0>(); } // 0 -> T |
400 | | * bool IsError() const { return m.is<1>(); } // 1 -> int |
401 | | * }; |
402 | | * // Now instantiante with the result being an int too: |
403 | | * ResultOrError<int> myResult(123); // It now works! |
404 | | * |
405 | | * Attempting to use the contained value as type `T1` when the `Variant` |
406 | | * instance contains a value of type `T2` causes an assertion failure. |
407 | | * |
408 | | * A a; |
409 | | * Variant<A, B, C> v(a); |
410 | | * v.as<B>(); // <--- Assertion failure! |
411 | | * |
412 | | * Trying to use a `Variant<Ts...>` instance as some type `U` that is not a |
413 | | * member of the set of `Ts...` is a compiler error. |
414 | | * |
415 | | * A a; |
416 | | * Variant<A, B, C> v(a); |
417 | | * v.as<SomeRandomType>(); // <--- Compiler error! |
418 | | * |
419 | | * Additionally, you can turn a `Variant` that `is<T>` into a `T` by moving it |
420 | | * out of the containing `Variant` instance with the `extract<T>` method: |
421 | | * |
422 | | * Variant<UniquePtr<A>, B, C> v(MakeUnique<A>()); |
423 | | * auto ptr = v.extract<UniquePtr<A>>(); |
424 | | * |
425 | | * Finally, you can exhaustively match on the contained variant and branch into |
426 | | * different code paths depending on which type is contained. This is preferred |
427 | | * to manually checking every variant type T with is<T>() because it provides |
428 | | * compile-time checking that you handled every type, rather than runtime |
429 | | * assertion failures. |
430 | | * |
431 | | * // Bad! |
432 | | * char* foo(Variant<A, B, C, D>& v) { |
433 | | * if (v.is<A>()) { |
434 | | * return ...; |
435 | | * } else if (v.is<B>()) { |
436 | | * return ...; |
437 | | * } else { |
438 | | * return doSomething(v.as<C>()); // Forgot about case D! |
439 | | * } |
440 | | * } |
441 | | * |
442 | | * // Good! |
443 | | * struct FooMatcher |
444 | | * { |
445 | | * // The return type of all matchers must be identical. |
446 | | * char* match(A& a) { ... } |
447 | | * char* match(B& b) { ... } |
448 | | * char* match(C& c) { ... } |
449 | | * char* match(D& d) { ... } // Compile-time error to forget D! |
450 | | * } |
451 | | * char* foo(Variant<A, B, C, D>& v) { |
452 | | * return v.match(FooMatcher()); |
453 | | * } |
454 | | * |
455 | | * ## Examples |
456 | | * |
457 | | * A tree is either an empty leaf, or a node with a value and two children: |
458 | | * |
459 | | * struct Leaf { }; |
460 | | * |
461 | | * template<typename T> |
462 | | * struct Node |
463 | | * { |
464 | | * T value; |
465 | | * Tree<T>* left; |
466 | | * Tree<T>* right; |
467 | | * }; |
468 | | * |
469 | | * template<typename T> |
470 | | * using Tree = Variant<Leaf, Node<T>>; |
471 | | * |
472 | | * A copy-on-write string is either a non-owning reference to some existing |
473 | | * string, or an owning reference to our copy: |
474 | | * |
475 | | * class CopyOnWriteString |
476 | | * { |
477 | | * Variant<const char*, UniquePtr<char[]>> string; |
478 | | * |
479 | | * ... |
480 | | * }; |
481 | | * |
482 | | * Because Variant must be aligned suitable to hold any value stored within it, |
483 | | * and because |alignas| requirements don't affect platform ABI with respect to |
484 | | * how parameters are laid out in memory, Variant can't be used as the type of a |
485 | | * function parameter. Pass Variant to functions by pointer or reference |
486 | | * instead. |
487 | | */ |
488 | | template<typename... Ts> |
489 | | class MOZ_INHERIT_TYPE_ANNOTATIONS_FROM_TEMPLATE_ARGS MOZ_NON_PARAM Variant |
490 | | { |
491 | | friend struct IPC::ParamTraits<mozilla::Variant<Ts...>>; |
492 | | |
493 | | using Tag = typename detail::VariantTag<Ts...>::Type; |
494 | | using Impl = detail::VariantImplementation<Tag, 0, Ts...>; |
495 | | |
496 | | static constexpr size_t RawDataAlignment = tl::Max<alignof(Ts)...>::value; |
497 | | static constexpr size_t RawDataSize = tl::Max<sizeof(Ts)...>::value; |
498 | | |
499 | | // Raw storage for the contained variant value. |
500 | | alignas(RawDataAlignment) unsigned char rawData[RawDataSize]; |
501 | | |
502 | | // Each type is given a unique tag value that lets us keep track of the |
503 | | // contained variant value's type. |
504 | | Tag tag; |
505 | | |
506 | | // Some versions of GCC treat it as a -Wstrict-aliasing violation (ergo a |
507 | | // -Werror compile error) to reinterpret_cast<> |rawData| to |T*|, even |
508 | | // through |void*|. Placing the latter cast in these separate functions |
509 | | // breaks the chain such that affected GCC versions no longer warn/error. |
510 | 195M | void* ptr() { |
511 | 195M | return rawData; |
512 | 195M | } Unexecuted instantiation: mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::ptr() Unexecuted instantiation: mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::ptr() Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::ptr() mozilla::Variant<unsigned int, nsresult>::ptr() Line | Count | Source | 510 | 190M | void* ptr() { | 511 | 190M | return rawData; | 512 | 190M | } |
mozilla::Variant<nsTString<char> const, nsresult>::ptr() Line | Count | Source | 510 | 96 | void* ptr() { | 511 | 96 | return rawData; | 512 | 96 | } |
Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::ptr() mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::ptr() Line | Count | Source | 510 | 3.40k | void* ptr() { | 511 | 3.40k | return rawData; | 512 | 3.40k | } |
Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::ptr() mozilla::Variant<char const*, nsTString<char> const>::ptr() Line | Count | Source | 510 | 166 | void* ptr() { | 511 | 166 | return rawData; | 512 | 166 | } |
mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::ptr() Line | Count | Source | 510 | 41.3k | void* ptr() { | 511 | 41.3k | return rawData; | 512 | 41.3k | } |
mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::ptr() Line | Count | Source | 510 | 56.7k | void* ptr() { | 511 | 56.7k | return rawData; | 512 | 56.7k | } |
mozilla::Variant<nsTString<char>, char const**>::ptr() Line | Count | Source | 510 | 1.44k | void* ptr() { | 511 | 1.44k | return rawData; | 512 | 1.44k | } |
mozilla::Variant<mozilla::Ok, char const*>::ptr() Line | Count | Source | 510 | 6 | void* ptr() { | 511 | 6 | return rawData; | 512 | 6 | } |
mozilla::Variant<Pref*, nsresult>::ptr() Line | Count | Source | 510 | 6 | void* ptr() { | 511 | 6 | return rawData; | 512 | 6 | } |
Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::ptr() mozilla::Variant<nsTString<char>, nsresult>::ptr() Line | Count | Source | 510 | 10 | void* ptr() { | 511 | 10 | return rawData; | 512 | 10 | } |
mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::ptr() Line | Count | Source | 510 | 24 | void* ptr() { | 511 | 24 | return rawData; | 512 | 24 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::ptr() mozilla::Variant<mozilla::FileLocation, nsresult>::ptr() Line | Count | Source | 510 | 48 | void* ptr() { | 511 | 48 | return rawData; | 512 | 48 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::ptr() Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::ptr() Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::ptr() Unexecuted instantiation: mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::image::WriteState>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() Unexecuted instantiation: mozilla::Variant<unsigned char, mozilla::image::WriteState>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::ptr() Unexecuted instantiation: mozilla::Variant<nsIFrame*, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::ptr() Unexecuted instantiation: mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::ptr() Unexecuted instantiation: mozilla::Variant<int, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<unsigned long, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<long, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, long>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsresult, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::ptr() Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::ptr() Unexecuted instantiation: mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::ptr() Unexecuted instantiation: mozilla::Variant<nsTString<char16_t>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::ptr() Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::ptr() Unexecuted instantiation: mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::ptr() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::ptr() mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::ptr() Line | Count | Source | 510 | 63 | void* ptr() { | 511 | 63 | return rawData; | 512 | 63 | } |
Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::ptr() mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::ptr() Line | Count | Source | 510 | 4.87M | void* ptr() { | 511 | 4.87M | return rawData; | 512 | 4.87M | } |
mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::ptr() Line | Count | Source | 510 | 1.74k | void* ptr() { | 511 | 1.74k | return rawData; | 512 | 1.74k | } |
mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::ptr() Line | Count | Source | 510 | 3.00k | void* ptr() { | 511 | 3.00k | return rawData; | 512 | 3.00k | } |
mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::ptr() Line | Count | Source | 510 | 80 | void* ptr() { | 511 | 80 | return rawData; | 512 | 80 | } |
mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::ptr() Line | Count | Source | 510 | 140 | void* ptr() { | 511 | 140 | return rawData; | 512 | 140 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::ptr() mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::ptr() Line | Count | Source | 510 | 140 | void* ptr() { | 511 | 140 | return rawData; | 512 | 140 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::ptr() Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::ptr() Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::ptr() mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::ptr() Line | Count | Source | 510 | 148k | void* ptr() { | 511 | 148k | return rawData; | 512 | 148k | } |
Unexecuted instantiation: mozilla::Variant<unsigned int, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<bool, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<double, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinVariant, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<unsigned char, JS::Error*>::ptr() Unexecuted instantiation: mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::ptr() |
513 | | |
514 | 4.43M | const void* ptr() const { |
515 | 4.43M | return rawData; |
516 | 4.43M | } Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::ptr() const mozilla::Variant<unsigned int, nsresult>::ptr() const Line | Count | Source | 514 | 3.18M | const void* ptr() const { | 515 | 3.18M | return rawData; | 516 | 3.18M | } |
mozilla::Variant<nsTString<char> const, nsresult>::ptr() const Line | Count | Source | 514 | 48 | const void* ptr() const { | 515 | 48 | return rawData; | 516 | 48 | } |
Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::ptr() const mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::ptr() const Line | Count | Source | 514 | 90 | const void* ptr() const { | 515 | 90 | return rawData; | 516 | 90 | } |
Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::ptr() const mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::ptr() const Line | Count | Source | 514 | 34.7k | const void* ptr() const { | 515 | 34.7k | return rawData; | 516 | 34.7k | } |
mozilla::Variant<char const*, nsTString<char> const>::ptr() const Line | Count | Source | 514 | 6.97k | const void* ptr() const { | 515 | 6.97k | return rawData; | 516 | 6.97k | } |
mozilla::Variant<nsTString<char>, char const**>::ptr() const Line | Count | Source | 514 | 1.20M | const void* ptr() const { | 515 | 1.20M | return rawData; | 516 | 1.20M | } |
mozilla::Variant<Pref*, nsresult>::ptr() const Line | Count | Source | 514 | 3 | const void* ptr() const { | 515 | 3 | return rawData; | 516 | 3 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::Ok, char const*>::ptr() const Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::ptr() const mozilla::Variant<nsTString<char>, nsresult>::ptr() const Line | Count | Source | 514 | 5 | const void* ptr() const { | 515 | 5 | return rawData; | 516 | 5 | } |
mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::ptr() const Line | Count | Source | 514 | 12 | const void* ptr() const { | 515 | 12 | return rawData; | 516 | 12 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::ptr() const mozilla::Variant<mozilla::FileLocation, nsresult>::ptr() const Line | Count | Source | 514 | 24 | const void* ptr() const { | 515 | 24 | return rawData; | 516 | 24 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::ptr() const Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::ptr() const Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::ptr() const Unexecuted instantiation: mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::ptr() const Unexecuted instantiation: mozilla::Variant<nsIFrame*, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::ptr() const Unexecuted instantiation: mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::ptr() const Unexecuted instantiation: mozilla::Variant<int, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<unsigned long, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<long, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, long>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::ptr() const Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::ptr() const Unexecuted instantiation: mozilla::Variant<nsTString<char16_t>, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::ptr() const Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::ptr() const Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::ptr() const Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::ptr() const Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*>::ptr() const mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::ptr() const Line | Count | Source | 514 | 18 | const void* ptr() const { | 515 | 18 | return rawData; | 516 | 18 | } |
Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::ptr() const Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::ptr() const mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::ptr() const Line | Count | Source | 514 | 70 | const void* ptr() const { | 515 | 70 | return rawData; | 516 | 70 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::ptr() const mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::ptr() const Line | Count | Source | 514 | 70 | const void* ptr() const { | 515 | 70 | return rawData; | 516 | 70 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::ptr() const Unexecuted instantiation: mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::ptr() const Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::ptr() const Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::ptr() const mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::ptr() const Line | Count | Source | 514 | 80 | const void* ptr() const { | 515 | 80 | return rawData; | 516 | 80 | } |
mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::ptr() const Line | Count | Source | 514 | 1.48k | const void* ptr() const { | 515 | 1.48k | return rawData; | 516 | 1.48k | } |
mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::ptr() const Line | Count | Source | 514 | 232 | const void* ptr() const { | 515 | 232 | return rawData; | 516 | 232 | } |
Unexecuted instantiation: mozilla::Variant<unsigned int, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<bool, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<double, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinVariant, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<unsigned char, JS::Error*>::ptr() const Unexecuted instantiation: mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::ptr() const |
517 | | |
518 | | public: |
519 | | /** Perfect forwarding construction for some variant type T. */ |
520 | | template<typename RefT, |
521 | | // RefT captures both const& as well as && (as intended, to support |
522 | | // perfect forwarding), so we have to remove those qualifiers here |
523 | | // when ensuring that T is a variant of this type, and getting T's |
524 | | // tag, etc. |
525 | | typename T = typename detail::SelectVariantType<RefT, Ts...>::Type> |
526 | | explicit Variant(RefT&& aT) |
527 | | : tag(Impl::template tag<T>()) |
528 | 96.6M | { |
529 | 96.6M | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, |
530 | 96.6M | "Variant can only be selected by type if that type is unique"); |
531 | 96.6M | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); |
532 | 96.6M | } mozilla::Variant<unsigned int, nsresult>::Variant<unsigned int&, unsigned int>(unsigned int&) Line | Count | Source | 528 | 95.0M | { | 529 | 95.0M | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 95.0M | "Variant can only be selected by type if that type is unique"); | 531 | 95.0M | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 95.0M | } |
Unexecuted instantiation: mozilla::Variant<unsigned int, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Variant<unsigned long, unsigned long>(unsigned long&&) mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Variant<int const&, int const>(int const&) Line | Count | Source | 528 | 464 | { | 529 | 464 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 464 | "Variant can only be selected by type if that type is unique"); | 531 | 464 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 464 | } |
Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::Variant<nsCOMPtr<nsITimer>&, nsCOMPtr<nsITimer> >(nsCOMPtr<nsITimer>&) mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Variant<char const*&, char const*>(char const*&) Line | Count | Source | 528 | 90 | { | 529 | 90 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 90 | "Variant can only be selected by type if that type is unique"); | 531 | 90 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 90 | } |
Unexecuted instantiation: mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Variant<void (*&)(nsITimer*, bool, void*, char*, unsigned long), void (*)(nsITimer*, bool, void*, char*, unsigned long)>(void (*&)(nsITimer*, bool, void*, char*, unsigned long)) mozilla::Variant<char const*, nsTString<char> const>::Variant<nsTString<char> const&, nsTString<char> const>(nsTString<char> const&) Line | Count | Source | 528 | 83 | { | 529 | 83 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 83 | "Variant can only be selected by type if that type is unique"); | 531 | 83 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 83 | } |
Unexecuted instantiation: mozilla::Variant<Pref*, nsresult>::Variant<nsresult&, nsresult>(nsresult&) mozilla::Variant<Pref*, nsresult>::Variant<Pref*&, Pref*>(Pref*&) Line | Count | Source | 528 | 3 | { | 529 | 3 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 3 | "Variant can only be selected by type if that type is unique"); | 531 | 3 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 3 | } |
mozilla::Variant<mozilla::Ok, char const*>::Variant<mozilla::Ok&, mozilla::Ok>(mozilla::Ok&) Line | Count | Source | 528 | 3 | { | 529 | 3 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 3 | "Variant can only be selected by type if that type is unique"); | 531 | 3 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 3 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::Ok, char const*>::Variant<char const*&, char const*>(char const*&) Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::Variant<nsCOMPtr<nsIRequest>&, nsCOMPtr<nsIRequest> >(nsCOMPtr<nsIRequest>&) Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::Variant<nsCOMPtr<nsIInputStream>&, nsCOMPtr<nsIInputStream> >(nsCOMPtr<nsIInputStream>&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<mozilla::plugins::IpdlTuple::InvalidType, mozilla::plugins::IpdlTuple::InvalidType>(mozilla::plugins::IpdlTuple::InvalidType&&) Unexecuted instantiation: mozilla::Variant<nsTString<char>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) mozilla::Variant<nsTString<char>, nsresult>::Variant<nsTString<char>&, nsTString<char> >(nsTString<char>&) Line | Count | Source | 528 | 5 | { | 529 | 5 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 5 | "Variant can only be selected by type if that type is unique"); | 531 | 5 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 5 | } |
mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Line | Count | Source | 528 | 3 | { | 529 | 3 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 3 | "Variant can only be selected by type if that type is unique"); | 531 | 3 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 3 | } |
mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::Variant<nsCOMPtr<nsIFile>&, nsCOMPtr<nsIFile> >(nsCOMPtr<nsIFile>&) Line | Count | Source | 528 | 9 | { | 529 | 9 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 9 | "Variant can only be selected by type if that type is unique"); | 531 | 9 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 9 | } |
Unexecuted instantiation: mozilla::Variant<nsTString<char> const, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::Variant<mozilla::URLPreloader::CacheKey&, mozilla::URLPreloader::CacheKey>(mozilla::URLPreloader::CacheKey&) Unexecuted instantiation: mozilla::Variant<mozilla::FileLocation, nsresult>::Variant<nsresult&, nsresult>(nsresult&) mozilla::Variant<mozilla::FileLocation, nsresult>::Variant<mozilla::FileLocation&, mozilla::FileLocation>(mozilla::FileLocation&) Line | Count | Source | 528 | 24 | { | 529 | 24 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 24 | "Variant can only be selected by type if that type is unique"); | 531 | 24 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 24 | } |
mozilla::Variant<nsTString<char> const, nsresult>::Variant<nsTString<char> const&, nsTString<char> const>(nsTString<char> const&) Line | Count | Source | 528 | 48 | { | 529 | 48 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 48 | "Variant can only be selected by type if that type is unique"); | 531 | 48 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 48 | } |
Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Variant<RefPtr<mozilla::gfx::SourceSurface> const&, RefPtr<mozilla::gfx::SourceSurface> >(RefPtr<mozilla::gfx::SourceSurface> const&) Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Variant<RefPtr<mozilla::gfx::FilterNode> const&, RefPtr<mozilla::gfx::FilterNode> >(RefPtr<mozilla::gfx::FilterNode> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<bool const&, bool>(bool const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<unsigned int const&, unsigned int>(unsigned int const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<float const&, float>(float const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> >(mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> >(mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const&, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> >(mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float> >(mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::BaseMatrix<float> const&, mozilla::gfx::BaseMatrix<float> >(mozilla::gfx::BaseMatrix<float> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::Matrix5x4 const&, mozilla::gfx::Matrix5x4>(mozilla::gfx::Matrix5x4 const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float> >(mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<mozilla::gfx::Color const&, mozilla::gfx::Color>(mozilla::gfx::Color const&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant<std::__1::vector<float, std::__1::allocator<float> >, std::__1::vector<float, std::__1::allocator<float> > >(std::__1::vector<float, std::__1::allocator<float> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::EmptyAttributes>(mozilla::gfx::EmptyAttributes&&) Unexecuted instantiation: mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::Variant<mozilla::layers::BogusAnimation&, mozilla::layers::BogusAnimation>(mozilla::layers::BogusAnimation&) Unexecuted instantiation: mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::Variant<nsCSSValueSharedList*&, nsCSSValueSharedList*>(nsCSSValueSharedList*&) Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::Variant<mozilla::image::Yield, mozilla::image::Yield>(mozilla::image::Yield&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::Variant<mozilla::image::TerminalState, mozilla::image::TerminalState>(mozilla::image::TerminalState&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState>(mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::TerminalState&, mozilla::image::TerminalState>(mozilla::image::TerminalState&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState>(mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::TerminalState&, mozilla::image::TerminalState>(mozilla::image::TerminalState&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState>(mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::TerminalState&, mozilla::image::TerminalState>(mozilla::image::TerminalState&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState>(mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::TerminalState&, mozilla::image::TerminalState>(mozilla::image::TerminalState&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState>(mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::TerminalState&, mozilla::image::TerminalState>(mozilla::image::TerminalState&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState>(mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::TerminalState&, mozilla::image::TerminalState>(mozilla::image::TerminalState&) Unexecuted instantiation: mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Variant<RefPtr<mozilla::dom::AnimationPlaybackEvent>, RefPtr<mozilla::dom::AnimationPlaybackEvent> >(RefPtr<mozilla::dom::AnimationPlaybackEvent>&&) Unexecuted instantiation: mozilla::Variant<nsIFrame*, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<nsIFrame*, nsresult>::Variant<nsIFrame*&, nsIFrame*>(nsIFrame*&) Unexecuted instantiation: mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Variant<JS::FirstSubsumedFrame, JS::FirstSubsumedFrame>(JS::FirstSubsumedFrame&&) Unexecuted instantiation: mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Variant<JS::AllFrames, JS::AllFrames>(JS::AllFrames&&) Unexecuted instantiation: mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Variant<JS::MaxFrames, JS::MaxFrames>(JS::MaxFrames&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<mozilla::DDLogObject, mozilla::DDLogObject>(mozilla::DDLogObject&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<mozilla::DDNoValue, mozilla::DDNoValue>(mozilla::DDNoValue&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<char const*&, char const*>(char const*&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<nsTString<char>, nsTString<char> const>(nsTString<char>&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<nsTString<char>&, nsTString<char> const>(nsTString<char>&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<mozilla::MediaResult const&, mozilla::MediaResult>(mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<bool, bool>(bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<bool&, bool>(bool&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<double&, double>(double&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, long>::Variant<mozilla::Nothing, mozilla::Nothing>(mozilla::Nothing&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<long, long>(long&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, long>::Variant<long&, long>(long&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::Variant<mozilla::dom::MediaRecorder::Session::RunningState&, mozilla::dom::MediaRecorder::Session::RunningState>(mozilla::dom::MediaRecorder::Session::RunningState&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<mozilla::MediaResult&, mozilla::MediaResult>(mozilla::MediaResult&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<unsigned long, unsigned long>(unsigned long&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<nsresult const&, nsresult>(nsresult const&) Unexecuted instantiation: mozilla::Variant<unsigned long, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<unsigned long, nsresult>::Variant<unsigned long&, unsigned long>(unsigned long&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant<unsigned int, unsigned int>(unsigned int&&) Unexecuted instantiation: mozilla::Variant<int, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<int, nsresult>::Variant<int&, int>(int&) Unexecuted instantiation: mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::Variant<mozilla::Result<mozilla::Ok, nsresult>&, mozilla::Result<mozilla::Ok, nsresult> >(mozilla::Result<mozilla::Ok, nsresult>&) Unexecuted instantiation: mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<long, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<long, nsresult>::Variant<long&, long>(long&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Variant<mozilla::dom::quota::OriginScope::Origin const&, mozilla::dom::quota::OriginScope::Origin>(mozilla::dom::quota::OriginScope::Origin const&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Variant<mozilla::dom::quota::OriginScope::Null const&, mozilla::dom::quota::OriginScope::Null>(mozilla::dom::quota::OriginScope::Null const&) Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::Variant<RefPtr<mozilla::dom::Promise>&, RefPtr<mozilla::dom::Promise> >(RefPtr<mozilla::dom::Promise>&) Unexecuted instantiation: mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Variant<mozilla::InternalAnimationEvent, mozilla::InternalAnimationEvent>(mozilla::InternalAnimationEvent&&) Unexecuted instantiation: mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Variant<mozilla::ServoStyleSet*, mozilla::ServoStyleSet*>(mozilla::ServoStyleSet*&&) Unexecuted instantiation: mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Variant<mozilla::dom::ShadowRoot*, mozilla::dom::ShadowRoot*>(mozilla::dom::ShadowRoot*&&) Unexecuted instantiation: mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Variant<nsXBLPrototypeBinding*&, nsXBLPrototypeBinding*>(nsXBLPrototypeBinding*&) Unexecuted instantiation: mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Variant<mozilla::InternalTransitionEvent, mozilla::InternalTransitionEvent>(mozilla::InternalTransitionEvent&&) Unexecuted instantiation: mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::Variant<UniqueStacks::FrameKey::JITFrameData, UniqueStacks::FrameKey::JITFrameData>(UniqueStacks::FrameKey::JITFrameData&&) Unexecuted instantiation: mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::NormalFrameData>(UniqueStacks::FrameKey::NormalFrameData&&) Unexecuted instantiation: mozilla::Variant<nsTString<char16_t>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<nsTString<char16_t>, nsresult>::Variant<nsTString<char16_t>&, nsTString<char16_t> >(nsTString<char16_t>&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant<unsigned int, unsigned int>(unsigned int&&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant<unsigned int&, unsigned int>(unsigned int&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant<nsTString<char16_t>, nsTString<char16_t> >(nsTString<char16_t>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant<bool&, bool>(bool&) Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::Variant<nsresult&, nsresult>(nsresult&) Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::Variant<nsCOMPtr<nsIZipReaderCache>&, nsCOMPtr<nsIZipReaderCache> >(nsCOMPtr<nsIZipReaderCache>&) Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*>::Variant<char16_t const*&, char16_t const*>(char16_t const*&) Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Variant<char16_t const*, char16_t const*>(char16_t const*&&) Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*>::Variant<JSAtom*&, JSAtom*>(JSAtom*&) Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Variant<mozilla::UniquePtr<char16_t [], JS::FreePolicy>, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >(mozilla::UniquePtr<char16_t [], JS::FreePolicy>&&) Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Variant<JSAtom*&, JSAtom*>(JSAtom*&) Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Variant<char16_t const*&, char16_t const*>(char16_t const*&) Unexecuted instantiation: mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::Variant<unsigned long, unsigned long>(unsigned long&&) Unexecuted instantiation: mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::LexerTransition<TestState>::NonTerminalState>(mozilla::image::LexerTransition<TestState>::NonTerminalState&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Variant<mozilla::image::TerminalState&, mozilla::image::TerminalState>(mozilla::image::TerminalState&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Variant<mozilla::dom::quota::OriginScope::Null, mozilla::dom::quota::OriginScope::Null>(mozilla::dom::quota::OriginScope::Null&&) mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Variant<JSObject*, JSObject*>(JSObject*&&) Line | Count | Source | 528 | 116 | { | 529 | 116 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 116 | "Variant can only be selected by type if that type is unique"); | 531 | 116 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 116 | } |
Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Variant<JSString*, JSString*>(JSString*&&) mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Variant<JSObject*, JSObject*>(JSObject*&&) Line | Count | Source | 528 | 1.62M | { | 529 | 1.62M | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 1.62M | "Variant can only be selected by type if that type is unique"); | 531 | 1.62M | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 1.62M | } |
mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Variant<JSScript*&, JSScript*>(JSScript*&) Line | Count | Source | 528 | 4 | { | 529 | 4 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 4 | "Variant can only be selected by type if that type is unique"); | 531 | 4 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 4 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::Variant<js::jit::AbortReason&, js::jit::AbortReason>(js::jit::AbortReason&) Unexecuted instantiation: mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::Variant<js::jit::MInstruction*&, js::jit::MInstruction*>(js::jit::MInstruction*&) Unexecuted instantiation: mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::Variant<js::jit::AbortReason&, js::jit::AbortReason>(js::jit::AbortReason&) mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::Variant<js::jit::MCall*&, js::jit::MCall*>(js::jit::MCall*&) Line | Count | Source | 528 | 70 | { | 529 | 70 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 70 | "Variant can only be selected by type if that type is unique"); | 531 | 70 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 70 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::Variant<js::jit::AbortReason&, js::jit::AbortReason>(js::jit::AbortReason&) mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::Variant<js::jit::MBasicBlock*&, js::jit::MBasicBlock*>(js::jit::MBasicBlock*&) Line | Count | Source | 528 | 70 | { | 529 | 70 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 70 | "Variant can only be selected by type if that type is unique"); | 531 | 70 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 70 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::Variant<js::jit::AbortReason&, js::jit::AbortReason>(js::jit::AbortReason&) Unexecuted instantiation: mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::Variant<js::jit::MDefinition*&, js::jit::MDefinition*>(js::jit::MDefinition*&) Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Variant<JSObject*&, JSObject*>(JSObject*&) Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Variant<mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >(mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>&&) Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Variant<mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*> >(mozilla::Tuple<js::NativeObject*, js::LazyScript*>&&) Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Variant<mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, JSScript*> >(mozilla::Tuple<js::NativeObject*, JSScript*>&&) Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Variant<JSScript* const&, JSScript*>(JSScript* const&) Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Variant<js::WasmInstanceObject* const&, js::WasmInstanceObject*>(js::WasmInstanceObject* const&) Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Variant<js::LazyScript*&, js::LazyScript*>(js::LazyScript*&) Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Variant<js::LazyScript* const&, js::LazyScript*>(js::LazyScript* const&) Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::Variant<js::ScriptSourceObject* const&, js::ScriptSourceObject*>(js::ScriptSourceObject* const&) Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::Variant<js::WasmInstanceObject* const&, js::WasmInstanceObject*>(js::WasmInstanceObject* const&) Unexecuted instantiation: mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Variant<js::AllCompilations, js::AllCompilations>(js::AllCompilations&&) mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Variant<js::GCParallelTask*, js::GCParallelTask*>(js::GCParallelTask*&&) Line | Count | Source | 528 | 991 | { | 529 | 991 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 991 | "Variant can only be selected by type if that type is unique"); | 531 | 991 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 991 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Variant<js::wasm::CompileTask*, js::wasm::CompileTask*>(js::wasm::CompileTask*&&) Unexecuted instantiation: mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Variant<js::wasm::Tier2GeneratorTask*, js::wasm::Tier2GeneratorTask*>(js::wasm::Tier2GeneratorTask*&&) Unexecuted instantiation: mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Variant<js::PromiseHelperTask*&, js::PromiseHelperTask*>(js::PromiseHelperTask*&) mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Variant<js::jit::IonBuilder*&, js::jit::IonBuilder*>(js::jit::IonBuilder*&) Line | Count | Source | 528 | 14 | { | 529 | 14 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 14 | "Variant can only be selected by type if that type is unique"); | 531 | 14 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 14 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Variant<js::ParseTask*, js::ParseTask*>(js::ParseTask*&&) Unexecuted instantiation: mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Variant<js::SourceCompressionTask*, js::SourceCompressionTask*>(js::SourceCompressionTask*&&) Unexecuted instantiation: mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Variant<JSRuntime*&, JSRuntime*>(JSRuntime*&) mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Variant<js::ScriptSource::Missing, js::ScriptSource::Missing>(js::ScriptSource::Missing&&) Line | Count | Source | 528 | 18 | { | 529 | 18 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 18 | "Variant can only be selected by type if that type is unique"); | 531 | 18 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 18 | } |
Unexecuted instantiation: mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Variant<js::ScriptSource::Compressed, js::ScriptSource::Compressed>(js::ScriptSource::Compressed&&) mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Variant<js::ScriptSource::Uncompressed, js::ScriptSource::Uncompressed>(js::ScriptSource::Uncompressed&&) Line | Count | Source | 528 | 9 | { | 529 | 9 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 9 | "Variant can only be selected by type if that type is unique"); | 531 | 9 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 9 | } |
Unexecuted instantiation: mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Variant<JS::Realm*&, JS::Realm*>(JS::Realm*&) mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Variant<js::ImmediateMetadata, js::ImmediateMetadata>(js::ImmediateMetadata&&) Line | Count | Source | 528 | 9 | { | 529 | 9 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 9 | "Variant can only be selected by type if that type is unique"); | 531 | 9 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 9 | } |
mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Variant<js::DelayMetadata, js::DelayMetadata>(js::DelayMetadata&&) Line | Count | Source | 528 | 116 | { | 529 | 116 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 116 | "Variant can only be selected by type if that type is unique"); | 531 | 116 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 116 | } |
Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Variant<js::jit::CommonFrameLayout*&, js::jit::CommonFrameLayout*>(js::jit::CommonFrameLayout*&) Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Variant<js::InterpreterFrame*&, js::InterpreterFrame*>(js::InterpreterFrame*&) Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Variant<js::wasm::DebugFrame*&, js::wasm::DebugFrame*>(js::wasm::DebugFrame*&) Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Variant<js::jit::RematerializedFrame*&, js::jit::RematerializedFrame*>(js::jit::RematerializedFrame*&) mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>*&, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>(js::frontend::Parser<js::frontend::FullParseHandler, char16_t>*&) Line | Count | Source | 528 | 8 | { | 529 | 8 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 8 | "Variant can only be selected by type if that type is unique"); | 531 | 8 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 8 | } |
mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Variant<js::ZonesInState, js::ZonesInState>(js::ZonesInState&&) Line | Count | Source | 528 | 36 | { | 529 | 36 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 530 | 36 | "Variant can only be selected by type if that type is unique"); | 531 | 36 | ::new (KnownNotNull, ptr()) T(std::forward<RefT>(aT)); | 532 | 36 | } |
Unexecuted instantiation: mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Variant<JS::Zone*&, JS::Zone*>(JS::Zone*&) Unexecuted instantiation: mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Variant<js::CompilationsUsingNursery, js::CompilationsUsingNursery>(js::CompilationsUsingNursery&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind&, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind>(js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator&, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator>(js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator&, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator>(js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator&, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator>(js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator&, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator>(js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind&, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind>(js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind&, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind>(js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator&, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator>(js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator&, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator>(js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator&, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator>(js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator&, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator>(js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind&, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind>(js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind&) Unexecuted instantiation: mozilla::Variant<unsigned char, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<unsigned char, JS::Error*>::Variant<unsigned char&, unsigned char>(unsigned char&) Unexecuted instantiation: mozilla::Variant<bool, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<bool, JS::Error*>::Variant<bool&, bool>(bool&) Unexecuted instantiation: mozilla::Variant<double, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<double, JS::Error*>::Variant<double&, double>(double&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinVariant, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinVariant, JS::Error*>::Variant<js::frontend::BinVariant&, js::frontend::BinVariant>(js::frontend::BinVariant&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree&, js::frontend::BinTokenReaderBase::SkippableSubTree>(js::frontend::BinTokenReaderBase::SkippableSubTree&) Unexecuted instantiation: mozilla::Variant<unsigned int, JS::Error*>::Variant<JS::Error*, JS::Error*>(JS::Error*&&) Unexecuted instantiation: mozilla::Variant<unsigned int, JS::Error*>::Variant<unsigned int&, unsigned int>(unsigned int&) |
533 | | |
534 | | /** |
535 | | * Perfect forwarding construction for some variant type T, by |
536 | | * explicitly giving the type. |
537 | | * This is necessary to construct from any number of arguments, |
538 | | * or to convert from a type that is not in the Variant's type list. |
539 | | */ |
540 | | template<typename T, typename... Args> |
541 | | MOZ_IMPLICIT Variant(const VariantType<T>&, Args&&... aTs) |
542 | | : tag(Impl::template tag<T>()) |
543 | 0 | { |
544 | 0 | ::new (KnownNotNull, ptr()) T(std::forward<Args>(aTs)...); |
545 | 0 | } Unexecuted instantiation: mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>>(mozilla::VariantType<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy> > const&) Unexecuted instantiation: mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::Variant<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy>>(mozilla::VariantType<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> > const&) |
546 | | |
547 | | /** |
548 | | * Perfect forwarding construction for some variant type T, by |
549 | | * explicitly giving the type index. |
550 | | * This is necessary to construct from any number of arguments, |
551 | | * or to convert from a type that is not in the Variant's type list, |
552 | | * or to construct a type that is present more than once in the Variant. |
553 | | */ |
554 | | template<size_t N, typename... Args> |
555 | | MOZ_IMPLICIT Variant(const VariantIndex<N>&, Args&&... aTs) |
556 | | : tag(N) |
557 | 0 | { |
558 | 0 | using T = typename detail::Nth<N, Ts...>::Type; |
559 | 0 | ::new (KnownNotNull, ptr()) T(std::forward<Args>(aTs)...); |
560 | 0 | } Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::Variant<1ul, bool>(mozilla::VariantIndex<1ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::Variant<1ul, bool const&>(mozilla::VariantIndex<1ul> const&, bool const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::Variant<2ul, bool const&>(mozilla::VariantIndex<2ul> const&, bool const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Variant<1ul, nsCOMPtr<nsITabParent> const&>(mozilla::VariantIndex<1ul> const&, nsCOMPtr<nsITabParent> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Variant<2ul, nsresult>(mozilla::VariantIndex<2ul> const&, nsresult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::Variant<1ul, bool const&>(mozilla::VariantIndex<1ul> const&, bool const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::Variant<1ul, bool>(mozilla::VariantIndex<1ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::wr::MemoryReport>(mozilla::VariantIndex<1ul> const&, mozilla::wr::MemoryReport&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::wr::MemoryReport const&>(mozilla::VariantIndex<1ul> const&, mozilla::wr::MemoryReport const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> >(mozilla::VariantIndex<1ul> const&, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::ipc::FileDescriptor>(mozilla::VariantIndex<1ul> const&, mozilla::ipc::FileDescriptor&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::ipc::FileDescriptor const&>(mozilla::VariantIndex<1ul> const&, mozilla::ipc::FileDescriptor const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::dom::CreatedWindowInfo>(mozilla::VariantIndex<1ul> const&, mozilla::dom::CreatedWindowInfo&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::dom::CreatedWindowInfo const&>(mozilla::VariantIndex<1ul> const&, mozilla::dom::CreatedWindowInfo const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Variant<1ul, bool>(mozilla::VariantIndex<1ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Variant<1ul, bool const&>(mozilla::VariantIndex<1ul> const&, bool const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Variant<1ul, RefPtr<nsIInputStream> >(mozilla::VariantIndex<1ul> const&, RefPtr<nsIInputStream>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Variant<1ul, RefPtr<nsIInputStream> const&>(mozilla::VariantIndex<1ul> const&, RefPtr<nsIInputStream> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::ipc::Shmem>(mozilla::VariantIndex<1ul> const&, mozilla::ipc::Shmem&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::Tuple<bool, nsTString<char16_t> > >(mozilla::VariantIndex<1ul> const&, mozilla::Tuple<bool, nsTString<char16_t> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::Tuple<bool, nsTString<char16_t> > const&>(mozilla::VariantIndex<1ul> const&, mozilla::Tuple<bool, nsTString<char16_t> > const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult>(mozilla::VariantIndex<1ul> const&, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult const&>(mozilla::VariantIndex<1ul> const&, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult>(mozilla::VariantIndex<1ul> const&, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult const&>(mozilla::VariantIndex<1ul> const&, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::Tuple<bool, mozilla::CopyableErrorResult> >(mozilla::VariantIndex<1ul> const&, mozilla::Tuple<bool, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::Tuple<bool, mozilla::CopyableErrorResult> const&>(mozilla::VariantIndex<1ul> const&, mozilla::Tuple<bool, mozilla::CopyableErrorResult> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::widget::IMENotificationRequests>(mozilla::VariantIndex<1ul> const&, mozilla::widget::IMENotificationRequests&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Variant<1ul, mozilla::widget::IMENotificationRequests const&>(mozilla::VariantIndex<1ul> const&, mozilla::widget::IMENotificationRequests const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason const&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Variant<2ul, mozilla::ipc::ResponseRejectReason&>(mozilla::VariantIndex<2ul> const&, mozilla::ipc::ResponseRejectReason&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::Variant<1ul, nsTArray<bool> >(mozilla::VariantIndex<1ul> const&, nsTArray<bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::Variant<1ul, nsTArray<bool> const&>(mozilla::VariantIndex<1ul> const&, nsTArray<bool> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::Variant<2ul, nsresult>(mozilla::VariantIndex<2ul> const&, nsresult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Variant<1ul, mozilla::wr::MemoryReport&>(mozilla::VariantIndex<1ul> const&, mozilla::wr::MemoryReport&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Variant<1ul, mozilla::wr::MemoryReport>(mozilla::VariantIndex<1ul> const&, mozilla::wr::MemoryReport&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant<1ul, nsTArray<mozilla::dom::ClientInfoAndState>&>(mozilla::VariantIndex<1ul> const&, nsTArray<mozilla::dom::ClientInfoAndState>&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant<1ul, nsresult const&>(mozilla::VariantIndex<1ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant<1ul, mozilla::dom::ClientInfoAndState>(mozilla::VariantIndex<1ul> const&, mozilla::dom::ClientInfoAndState&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Variant<1ul, mozilla::dom::ClientState>(mozilla::VariantIndex<1ul> const&, mozilla::dom::ClientState&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Variant<1ul, mozilla::dom::ClientState const&>(mozilla::VariantIndex<1ul> const&, mozilla::dom::ClientState const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant<1ul, mozilla::dom::ClientOpResult const&>(mozilla::VariantIndex<1ul> const&, mozilla::dom::ClientOpResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant<2ul, nsresult&>(mozilla::VariantIndex<2ul> const&, nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant<1ul, mozilla::dom::IPCClientState const>(mozilla::VariantIndex<1ul> const&, mozilla::dom::IPCClientState const&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Variant<1ul, mozilla::MediaResult>(mozilla::VariantIndex<1ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Variant<1ul, nsresult const&>(mozilla::VariantIndex<1ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant<1ul, mozilla::media::TimeUnit const&>(mozilla::VariantIndex<1ul> const&, mozilla::media::TimeUnit const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant<1ul, mozilla::media::TimeUnit>(mozilla::VariantIndex<1ul> const&, mozilla::media::TimeUnit&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>&>(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Variant<2ul, mozilla::MediaTrackDemuxer::SkipFailureHolder>(mozilla::VariantIndex<2ul> const&, mozilla::MediaTrackDemuxer::SkipFailureHolder&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Variant<1ul, unsigned int>(mozilla::VariantIndex<1ul> const&, unsigned int&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::Variant<1ul, unsigned int>(mozilla::VariantIndex<1ul> const&, unsigned int&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::Variant<1ul, unsigned int const&>(mozilla::VariantIndex<1ul> const&, unsigned int const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::Variant<1ul, mozilla::MediaStatistics&>(mozilla::VariantIndex<1ul> const&, mozilla::MediaStatistics&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::Variant<1ul, mozilla::MediaStatistics>(mozilla::VariantIndex<1ul> const&, mozilla::MediaStatistics&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::Variant<1ul, bool>(mozilla::VariantIndex<1ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::Variant<1ul, unsigned long>(mozilla::VariantIndex<1ul> const&, unsigned long&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::Variant<2ul, unsigned long>(mozilla::VariantIndex<2ul> const&, unsigned long&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::Variant<1ul, nsTString<char>&>(mozilla::VariantIndex<1ul> const&, nsTString<char>&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::Variant<1ul, nsTString<char> >(mozilla::VariantIndex<1ul> const&, nsTString<char>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::Variant<1ul, nsTString<char> const&>(mozilla::VariantIndex<1ul> const&, nsTString<char> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::Variant<1ul, nsTArray<bool> >(mozilla::VariantIndex<1ul> const&, nsTArray<bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::Variant<1ul, nsTArray<bool> const&>(mozilla::VariantIndex<1ul> const&, nsTArray<bool> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::Variant<2ul, bool const&>(mozilla::VariantIndex<2ul> const&, bool const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::Variant<1ul, unsigned long&>(mozilla::VariantIndex<1ul> const&, unsigned long&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Variant<1ul, mozilla::MediaData::Type const&>(mozilla::VariantIndex<1ul> const&, mozilla::MediaData::Type const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Variant<1ul, mozilla::MediaData::Type>(mozilla::VariantIndex<1ul> const&, mozilla::MediaData::Type&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Variant<2ul, mozilla::WaitForDataRejectValue>(mozilla::VariantIndex<2ul> const&, mozilla::WaitForDataRejectValue&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Variant<1ul, RefPtr<mozilla::GlobalAllocPolicy::Token> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::GlobalAllocPolicy::Token>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<1ul, already_AddRefed<mozilla::MediaTrackDemuxer::SamplesHolder> >(mozilla::VariantIndex<1ul> const&, already_AddRefed<mozilla::MediaTrackDemuxer::SamplesHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Variant<1ul, unsigned int&>(mozilla::VariantIndex<1ul> const&, unsigned int&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Variant<2ul, mozilla::MediaTrackDemuxer::SkipFailureHolder const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaTrackDemuxer::SkipFailureHolder const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::AudioData> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::AudioData>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::VideoData> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::VideoData>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Variant<1ul, mozilla::MetadataHolder>(mozilla::VariantIndex<1ul> const&, mozilla::MetadataHolder&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Variant<1ul, mozilla::MediaData::Type&>(mozilla::VariantIndex<1ul> const&, mozilla::MediaData::Type&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Variant<1ul, mozilla::media::TimeUnit>(mozilla::VariantIndex<1ul> const&, mozilla::media::TimeUnit&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Variant<2ul, mozilla::SeekRejectValue>(mozilla::VariantIndex<2ul> const&, mozilla::SeekRejectValue&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Variant<1ul, mozilla::media::TimeUnit const&>(mozilla::VariantIndex<1ul> const&, mozilla::media::TimeUnit const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Variant<2ul, RefPtr<mozilla::MediaMgrError> >(mozilla::VariantIndex<2ul> const&, RefPtr<mozilla::MediaMgrError>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Variant<1ul, bool>(mozilla::VariantIndex<1ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsresult, bool>::Variant<1ul, nsresult>(mozilla::VariantIndex<1ul> const&, nsresult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsresult, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsresult, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsresult, bool>::Variant<1ul, nsresult const&>(mozilla::VariantIndex<1ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Variant<1ul, bool>(mozilla::VariantIndex<1ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Variant<2ul, mozilla::Maybe<nsTString<char16_t> > >(mozilla::VariantIndex<2ul> const&, mozilla::Maybe<nsTString<char16_t> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Variant<1ul, nsTArray<unsigned long> >(mozilla::VariantIndex<1ul> const&, nsTArray<unsigned long>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Variant<2ul, unsigned long>(mozilla::VariantIndex<2ul> const&, unsigned long&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::Variant<1ul, unsigned long const&>(mozilla::VariantIndex<1ul> const&, unsigned long const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Variant<1ul, already_AddRefed<mozilla::AudioData> >(mozilla::VariantIndex<1ul> const&, already_AddRefed<mozilla::AudioData>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Variant<1ul, already_AddRefed<mozilla::VideoData> >(mozilla::VariantIndex<1ul> const&, already_AddRefed<mozilla::VideoData>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::Variant<1ul, nsTString<char> >(mozilla::VariantIndex<1ul> const&, nsTString<char>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::Variant<2ul, nsresult>(mozilla::VariantIndex<2ul> const&, nsresult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Variant<2ul, mozilla::DecryptResult>(mozilla::VariantIndex<2ul> const&, mozilla::DecryptResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Variant<1ul, mozilla::DecryptResult>(mozilla::VariantIndex<1ul> const&, mozilla::DecryptResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant<1ul, nsTArray<RefPtr<mozilla::MediaData> > >(mozilla::VariantIndex<1ul> const&, nsTArray<RefPtr<mozilla::MediaData> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Variant<1ul, mozilla::TrackInfo::TrackType>(mozilla::VariantIndex<1ul> const&, mozilla::TrackInfo::TrackType&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::Variant<2ul, nsresult&>(mozilla::VariantIndex<2ul> const&, nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker> const&>(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::gmp::ChromiumCDMParent> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::gmp::ChromiumCDMParent>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::gmp::ChromiumCDMParent> const&>(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::gmp::ChromiumCDMParent> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Variant<1ul, mozilla::gmp::GMPServiceChild*>(mozilla::VariantIndex<1ul> const&, mozilla::gmp::GMPServiceChild*&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::Variant<1ul, bool>(mozilla::VariantIndex<1ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::Variant<1ul, bool&>(mozilla::VariantIndex<1ul> const&, bool&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Variant<1ul, mozilla::TrackInfo::TrackType&>(mozilla::VariantIndex<1ul> const&, mozilla::TrackInfo::TrackType&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant<1ul, nsTArray<RefPtr<mozilla::MediaData> > const&>(mozilla::VariantIndex<1ul> const&, nsTArray<RefPtr<mozilla::MediaData> > const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Variant<1ul, mozilla::dom::MediaCapabilitiesInfo>(mozilla::VariantIndex<1ul> const&, mozilla::dom::MediaCapabilitiesInfo&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Variant<1ul, nsTArray<mozilla::dom::MediaCapabilitiesInfo> >(mozilla::VariantIndex<1ul> const&, nsTArray<mozilla::dom::MediaCapabilitiesInfo>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant<1ul, mozilla::media::TimeUnit&>(mozilla::VariantIndex<1ul> const&, mozilla::media::TimeUnit&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Variant<2ul, mozilla::MediaTrackDemuxer::SkipFailureHolder&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaTrackDemuxer::SkipFailureHolder&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Variant<1ul, mozilla::Pair<bool, mozilla::SourceBufferAttributes> >(mozilla::VariantIndex<1ul> const&, mozilla::Pair<bool, mozilla::SourceBufferAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::Variant<2ul, nsresult>(mozilla::VariantIndex<2ul> const&, nsresult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::Variant<1ul, bool const&>(mozilla::VariantIndex<1ul> const&, bool const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Variant<1ul, mozilla::GlobalAllocPolicy::Token*>(mozilla::VariantIndex<1ul> const&, mozilla::GlobalAllocPolicy::Token*&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Variant<1ul, mozilla::GlobalAllocPolicy::AutoDeallocToken*>(mozilla::VariantIndex<1ul> const&, mozilla::GlobalAllocPolicy::AutoDeallocToken*&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::MediaDataDecoder> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::MediaDataDecoder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::AllocationWrapper>&>(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::AllocationWrapper>&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult&>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant<1ul, nsTArray<RefPtr<mozilla::MediaData> >&>(mozilla::VariantIndex<1ul> const&, nsTArray<RefPtr<mozilla::MediaData> >&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Variant<1ul, mozilla::MediaRawData*&>(mozilla::VariantIndex<1ul> const&, mozilla::MediaRawData*&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::MediaRawData> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::MediaRawData>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Variant<2ul, mozilla::MediaResult>(mozilla::VariantIndex<2ul> const&, mozilla::MediaResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Variant<1ul, RefPtr<mozilla::MediaRawData> const&>(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::MediaRawData> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Variant<1ul, mozilla::MediaRawData*&>(mozilla::VariantIndex<1ul> const&, mozilla::MediaRawData*&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Variant<1ul, RefPtr<mozilla::MediaRawData> >(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::MediaRawData>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Variant<1ul, RefPtr<mozilla::MediaRawData> const&>(mozilla::VariantIndex<1ul> const&, RefPtr<mozilla::MediaRawData> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Variant<1ul, OMX_COMMANDTYPE>(mozilla::VariantIndex<1ul> const&, OMX_COMMANDTYPE&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Variant<2ul, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>(mozilla::VariantIndex<2ul> const&, mozilla::OmxPromiseLayer::OmxCommandFailureHolder&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Variant<2ul, mozilla::OmxPromiseLayer::OmxCommandFailureHolder const&>(mozilla::VariantIndex<2ul> const&, mozilla::OmxPromiseLayer::OmxCommandFailureHolder const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<1ul, nsTArray<mozilla::OmxPromiseLayer::BufferData*> >(mozilla::VariantIndex<1ul> const&, nsTArray<mozilla::OmxPromiseLayer::BufferData*>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<1ul, nsTArray<mozilla::OmxPromiseLayer::BufferData*> const&>(mozilla::VariantIndex<1ul> const&, nsTArray<mozilla::OmxPromiseLayer::BufferData*> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<2ul, mozilla::OmxPromiseLayer::OmxBufferFailureHolder const&>(mozilla::VariantIndex<2ul> const&, mozilla::OmxPromiseLayer::OmxBufferFailureHolder const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<2ul, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>(mozilla::VariantIndex<2ul> const&, mozilla::OmxPromiseLayer::OmxBufferFailureHolder&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<1ul, nsTArray<mozilla::OmxPromiseLayer::BufferData*>&>(mozilla::VariantIndex<1ul> const&, nsTArray<mozilla::OmxPromiseLayer::BufferData*>&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Variant<2ul, mozilla::OmxPromiseLayer::OmxCommandFailureHolder&>(mozilla::VariantIndex<2ul> const&, mozilla::OmxPromiseLayer::OmxCommandFailureHolder&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<2ul, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>(mozilla::VariantIndex<2ul> const&, mozilla::OmxPromiseLayer::OmxBufferFailureHolder&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<1ul, mozilla::OmxPromiseLayer::BufferData* const&>(mozilla::VariantIndex<1ul> const&, mozilla::OmxPromiseLayer::BufferData* const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant<2ul, mozilla::OmxPromiseLayer::OmxBufferFailureHolder const&>(mozilla::VariantIndex<2ul> const&, mozilla::OmxPromiseLayer::OmxBufferFailureHolder const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant<2ul, nsresult&>(mozilla::VariantIndex<2ul> const&, nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant<2ul, nsresult&>(mozilla::VariantIndex<2ul> const&, nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Variant<1ul, mozilla::MediaResult&>(mozilla::VariantIndex<1ul> const&, mozilla::MediaResult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Variant<1ul, mozilla::dom::WebAuthnMakeCredentialResult>(mozilla::VariantIndex<1ul> const&, mozilla::dom::WebAuthnMakeCredentialResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Variant<2ul, nsresult>(mozilla::VariantIndex<2ul> const&, nsresult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Variant<1ul, mozilla::dom::WebAuthnGetAssertionResult>(mozilla::VariantIndex<1ul> const&, mozilla::dom::WebAuthnGetAssertionResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Variant<2ul, nsresult>(mozilla::VariantIndex<2ul> const&, nsresult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Variant<2ul, nsresult&>(mozilla::VariantIndex<2ul> const&, nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Variant<2ul, nsresult&>(mozilla::VariantIndex<2ul> const&, nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Variant<1ul, mozilla::dom::ServiceWorkerRegistrationDescriptor const&>(mozilla::VariantIndex<1ul> const&, mozilla::dom::ServiceWorkerRegistrationDescriptor const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Variant<2ul, mozilla::CopyableErrorResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::CopyableErrorResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Variant<1ul, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor> const&>(mozilla::VariantIndex<1ul> const&, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Variant<2ul, mozilla::CopyableErrorResult const&>(mozilla::VariantIndex<2ul> const&, mozilla::CopyableErrorResult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Variant<2ul, mozilla::ErrorResult>(mozilla::VariantIndex<2ul> const&, mozilla::ErrorResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Variant<1ul, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>&>(mozilla::VariantIndex<1ul> const&, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Variant<2ul, nsresult&>(mozilla::VariantIndex<2ul> const&, nsresult&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Variant<2ul, mozilla::CopyableErrorResult>(mozilla::VariantIndex<2ul> const&, mozilla::CopyableErrorResult&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::Variant<1ul, nsTString<char> const&>(mozilla::VariantIndex<1ul> const&, nsTString<char> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::Variant<1ul, bool&>(mozilla::VariantIndex<1ul> const&, bool&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::Variant<2ul, nsresult const&>(mozilla::VariantIndex<2ul> const&, nsresult const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::Variant<1ul, unsigned int const&>(mozilla::VariantIndex<1ul> const&, unsigned int const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::Variant<1ul, unsigned int>(mozilla::VariantIndex<1ul> const&, unsigned int&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant<1ul, int>(mozilla::VariantIndex<1ul> const&, int&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant<1ul, int const&>(mozilla::VariantIndex<1ul> const&, int const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant<2ul, double const&>(mozilla::VariantIndex<2ul> const&, double const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant<2ul, int>(mozilla::VariantIndex<2ul> const&, int&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant<2ul, double>(mozilla::VariantIndex<2ul> const&, double&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant<1ul, int&>(mozilla::VariantIndex<1ul> const&, int&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::Variant<1ul, nsTArray<int> >(mozilla::VariantIndex<1ul> const&, nsTArray<int>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::Variant<1ul, nsTArray<int> const&>(mozilla::VariantIndex<1ul> const&, nsTArray<int> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::Variant<2ul, double const&>(mozilla::VariantIndex<2ul> const&, double const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::Variant<2ul, double>(mozilla::VariantIndex<2ul> const&, double&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant<2ul, double&>(mozilla::VariantIndex<2ul> const&, double&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Variant<1ul, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > >(mozilla::VariantIndex<1ul> const&, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Variant<0ul>(mozilla::VariantIndex<0ul> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Variant<1ul, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> > >(mozilla::VariantIndex<1ul> const&, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Variant<2ul, bool>(mozilla::VariantIndex<2ul> const&, bool&&) |
561 | | |
562 | | /** |
563 | | * Constructs this Variant from an AsVariantTemporary<T> such that T can be |
564 | | * stored in one of the types allowable in this Variant. This is used in the |
565 | | * implementation of AsVariant(). |
566 | | */ |
567 | | template<typename RefT> |
568 | | MOZ_IMPLICIT Variant(detail::AsVariantTemporary<RefT>&& aValue) |
569 | | : tag(Impl::template tag<typename detail::SelectVariantType<RefT, Ts...>::Type>()) |
570 | 19.4k | { |
571 | 19.4k | using T = typename detail::SelectVariantType<RefT, Ts...>::Type; |
572 | 19.4k | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, |
573 | 19.4k | "Variant can only be selected by type if that type is unique"); |
574 | 19.4k | ::new (KnownNotNull, ptr()) T(std::move(aValue.mValue)); |
575 | 19.4k | } Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Variant<unsigned long&>(mozilla::detail::AsVariantTemporary<unsigned long&>&&) Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Variant<unsigned long const&>(mozilla::detail::AsVariantTemporary<unsigned long const&>&&) Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Variant<mozilla::CooperativeThreadPool::AllThreadsBlocked>(mozilla::detail::AsVariantTemporary<mozilla::CooperativeThreadPool::AllThreadsBlocked>&&) mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::Variant<PrefsHashIter::Elem>(mozilla::detail::AsVariantTemporary<PrefsHashIter::Elem>&&) Line | Count | Source | 570 | 6 | { | 571 | 6 | using T = typename detail::SelectVariantType<RefT, Ts...>::Type; | 572 | 6 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 573 | 6 | "Variant can only be selected by type if that type is unique"); | 574 | 6 | ::new (KnownNotNull, ptr()) T(std::move(aValue.mValue)); | 575 | 6 | } |
Unexecuted instantiation: mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::Variant<mozilla::SharedPrefMap::Pref>(mozilla::detail::AsVariantTemporary<mozilla::SharedPrefMap::Pref>&&) mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::Variant<Pref*&>(mozilla::detail::AsVariantTemporary<Pref*&>&&) Line | Count | Source | 570 | 18.0k | { | 571 | 18.0k | using T = typename detail::SelectVariantType<RefT, Ts...>::Type; | 572 | 18.0k | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 573 | 18.0k | "Variant can only be selected by type if that type is unique"); | 574 | 18.0k | ::new (KnownNotNull, ptr()) T(std::move(aValue.mValue)); | 575 | 18.0k | } |
Unexecuted instantiation: mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::Variant<mozilla::SharedPrefMap::Pref const&>(mozilla::detail::AsVariantTemporary<mozilla::SharedPrefMap::Pref const&>&&) mozilla::Variant<nsTString<char>, char const**>::Variant<nsTString<char> >(mozilla::detail::AsVariantTemporary<nsTString<char> >&&) Line | Count | Source | 570 | 1.40k | { | 571 | 1.40k | using T = typename detail::SelectVariantType<RefT, Ts...>::Type; | 572 | 1.40k | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 573 | 1.40k | "Variant can only be selected by type if that type is unique"); | 574 | 1.40k | ::new (KnownNotNull, ptr()) T(std::move(aValue.mValue)); | 575 | 1.40k | } |
mozilla::Variant<nsTString<char>, char const**>::Variant<char const**&>(mozilla::detail::AsVariantTemporary<char const**&>&&) Line | Count | Source | 570 | 37 | { | 571 | 37 | using T = typename detail::SelectVariantType<RefT, Ts...>::Type; | 572 | 37 | static_assert(detail::SelectVariantType<RefT, Ts...>::count == 1, | 573 | 37 | "Variant can only be selected by type if that type is unique"); | 574 | 37 | ::new (KnownNotNull, ptr()) T(std::move(aValue.mValue)); | 575 | 37 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Variant<mozilla::layers::FocusTarget::NoFocusTarget&>(mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::NoFocusTarget&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Variant<mozilla::layers::FocusTarget::ScrollTargets&>(mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::ScrollTargets&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Variant<mozilla::layers::LayersId&>(mozilla::detail::AsVariantTemporary<mozilla::layers::LayersId&>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant<unsigned int&>(mozilla::detail::AsVariantTemporary<unsigned int&>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant<nsTString<char16_t>&>(mozilla::detail::AsVariantTemporary<nsTString<char16_t>&>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant<bool&>(mozilla::detail::AsVariantTemporary<bool&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<bool&>(mozilla::detail::AsVariantTemporary<bool&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<nsTString<char>&>(mozilla::detail::AsVariantTemporary<nsTString<char>&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<unsigned long&>(mozilla::detail::AsVariantTemporary<unsigned long&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<long&>(mozilla::detail::AsVariantTemporary<long&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<unsigned int&>(mozilla::detail::AsVariantTemporary<unsigned int&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<int&>(mozilla::detail::AsVariantTemporary<int&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<unsigned short&>(mozilla::detail::AsVariantTemporary<unsigned short&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<short&>(mozilla::detail::AsVariantTemporary<short&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<unsigned char&>(mozilla::detail::AsVariantTemporary<unsigned char&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<signed char&>(mozilla::detail::AsVariantTemporary<signed char&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Variant<mozilla::plugins::IpdlTuple::InvalidType&>(mozilla::detail::AsVariantTemporary<mozilla::plugins::IpdlTuple::InvalidType&>&&) Unexecuted instantiation: mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::Variant<char const*>(mozilla::detail::AsVariantTemporary<char const*>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Variant<mozilla::layers::FocusTarget::NoFocusTarget>(mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::NoFocusTarget>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Variant<mozilla::layers::LayersId>(mozilla::detail::AsVariantTemporary<mozilla::layers::LayersId>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::image::WriteState>::Variant<unsigned int&>(mozilla::detail::AsVariantTemporary<unsigned int&>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::image::WriteState>::Variant<unsigned int>(mozilla::detail::AsVariantTemporary<unsigned int>&&) Unexecuted instantiation: mozilla::Variant<unsigned char, mozilla::image::WriteState>::Variant<unsigned char>(mozilla::detail::AsVariantTemporary<unsigned char>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::image::WriteState>::Variant<mozilla::image::WriteState>(mozilla::detail::AsVariantTemporary<mozilla::image::WriteState>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::image::WriteState>::Variant<unsigned int const&>(mozilla::detail::AsVariantTemporary<unsigned int const&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::Variant<mozilla::Nothing>(mozilla::detail::AsVariantTemporary<mozilla::Nothing>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::Variant<mozilla::dom::WorkerPrivate*&>(mozilla::detail::AsVariantTemporary<mozilla::dom::WorkerPrivate*&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::Variant<RefPtr<nsPIDOMWindowInner> >(mozilla::detail::AsVariantTemporary<RefPtr<nsPIDOMWindowInner> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::Variant<nsCOMPtr<nsIDocShell> >(mozilla::detail::AsVariantTemporary<nsCOMPtr<nsIDocShell> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Variant<mozilla::dom::ClientWindowState const&>(mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWindowState const&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Variant<mozilla::dom::ClientWorkerState const&>(mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWorkerState const&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Variant<mozilla::dom::ClientWindowState>(mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWindowState>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Variant<mozilla::dom::ClientWorkerState>(mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWorkerState>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Variant<mozilla::dom::quota::OriginScope::Origin>(mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Origin>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Variant<mozilla::dom::quota::OriginScope::Prefix>(mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Prefix>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Variant<mozilla::dom::quota::OriginScope::Pattern>(mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Pattern>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::BlendAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::BlendAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::ColorMatrixAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ColorMatrixAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::ComponentTransferAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ComponentTransferAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::CompositeAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::CompositeAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::ConvolveMatrixAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ConvolveMatrixAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::DiffuseLightingAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::DiffuseLightingAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::OffsetAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::OffsetAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::DisplacementMapAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::DisplacementMapAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::DropShadowAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::DropShadowAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::FloodAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::FloodAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::GaussianBlurAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::GaussianBlurAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::ImageAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ImageAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::MergeAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::MergeAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::MorphologyAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::MorphologyAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::SpecularLightingAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::SpecularLightingAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::TileAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::TileAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::TurbulenceAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::TurbulenceAttributes>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::Variant<mozilla::dom::ipc::StructuredCloneData>(mozilla::detail::AsVariantTemporary<mozilla::dom::ipc::StructuredCloneData>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::Variant<unsigned int&>(mozilla::detail::AsVariantTemporary<unsigned int&>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::Variant<unsigned int>(mozilla::detail::AsVariantTemporary<unsigned int>&&) Unexecuted instantiation: mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>&>(mozilla::detail::AsVariantTemporary<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>&>&&) Unexecuted instantiation: mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>&>(mozilla::detail::AsVariantTemporary<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::GaussianBlurAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::GaussianBlurAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::OpacityAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::OpacityAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant<mozilla::gfx::ToAlphaAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::Variant<nsILoadInfo*&>(mozilla::detail::AsVariantTemporary<nsILoadInfo*&>&&) Unexecuted instantiation: mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::Variant<nsPIDOMWindowOuter*&>(mozilla::detail::AsVariantTemporary<nsPIDOMWindowOuter*&>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::image::WriteState>::Variant<mozilla::image::WriteState&>(mozilla::detail::AsVariantTemporary<mozilla::image::WriteState&>&&) Unexecuted instantiation: mozilla::Variant<unsigned char, mozilla::image::WriteState>::Variant<mozilla::image::WriteState>(mozilla::detail::AsVariantTemporary<mozilla::image::WriteState>&&) Unexecuted instantiation: mozilla::Variant<unsigned char, mozilla::image::WriteState>::Variant<mozilla::image::WriteState&>(mozilla::detail::AsVariantTemporary<mozilla::image::WriteState&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Variant<mozilla::dom::quota::OriginScope::Null>(mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Null>&&) Unexecuted instantiation: mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::Variant<mozilla::UniquePtr<char [], JS::FreePolicy> >(mozilla::detail::AsVariantTemporary<mozilla::UniquePtr<char [], JS::FreePolicy> >&&) Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::Variant<js::ScriptSourceObject*>(mozilla::detail::AsVariantTemporary<js::ScriptSourceObject*>&&) Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::Variant<js::WasmInstanceObject*>(mozilla::detail::AsVariantTemporary<js::WasmInstanceObject*>&&) Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::Variant<js::WasmInstanceObject*&>(mozilla::detail::AsVariantTemporary<js::WasmInstanceObject*&>&&) Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Variant<JSScript*>(mozilla::detail::AsVariantTemporary<JSScript*>&&) Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Variant<js::LazyScript*>(mozilla::detail::AsVariantTemporary<js::LazyScript*>&&) Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Variant<js::WasmInstanceObject*>(mozilla::detail::AsVariantTemporary<js::WasmInstanceObject*>&&) |
576 | | |
577 | | /** Copy construction. */ |
578 | | Variant(const Variant& aRhs) |
579 | | : tag(aRhs.tag) |
580 | 342 | { |
581 | 342 | Impl::copyConstruct(ptr(), aRhs); |
582 | 342 | } Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Variant(mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&) mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Variant(mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> const&) Line | Count | Source | 580 | 90 | { | 581 | 90 | Impl::copyConstruct(ptr(), aRhs); | 582 | 90 | } |
mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::Variant(mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref> const&) Line | Count | Source | 580 | 12 | { | 581 | 12 | Impl::copyConstruct(ptr(), aRhs); | 582 | 12 | } |
Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Variant(mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> > const&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Variant(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::Variant(mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Variant(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Variant(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Variant(mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, long>::Variant(mozilla::Variant<mozilla::Nothing, long> const&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::Variant(mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult> const&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, nsresult>::Variant(mozilla::Variant<unsigned int, nsresult> const&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Variant(mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null> const&) Unexecuted instantiation: mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Variant(mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> > const&) Unexecuted instantiation: mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Variant(mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*> const&) Unexecuted instantiation: mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::Variant(mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> const&) Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::Variant(mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant(mozilla::Variant<unsigned int, bool, nsTString<char16_t> > const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant(mozilla::Variant<mozilla::Nothing, int, double> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Variant(mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Variant(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Variant(mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> const&) Line | Count | Source | 580 | 232 | { | 581 | 232 | Impl::copyConstruct(ptr(), aRhs); | 582 | 232 | } |
Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Variant(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::Variant(mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const> const&) Line | Count | Source | 580 | 8 | { | 581 | 8 | Impl::copyConstruct(ptr(), aRhs); | 582 | 8 | } |
|
583 | | |
584 | | /** Move construction. */ |
585 | | Variant(Variant&& aRhs) |
586 | | : tag(aRhs.tag) |
587 | 7.90k | { |
588 | 7.90k | Impl::moveConstruct(ptr(), std::move(aRhs)); |
589 | 7.90k | } Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::Variant(mozilla::Variant<mozilla::Nothing, bool, bool>&&) mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Variant(mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>&&) Line | Count | Source | 587 | 774 | { | 588 | 774 | Impl::moveConstruct(ptr(), std::move(aRhs)); | 589 | 774 | } |
mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::Variant(mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>&&) Line | Count | Source | 587 | 6.89k | { | 588 | 6.89k | Impl::moveConstruct(ptr(), std::move(aRhs)); | 589 | 6.89k | } |
Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, bool, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>&&) Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Variant(mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >&&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Variant(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Variant(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Variant(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::Variant(mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Variant(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Variant(mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Variant(mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Variant(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::Variant(mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::Variant(mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::Variant(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Variant(mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsresult, bool>::Variant(mozilla::Variant<mozilla::Nothing, nsresult, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Variant(mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Variant(mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Variant(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Variant(mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>&&) Unexecuted instantiation: mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Variant(mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Variant(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Variant(mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::Variant(mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::Variant(mozilla::Variant<unsigned int, bool, nsTString<char16_t> >&&) Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Variant(mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >&&) Unexecuted instantiation: mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::Variant(mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::Variant(mozilla::Variant<mozilla::Nothing, int, double>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::Variant(mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Variant(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>&&) mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Variant(mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>&&) Line | Count | Source | 587 | 232 | { | 588 | 232 | Impl::moveConstruct(ptr(), std::move(aRhs)); | 589 | 232 | } |
Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Variant(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&&) Unexecuted instantiation: mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Variant(mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&&) Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::Variant(mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>&&) Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Variant(mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>&&) mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Variant(mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&&) Line | Count | Source | 587 | 9 | { | 588 | 9 | Impl::moveConstruct(ptr(), std::move(aRhs)); | 589 | 9 | } |
Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Variant(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&&) |
590 | | |
591 | | /** Copy assignment. */ |
592 | 206 | Variant& operator=(const Variant& aRhs) { |
593 | 206 | MOZ_ASSERT(&aRhs != this, "self-assign disallowed"); |
594 | 206 | this->~Variant(); |
595 | 206 | ::new (KnownNotNull, this) Variant(aRhs); |
596 | 206 | return *this; |
597 | 206 | } mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::operator=(mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)> const&) Line | Count | Source | 592 | 90 | Variant& operator=(const Variant& aRhs) { | 593 | 90 | MOZ_ASSERT(&aRhs != this, "self-assign disallowed"); | 594 | 90 | this->~Variant(); | 595 | 90 | ::new (KnownNotNull, this) Variant(aRhs); | 596 | 90 | return *this; | 597 | 90 | } |
Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::operator=(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> > const&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::operator=(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::operator=(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::operator=(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::operator=(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::operator=(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::operator=(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::operator=(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::operator=(mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult> const&) Unexecuted instantiation: mozilla::Variant<unsigned int, nsresult>::operator=(mozilla::Variant<unsigned int, nsresult> const&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::operator=(mozilla::Variant<mozilla::Nothing, int, double> const&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::operator=(mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState> const&) Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::operator=(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::operator=(mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*> const&) Line | Count | Source | 592 | 116 | Variant& operator=(const Variant& aRhs) { | 593 | 116 | MOZ_ASSERT(&aRhs != this, "self-assign disallowed"); | 594 | 116 | this->~Variant(); | 595 | 116 | ::new (KnownNotNull, this) Variant(aRhs); | 596 | 116 | return *this; | 597 | 116 | } |
|
598 | | |
599 | | /** Move assignment. */ |
600 | 757 | Variant& operator=(Variant&& aRhs) { |
601 | 757 | MOZ_ASSERT(&aRhs != this, "self-assign disallowed"); |
602 | 757 | this->~Variant(); |
603 | 757 | ::new (KnownNotNull, this) Variant(std::move(aRhs)); |
604 | 757 | return *this; |
605 | 757 | } Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::operator=(mozilla::Variant<mozilla::Nothing, bool, bool>&&) mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::operator=(mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>&&) Line | Count | Source | 600 | 516 | Variant& operator=(Variant&& aRhs) { | 601 | 516 | MOZ_ASSERT(&aRhs != this, "self-assign disallowed"); | 602 | 516 | this->~Variant(); | 603 | 516 | ::new (KnownNotNull, this) Variant(std::move(aRhs)); | 604 | 516 | return *this; | 605 | 516 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, bool, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=(mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>&&) Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::operator=(mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >&&) Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::operator=(mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::operator=(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::operator=(mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>&&) Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::operator=(mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>&&) Unexecuted instantiation: mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::operator=(mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::operator=(mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::operator=(mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::operator=(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::operator=(mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::operator=(mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::operator=(mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsresult, bool>::operator=(mozilla::Variant<mozilla::Nothing, nsresult, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::operator=(mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::operator=(mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>&&) Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::operator=(mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::operator=(mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::operator=(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>&&) Unexecuted instantiation: mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::operator=(mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::operator=(mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::operator=(mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::operator=(mozilla::Variant<mozilla::Nothing, int, double>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::operator=(mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::operator=(mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>&&) Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::operator=(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >&&) mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::operator=(mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>&&) Line | Count | Source | 600 | 232 | Variant& operator=(Variant&& aRhs) { | 601 | 232 | MOZ_ASSERT(&aRhs != this, "self-assign disallowed"); | 602 | 232 | this->~Variant(); | 603 | 232 | ::new (KnownNotNull, this) Variant(std::move(aRhs)); | 604 | 232 | return *this; | 605 | 232 | } |
Unexecuted instantiation: mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::operator=(mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>&&) Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::operator=(mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>&&) mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::operator=(mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>&&) Line | Count | Source | 600 | 9 | Variant& operator=(Variant&& aRhs) { | 601 | 9 | MOZ_ASSERT(&aRhs != this, "self-assign disallowed"); | 602 | 9 | this->~Variant(); | 603 | 9 | ::new (KnownNotNull, this) Variant(std::move(aRhs)); | 604 | 9 | return *this; | 605 | 9 | } |
Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::operator=(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>&&) |
606 | | |
607 | | /** Move assignment from AsVariant(). */ |
608 | | template<typename T> |
609 | | Variant& operator=(detail::AsVariantTemporary<T>&& aValue) |
610 | 0 | { |
611 | 0 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, |
612 | 0 | "Variant can only be selected by type if that type is unique"); |
613 | 0 | this->~Variant(); |
614 | 0 | ::new (KnownNotNull, this) Variant(std::move(aValue)); |
615 | 0 | return *this; |
616 | 0 | } Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::operator=<unsigned int&>(mozilla::detail::AsVariantTemporary<unsigned int&>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::operator=<nsTString<char16_t>&>(mozilla::detail::AsVariantTemporary<nsTString<char16_t>&>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::operator=<bool&>(mozilla::detail::AsVariantTemporary<bool&>&&) Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>& mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::operator=<unsigned long&>(mozilla::detail::AsVariantTemporary<unsigned long&>&&) Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>& mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::operator=<mozilla::CooperativeThreadPool::AllThreadsBlocked>(mozilla::detail::AsVariantTemporary<mozilla::CooperativeThreadPool::AllThreadsBlocked>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::ToAlphaAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ToAlphaAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::SpecularLightingAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::SpecularLightingAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::DiffuseLightingAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::DiffuseLightingAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::DropShadowAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::DropShadowAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::GaussianBlurAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::GaussianBlurAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::ImageAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ImageAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::MergeAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::MergeAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::CompositeAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::CompositeAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::TurbulenceAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::TurbulenceAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::DisplacementMapAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::DisplacementMapAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::OffsetAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::OffsetAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::ConvolveMatrixAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ConvolveMatrixAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::OpacityAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::OpacityAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::ComponentTransferAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ComponentTransferAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::TileAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::TileAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::FloodAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::FloodAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::ColorMatrixAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ColorMatrixAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::MorphologyAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::MorphologyAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::BlendAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::BlendAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::EmptyAttributes&>(mozilla::detail::AsVariantTemporary<mozilla::gfx::EmptyAttributes&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::operator=<mozilla::layers::FocusTarget::NoFocusTarget&>(mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::NoFocusTarget&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::operator=<mozilla::layers::FocusTarget::ScrollTargets&>(mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::ScrollTargets&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::operator=<mozilla::layers::LayersId&>(mozilla::detail::AsVariantTemporary<mozilla::layers::LayersId&>&&) Unexecuted instantiation: mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>& mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::operator=<mozilla::SharedPrefMap::Pref>(mozilla::detail::AsVariantTemporary<mozilla::SharedPrefMap::Pref>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<bool&>(mozilla::detail::AsVariantTemporary<bool&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<nsTString<char>&>(mozilla::detail::AsVariantTemporary<nsTString<char>&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<unsigned long&>(mozilla::detail::AsVariantTemporary<unsigned long&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<long&>(mozilla::detail::AsVariantTemporary<long&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<unsigned int&>(mozilla::detail::AsVariantTemporary<unsigned int&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<int&>(mozilla::detail::AsVariantTemporary<int&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<unsigned short&>(mozilla::detail::AsVariantTemporary<unsigned short&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<short&>(mozilla::detail::AsVariantTemporary<short&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<unsigned char&>(mozilla::detail::AsVariantTemporary<unsigned char&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<signed char&>(mozilla::detail::AsVariantTemporary<signed char&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::operator=<mozilla::plugins::IpdlTuple::InvalidType&>(mozilla::detail::AsVariantTemporary<mozilla::plugins::IpdlTuple::InvalidType&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::operator=<mozilla::layers::LayersId>(mozilla::detail::AsVariantTemporary<mozilla::layers::LayersId>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::operator=<mozilla::dom::WorkerPrivate*&>(mozilla::detail::AsVariantTemporary<mozilla::dom::WorkerPrivate*&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::operator=<RefPtr<nsPIDOMWindowInner> >(mozilla::detail::AsVariantTemporary<RefPtr<nsPIDOMWindowInner> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::operator=<nsCOMPtr<nsIDocShell> >(mozilla::detail::AsVariantTemporary<nsCOMPtr<nsIDocShell> >&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::operator=<mozilla::dom::quota::OriginScope::Origin>(mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Origin>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::operator=<mozilla::dom::quota::OriginScope::Prefix>(mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Prefix>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::operator=<mozilla::dom::quota::OriginScope::Pattern>(mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Pattern>&&) Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::operator=<mozilla::dom::quota::OriginScope::Null>(mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Null>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>& mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::operator=<mozilla::dom::ipc::StructuredCloneData>(mozilla::detail::AsVariantTemporary<mozilla::dom::ipc::StructuredCloneData>&&) Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>& mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::operator=<unsigned int&>(mozilla::detail::AsVariantTemporary<unsigned int&>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::ComponentTransferAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ComponentTransferAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::DropShadowAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::DropShadowAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::ColorMatrixAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::ColorMatrixAttributes>&&) Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator=<mozilla::gfx::OpacityAttributes>(mozilla::detail::AsVariantTemporary<mozilla::gfx::OpacityAttributes>&&) Unexecuted instantiation: mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >& mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::operator=<mozilla::UniquePtr<char [], JS::FreePolicy> >(mozilla::detail::AsVariantTemporary<mozilla::UniquePtr<char [], JS::FreePolicy> >&&) |
617 | | |
618 | | ~Variant() |
619 | 96.7M | { |
620 | 96.7M | Impl::destroy(*this); |
621 | 96.7M | } mozilla::Variant<unsigned int, nsresult>::~Variant() Line | Count | Source | 619 | 95.0M | { | 620 | 95.0M | Impl::destroy(*this); | 621 | 95.0M | } |
mozilla::Variant<nsTString<char> const, nsresult>::~Variant() Line | Count | Source | 619 | 48 | { | 620 | 48 | Impl::destroy(*this); | 621 | 48 | } |
Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, bool>::~Variant() mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::~Variant() Line | Count | Source | 619 | 1.21k | { | 620 | 1.21k | Impl::destroy(*this); | 621 | 1.21k | } |
mozilla::Variant<char const*, nsTString<char> const>::~Variant() Line | Count | Source | 619 | 83 | { | 620 | 83 | Impl::destroy(*this); | 621 | 83 | } |
mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::~Variant() Line | Count | Source | 619 | 6 | { | 620 | 6 | Impl::destroy(*this); | 621 | 6 | } |
mozilla::Variant<mozilla::Ok, char const*>::~Variant() Line | Count | Source | 619 | 3 | { | 620 | 3 | Impl::destroy(*this); | 621 | 3 | } |
Unexecuted instantiation: mozilla::Variant<nsTString<char>, char const**>::~Variant() mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::~Variant() Line | Count | Source | 619 | 24.9k | { | 620 | 24.9k | Impl::destroy(*this); | 621 | 24.9k | } |
mozilla::Variant<Pref*, nsresult>::~Variant() Line | Count | Source | 619 | 3 | { | 620 | 3 | Impl::destroy(*this); | 621 | 3 | } |
Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::~Variant() Unexecuted instantiation: mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::~Variant() Unexecuted instantiation: mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::~Variant() mozilla::Variant<nsTString<char>, nsresult>::~Variant() Line | Count | Source | 619 | 5 | { | 620 | 5 | Impl::destroy(*this); | 621 | 5 | } |
mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::~Variant() Line | Count | Source | 619 | 12 | { | 620 | 12 | Impl::destroy(*this); | 621 | 12 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::~Variant() mozilla::Variant<mozilla::FileLocation, nsresult>::~Variant() Line | Count | Source | 619 | 24 | { | 620 | 24 | Impl::destroy(*this); | 621 | 24 | } |
Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::~Variant() Unexecuted instantiation: mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::~Variant() Unexecuted instantiation: mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::~Variant() Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::image::WriteState>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::~Variant() Unexecuted instantiation: mozilla::Variant<unsigned char, mozilla::image::WriteState>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::~Variant() Unexecuted instantiation: mozilla::Variant<nsIFrame*, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::~Variant() Unexecuted instantiation: mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, long>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsresult, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<unsigned long, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<int, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::~Variant() Unexecuted instantiation: mozilla::Variant<long, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::~Variant() Unexecuted instantiation: mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::~Variant() Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::~Variant() Unexecuted instantiation: mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::~Variant() Unexecuted instantiation: mozilla::Variant<nsTString<char16_t>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::~Variant() Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::~Variant() Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*>::~Variant() Unexecuted instantiation: mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, int, double>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::~Variant() Unexecuted instantiation: mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::~Variant() mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::~Variant() Line | Count | Source | 619 | 696 | { | 620 | 696 | Impl::destroy(*this); | 621 | 696 | } |
mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::~Variant() Line | Count | Source | 619 | 1.62M | { | 620 | 1.62M | Impl::destroy(*this); | 621 | 1.62M | } |
mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::~Variant() Line | Count | Source | 619 | 40 | { | 620 | 40 | Impl::destroy(*this); | 621 | 40 | } |
mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::~Variant() Line | Count | Source | 619 | 70 | { | 620 | 70 | Impl::destroy(*this); | 621 | 70 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::~Variant() mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::~Variant() Line | Count | Source | 619 | 70 | { | 620 | 70 | Impl::destroy(*this); | 621 | 70 | } |
Unexecuted instantiation: mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::~Variant() Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::~Variant() mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::~Variant() Line | Count | Source | 619 | 18 | { | 620 | 18 | Impl::destroy(*this); | 621 | 18 | } |
Unexecuted instantiation: mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::~Variant() mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::~Variant() Line | Count | Source | 619 | 1.00k | { | 620 | 1.00k | Impl::destroy(*this); | 621 | 1.00k | } |
mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::~Variant() Line | Count | Source | 619 | 16 | { | 620 | 16 | Impl::destroy(*this); | 621 | 16 | } |
Unexecuted instantiation: mozilla::Variant<bool, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<unsigned int, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<double, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinVariant, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::~Variant() Unexecuted instantiation: mozilla::Variant<unsigned char, JS::Error*>::~Variant() |
622 | | |
623 | | /** Check which variant type is currently contained. */ |
624 | | template<typename T> |
625 | 100M | bool is() const { |
626 | 100M | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, |
627 | 100M | "provided a type not uniquely found in this Variant's type list"); |
628 | 100M | return Impl::template tag<T>() == tag; |
629 | 100M | } Unexecuted instantiation: bool mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::is<unsigned int>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::is<nsTString<char16_t> >() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::is<bool>() const bool mozilla::Variant<unsigned int, nsresult>::is<unsigned int>() const Line | Count | Source | 625 | 98.2M | bool is() const { | 626 | 98.2M | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 98.2M | "provided a type not uniquely found in this Variant's type list"); | 628 | 98.2M | return Impl::template tag<T>() == tag; | 629 | 98.2M | } |
Unexecuted instantiation: bool mozilla::Variant<unsigned int, nsresult>::is<nsresult>() const bool mozilla::Variant<nsTString<char> const, nsresult>::is<nsTString<char> const>() const Line | Count | Source | 625 | 96 | bool is() const { | 626 | 96 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 96 | "provided a type not uniquely found in this Variant's type list"); | 628 | 96 | return Impl::template tag<T>() == tag; | 629 | 96 | } |
Unexecuted instantiation: bool mozilla::Variant<nsTString<char> const, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::is<mozilla::CooperativeThreadPool::AllThreadsBlocked>() const Unexecuted instantiation: bool mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::is<unsigned long>() const Unexecuted instantiation: bool mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::is<char const*>() const Unexecuted instantiation: bool mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::is<void (*)(nsITimer*, bool, void*, char*, unsigned long)>() const Unexecuted instantiation: bool mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::is<nsPIDOMWindowOuter*>() const Unexecuted instantiation: bool mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::is<nsILoadInfo*>() const bool mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::is<PrefsHashIter::Elem>() const Line | Count | Source | 625 | 20.6k | bool is() const { | 626 | 20.6k | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 20.6k | "provided a type not uniquely found in this Variant's type list"); | 628 | 20.6k | return Impl::template tag<T>() == tag; | 629 | 20.6k | } |
bool mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::is<mozilla::SharedPrefMap::Pref>() const Line | Count | Source | 625 | 6.89k | bool is() const { | 626 | 6.89k | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 6.89k | "provided a type not uniquely found in this Variant's type list"); | 628 | 6.89k | return Impl::template tag<T>() == tag; | 629 | 6.89k | } |
bool mozilla::Variant<nsTString<char>, char const**>::is<nsTString<char> >() const Line | Count | Source | 625 | 2.41M | bool is() const { | 626 | 2.41M | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 2.41M | "provided a type not uniquely found in this Variant's type list"); | 628 | 2.41M | return Impl::template tag<T>() == tag; | 629 | 2.41M | } |
Unexecuted instantiation: bool mozilla::Variant<nsTString<char>, char const**>::is<char const**>() const bool mozilla::Variant<Pref*, nsresult>::is<Pref*>() const Line | Count | Source | 625 | 6 | bool is() const { | 626 | 6 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 6 | "provided a type not uniquely found in this Variant's type list"); | 628 | 6 | return Impl::template tag<T>() == tag; | 629 | 6 | } |
bool mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::is<Pref*>() const Line | Count | Source | 625 | 6 | bool is() const { | 626 | 6 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 6 | "provided a type not uniquely found in this Variant's type list"); | 628 | 6 | return Impl::template tag<T>() == tag; | 629 | 6 | } |
Unexecuted instantiation: bool mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::is<mozilla::SharedPrefMap::Pref>() const bool mozilla::Variant<mozilla::Ok, char const*>::is<mozilla::Ok>() const Line | Count | Source | 625 | 3 | bool is() const { | 626 | 3 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 3 | "provided a type not uniquely found in this Variant's type list"); | 628 | 3 | return Impl::template tag<T>() == tag; | 629 | 3 | } |
Unexecuted instantiation: bool mozilla::Variant<mozilla::Ok, char const*>::is<char const*>() const Unexecuted instantiation: bool mozilla::Variant<Pref*, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::is<nsCOMPtr<nsIInputStream> >() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::is<nsCOMPtr<nsIRequest> >() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<mozilla::plugins::IpdlTuple::InvalidType>() const bool mozilla::Variant<nsTString<char>, nsresult>::is<nsTString<char> >() const Line | Count | Source | 625 | 10 | bool is() const { | 626 | 10 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 10 | "provided a type not uniquely found in this Variant's type list"); | 628 | 10 | return Impl::template tag<T>() == tag; | 629 | 10 | } |
Unexecuted instantiation: bool mozilla::Variant<nsTString<char>, nsresult>::is<nsresult>() const bool mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::is<nsCOMPtr<nsIFile> >() const Line | Count | Source | 625 | 21 | bool is() const { | 626 | 21 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 21 | "provided a type not uniquely found in this Variant's type list"); | 628 | 21 | return Impl::template tag<T>() == tag; | 629 | 21 | } |
bool mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::is<nsresult>() const Line | Count | Source | 625 | 3 | bool is() const { | 626 | 3 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 3 | "provided a type not uniquely found in this Variant's type list"); | 628 | 3 | return Impl::template tag<T>() == tag; | 629 | 3 | } |
Unexecuted instantiation: bool mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::is<mozilla::URLPreloader::CacheKey>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::is<nsresult>() const bool mozilla::Variant<mozilla::FileLocation, nsresult>::is<mozilla::FileLocation>() const Line | Count | Source | 625 | 48 | bool is() const { | 626 | 48 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 48 | "provided a type not uniquely found in this Variant's type list"); | 628 | 48 | return Impl::template tag<T>() == tag; | 629 | 48 | } |
Unexecuted instantiation: bool mozilla::Variant<mozilla::FileLocation, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::is<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy> >() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::is<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<mozilla::gfx::TileAttributes>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<mozilla::gfx::OffsetAttributes>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<mozilla::gfx::ToAlphaAttributes>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<mozilla::gfx::ColorMatrixAttributes>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<mozilla::gfx::ComponentTransferAttributes>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<mozilla::gfx::DisplacementMapAttributes>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<mozilla::gfx::ConvolveMatrixAttributes>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<mozilla::gfx::SpecularLightingAttributes>() const Unexecuted instantiation: bool mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::is<nsCSSValueSharedList*>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::is<mozilla::layers::LayersId>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::is<mozilla::layers::FocusTarget::ScrollTargets>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::is<mozilla::layers::FocusTarget::NoFocusTarget>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::is<mozilla::image::TerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::is<mozilla::image::Yield>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, mozilla::image::WriteState>::is<unsigned int>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, mozilla::image::WriteState>::is<mozilla::image::WriteState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::TerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::TerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState>() const Unexecuted instantiation: bool mozilla::Variant<unsigned char, mozilla::image::WriteState>::is<unsigned char>() const Unexecuted instantiation: bool mozilla::Variant<unsigned char, mozilla::image::WriteState>::is<mozilla::image::WriteState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::TerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::TerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::TerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::TerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::is<RefPtr<mozilla::dom::AnimationPlaybackEvent> >() const Unexecuted instantiation: bool mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::is<mozilla::InternalTransitionEvent>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::is<mozilla::InternalAnimationEvent>() const Unexecuted instantiation: bool mozilla::Variant<nsIFrame*, nsresult>::is<nsIFrame*>() const Unexecuted instantiation: bool mozilla::Variant<nsIFrame*, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::is<unsigned int>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::is<mozilla::dom::ipc::StructuredCloneData>() const Unexecuted instantiation: bool mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::is<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback> >() const Unexecuted instantiation: bool mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::is<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::is<mozilla::dom::WorkerPrivate*>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::is<nsCOMPtr<nsIDocShell> >() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::is<RefPtr<nsPIDOMWindowInner> >() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::is<mozilla::Nothing>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::is<mozilla::dom::ClientWindowState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::is<mozilla::dom::ClientWorkerState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, long>::is<long>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::is<mozilla::dom::MediaRecorder::Session::RunningState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<mozilla::DDLogObject>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<nsTString<char> const>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<mozilla::MediaResult>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<mozilla::DDNoValue>() const Unexecuted instantiation: bool mozilla::Variant<unsigned long, nsresult>::is<unsigned long>() const Unexecuted instantiation: bool mozilla::Variant<unsigned long, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<int, nsresult>::is<int>() const Unexecuted instantiation: bool mozilla::Variant<int, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<long, nsresult>::is<long>() const Unexecuted instantiation: bool mozilla::Variant<long, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::is<mozilla::dom::quota::OriginScope::Origin>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::is<mozilla::dom::quota::OriginScope::Prefix>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::is<mozilla::dom::quota::OriginScope::Pattern>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::is<mozilla::dom::quota::OriginScope::Null>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::is<nsCOMPtr<nsITimer> >() const Unexecuted instantiation: bool mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::is<mozilla::dom::ShadowRoot*>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::is<nsXBLPrototypeBinding*>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<nsTString<char16_t>, nsresult>::is<nsTString<char16_t> >() const Unexecuted instantiation: bool mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::is<UniqueStacks::FrameKey::NormalFrameData>() const Unexecuted instantiation: bool mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::is<UniqueStacks::FrameKey::JITFrameData>() const Unexecuted instantiation: bool mozilla::Variant<nsTString<char16_t>, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::is<RefPtr<mozilla::dom::Promise> >() const Unexecuted instantiation: bool mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::is<nsCOMPtr<nsIZipReaderCache> >() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::is<nsresult>() const Unexecuted instantiation: bool mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::is<JSAtom*>() const Unexecuted instantiation: bool mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::is<char16_t const*>() const Unexecuted instantiation: bool mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::is<mozilla::UniquePtr<char16_t [], JS::FreePolicy> >() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::TerminalState>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::is<mozilla::image::LexerTransition<TestState>::NonTerminalState>() const bool mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::is<js::ScriptSource::Missing>() const Line | Count | Source | 625 | 5 | bool is() const { | 626 | 5 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 5 | "provided a type not uniquely found in this Variant's type list"); | 628 | 5 | return Impl::template tag<T>() == tag; | 629 | 5 | } |
bool mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::is<js::ScriptSource::Uncompressed>() const Line | Count | Source | 625 | 8 | bool is() const { | 626 | 8 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 8 | "provided a type not uniquely found in this Variant's type list"); | 628 | 8 | return Impl::template tag<T>() == tag; | 629 | 8 | } |
Unexecuted instantiation: bool mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::is<js::ScriptSource::Compressed>() const Unexecuted instantiation: bool mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::is<js::InterpreterFrame*>() const bool mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::is<JSObject*>() const Line | Count | Source | 625 | 289 | bool is() const { | 626 | 289 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 289 | "provided a type not uniquely found in this Variant's type list"); | 628 | 289 | return Impl::template tag<T>() == tag; | 629 | 289 | } |
bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<js::jit::IonBuilder*>() const Line | Count | Source | 625 | 29 | bool is() const { | 626 | 29 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 29 | "provided a type not uniquely found in this Variant's type list"); | 628 | 29 | return Impl::template tag<T>() == tag; | 629 | 29 | } |
Unexecuted instantiation: bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<js::wasm::CompileTask*>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<js::wasm::Tier2GeneratorTask*>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<js::ParseTask*>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<js::SourceCompressionTask*>() const bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<js::GCParallelTask*>() const Line | Count | Source | 625 | 1.98k | bool is() const { | 626 | 1.98k | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 1.98k | "provided a type not uniquely found in this Variant's type list"); | 628 | 1.98k | return Impl::template tag<T>() == tag; | 629 | 1.98k | } |
bool mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::is<js::jit::MBasicBlock*>() const Line | Count | Source | 625 | 140 | bool is() const { | 626 | 140 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 140 | "provided a type not uniquely found in this Variant's type list"); | 628 | 140 | return Impl::template tag<T>() == tag; | 629 | 140 | } |
Unexecuted instantiation: bool mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::is<js::jit::AbortReason>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::is<js::jit::MInstruction*>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::is<js::jit::AbortReason>() const bool mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::is<js::jit::MCall*>() const Line | Count | Source | 625 | 140 | bool is() const { | 626 | 140 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 627 | 140 | "provided a type not uniquely found in this Variant's type list"); | 628 | 140 | return Impl::template tag<T>() == tag; | 629 | 140 | } |
Unexecuted instantiation: bool mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::is<js::jit::AbortReason>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::is<js::jit::MDefinition*>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::is<js::jit::AbortReason>() const Unexecuted instantiation: bool mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::is<JS::FirstSubsumedFrame>() const Unexecuted instantiation: bool mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::is<char const*>() const Unexecuted instantiation: bool mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::is<mozilla::UniquePtr<char [], JS::FreePolicy> >() const Unexecuted instantiation: bool mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::is<JSObject*>() const Unexecuted instantiation: bool mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::is<js::ScriptSourceObject*>() const Unexecuted instantiation: bool mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::is<js::WasmInstanceObject*>() const Unexecuted instantiation: bool mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::is<JSScript*>() const Unexecuted instantiation: bool mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::is<js::LazyScript*>() const Unexecuted instantiation: bool mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::is<js::WasmInstanceObject*>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<js::PromiseHelperTask*>() const Unexecuted instantiation: bool mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::is<JS::AllFrames>() const Unexecuted instantiation: bool mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::is<JS::MaxFrames>() const Unexecuted instantiation: bool mozilla::Variant<bool, JS::Error*>::is<bool>() const Unexecuted instantiation: bool mozilla::Variant<bool, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, JS::Error*>::is<unsigned int>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<double, JS::Error*>::is<double>() const Unexecuted instantiation: bool mozilla::Variant<double, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinVariant, JS::Error*>::is<js::frontend::BinVariant>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinVariant, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::is<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::is<JS::Error*>() const Unexecuted instantiation: bool mozilla::Variant<unsigned char, JS::Error*>::is<unsigned char>() const Unexecuted instantiation: bool mozilla::Variant<unsigned char, JS::Error*>::is<JS::Error*>() const |
630 | | |
631 | | template<size_t N> |
632 | | bool is() const |
633 | 196M | { |
634 | 196M | static_assert(N < sizeof...(Ts), |
635 | 196M | "provided an index outside of this Variant's type list"); |
636 | 196M | return N == size_t(tag); |
637 | 196M | } Unexecuted instantiation: bool mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::is<2ul>() const bool mozilla::Variant<unsigned int, nsresult>::is<0ul>() const Line | Count | Source | 633 | 190M | { | 634 | 190M | static_assert(N < sizeof...(Ts), | 635 | 190M | "provided an index outside of this Variant's type list"); | 636 | 190M | return N == size_t(tag); | 637 | 190M | } |
Unexecuted instantiation: bool mozilla::Variant<unsigned int, nsresult>::is<1ul>() const bool mozilla::Variant<nsTString<char> const, nsresult>::is<0ul>() const Line | Count | Source | 633 | 96 | { | 634 | 96 | static_assert(N < sizeof...(Ts), | 635 | 96 | "provided an index outside of this Variant's type list"); | 636 | 96 | return N == size_t(tag); | 637 | 96 | } |
Unexecuted instantiation: bool mozilla::Variant<nsTString<char> const, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<3ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<4ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<5ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<6ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<7ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<8ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<9ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<10ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<11ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<12ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<13ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<14ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<15ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<16ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<17ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<18ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::is<19ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::is<2ul>() const bool mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::is<0ul>() const Line | Count | Source | 633 | 4.13k | { | 634 | 4.13k | static_assert(N < sizeof...(Ts), | 635 | 4.13k | "provided an index outside of this Variant's type list"); | 636 | 4.13k | return N == size_t(tag); | 637 | 4.13k | } |
bool mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::is<1ul>() const Line | Count | Source | 633 | 1.41k | { | 634 | 1.41k | static_assert(N < sizeof...(Ts), | 635 | 1.41k | "provided an index outside of this Variant's type list"); | 636 | 1.41k | return N == size_t(tag); | 637 | 1.41k | } |
Unexecuted instantiation: bool mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<3ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<4ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<5ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<6ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<7ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<8ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<9ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<10ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<11ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<12ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<13ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<14ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<15ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::is<16ul>() const bool mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::is<0ul>() const Line | Count | Source | 633 | 140k | { | 634 | 140k | static_assert(N < sizeof...(Ts), | 635 | 140k | "provided an index outside of this Variant's type list"); | 636 | 140k | return N == size_t(tag); | 637 | 140k | } |
Unexecuted instantiation: bool mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::is<1ul>() const bool mozilla::Variant<char const*, nsTString<char> const>::is<0ul>() const Line | Count | Source | 633 | 7.06k | { | 634 | 7.06k | static_assert(N < sizeof...(Ts), | 635 | 7.06k | "provided an index outside of this Variant's type list"); | 636 | 7.06k | return N == size_t(tag); | 637 | 7.06k | } |
bool mozilla::Variant<char const*, nsTString<char> const>::is<1ul>() const Line | Count | Source | 633 | 7.06k | { | 634 | 7.06k | static_assert(N < sizeof...(Ts), | 635 | 7.06k | "provided an index outside of this Variant's type list"); | 636 | 7.06k | return N == size_t(tag); | 637 | 7.06k | } |
bool mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::is<0ul>() const Line | Count | Source | 633 | 41.3k | { | 634 | 41.3k | static_assert(N < sizeof...(Ts), | 635 | 41.3k | "provided an index outside of this Variant's type list"); | 636 | 41.3k | return N == size_t(tag); | 637 | 41.3k | } |
Unexecuted instantiation: bool mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::is<1ul>() const bool mozilla::Variant<mozilla::Ok, char const*>::is<0ul>() const Line | Count | Source | 633 | 6 | { | 634 | 6 | static_assert(N < sizeof...(Ts), | 635 | 6 | "provided an index outside of this Variant's type list"); | 636 | 6 | return N == size_t(tag); | 637 | 6 | } |
Unexecuted instantiation: bool mozilla::Variant<mozilla::Ok, char const*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<nsTString<char>, char const**>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsTString<char>, char const**>::is<1ul>() const bool mozilla::Variant<Pref*, nsresult>::is<0ul>() const Line | Count | Source | 633 | 6 | { | 634 | 6 | static_assert(N < sizeof...(Ts), | 635 | 6 | "provided an index outside of this Variant's type list"); | 636 | 6 | return N == size_t(tag); | 637 | 6 | } |
Unexecuted instantiation: bool mozilla::Variant<Pref*, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<3ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<4ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<5ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<6ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<7ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<8ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<9ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::is<10ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::is<2ul>() const bool mozilla::Variant<nsTString<char>, nsresult>::is<0ul>() const Line | Count | Source | 633 | 10 | { | 634 | 10 | static_assert(N < sizeof...(Ts), | 635 | 10 | "provided an index outside of this Variant's type list"); | 636 | 10 | return N == size_t(tag); | 637 | 10 | } |
Unexecuted instantiation: bool mozilla::Variant<nsTString<char>, nsresult>::is<1ul>() const bool mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::is<0ul>() const Line | Count | Source | 633 | 21 | { | 634 | 21 | static_assert(N < sizeof...(Ts), | 635 | 21 | "provided an index outside of this Variant's type list"); | 636 | 21 | return N == size_t(tag); | 637 | 21 | } |
bool mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::is<1ul>() const Line | Count | Source | 633 | 3 | { | 634 | 3 | static_assert(N < sizeof...(Ts), | 635 | 3 | "provided an index outside of this Variant's type list"); | 636 | 3 | return N == size_t(tag); | 637 | 3 | } |
Unexecuted instantiation: bool mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::is<1ul>() const bool mozilla::Variant<mozilla::FileLocation, nsresult>::is<0ul>() const Line | Count | Source | 633 | 48 | { | 634 | 48 | static_assert(N < sizeof...(Ts), | 635 | 48 | "provided an index outside of this Variant's type list"); | 636 | 48 | return N == size_t(tag); | 637 | 48 | } |
Unexecuted instantiation: bool mozilla::Variant<mozilla::FileLocation, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<JSAtom*, char16_t const*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<JSAtom*, char16_t const*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<3ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<4ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<5ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<6ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<7ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<8ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<9ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<10ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<11ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<12ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::is<13ul>() const Unexecuted instantiation: bool mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, mozilla::image::WriteState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, mozilla::image::WriteState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned char, mozilla::image::WriteState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned char, mozilla::image::WriteState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<nsIFrame*, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsIFrame*, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::is<3ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<int, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<int, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned long, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned long, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<long, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<long, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, long>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, long>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsresult, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsresult, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsresult, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::is<3ul>() const Unexecuted instantiation: bool mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<nsTString<char16_t>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsTString<char16_t>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, int, double>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, int, double>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, int, double>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::is<1ul>() const bool mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::is<0ul>() const Line | Count | Source | 633 | 54 | { | 634 | 54 | static_assert(N < sizeof...(Ts), | 635 | 54 | "provided an index outside of this Variant's type list"); | 636 | 54 | return N == size_t(tag); | 637 | 54 | } |
bool mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::is<1ul>() const Line | Count | Source | 633 | 81 | { | 634 | 81 | static_assert(N < sizeof...(Ts), | 635 | 81 | "provided an index outside of this Variant's type list"); | 636 | 81 | return N == size_t(tag); | 637 | 81 | } |
Unexecuted instantiation: bool mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::is<3ul>() const bool mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::is<0ul>() const Line | Count | Source | 633 | 6.49M | { | 634 | 6.49M | static_assert(N < sizeof...(Ts), | 635 | 6.49M | "provided an index outside of this Variant's type list"); | 636 | 6.49M | return N == size_t(tag); | 637 | 6.49M | } |
Unexecuted instantiation: bool mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::is<2ul>() const Unexecuted instantiation: bool mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::is<3ul>() const Unexecuted instantiation: bool mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::is<4ul>() const bool mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::is<0ul>() const Line | Count | Source | 633 | 1.62k | { | 634 | 1.62k | static_assert(N < sizeof...(Ts), | 635 | 1.62k | "provided an index outside of this Variant's type list"); | 636 | 1.62k | return N == size_t(tag); | 637 | 1.62k | } |
bool mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::is<1ul>() const Line | Count | Source | 633 | 1.16k | { | 634 | 1.16k | static_assert(N < sizeof...(Ts), | 635 | 1.16k | "provided an index outside of this Variant's type list"); | 636 | 1.16k | return N == size_t(tag); | 637 | 1.16k | } |
bool mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::is<2ul>() const Line | Count | Source | 633 | 464 | { | 634 | 464 | static_assert(N < sizeof...(Ts), | 635 | 464 | "provided an index outside of this Variant's type list"); | 636 | 464 | return N == size_t(tag); | 637 | 464 | } |
bool mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::is<0ul>() const Line | Count | Source | 633 | 132 | { | 634 | 132 | static_assert(N < sizeof...(Ts), | 635 | 132 | "provided an index outside of this Variant's type list"); | 636 | 132 | return N == size_t(tag); | 637 | 132 | } |
bool mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::is<1ul>() const Line | Count | Source | 633 | 108 | { | 634 | 108 | static_assert(N < sizeof...(Ts), | 635 | 108 | "provided an index outside of this Variant's type list"); | 636 | 108 | return N == size_t(tag); | 637 | 108 | } |
bool mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::is<2ul>() const Line | Count | Source | 633 | 108 | { | 634 | 108 | static_assert(N < sizeof...(Ts), | 635 | 108 | "provided an index outside of this Variant's type list"); | 636 | 108 | return N == size_t(tag); | 637 | 108 | } |
bool mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::is<3ul>() const Line | Count | Source | 633 | 216 | { | 634 | 216 | static_assert(N < sizeof...(Ts), | 635 | 216 | "provided an index outside of this Variant's type list"); | 636 | 216 | return N == size_t(tag); | 637 | 216 | } |
Unexecuted instantiation: bool mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::is<4ul>() const Unexecuted instantiation: bool mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::is<5ul>() const Unexecuted instantiation: bool mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::is<6ul>() const bool mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::is<0ul>() const Line | Count | Source | 633 | 140 | { | 634 | 140 | static_assert(N < sizeof...(Ts), | 635 | 140 | "provided an index outside of this Variant's type list"); | 636 | 140 | return N == size_t(tag); | 637 | 140 | } |
Unexecuted instantiation: bool mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::is<1ul>() const bool mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::is<0ul>() const Line | Count | Source | 633 | 140 | { | 634 | 140 | static_assert(N < sizeof...(Ts), | 635 | 140 | "provided an index outside of this Variant's type list"); | 636 | 140 | return N == size_t(tag); | 637 | 140 | } |
Unexecuted instantiation: bool mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::is<2ul>() const bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<0ul>() const Line | Count | Source | 633 | 1.01k | { | 634 | 1.01k | static_assert(N < sizeof...(Ts), | 635 | 1.01k | "provided an index outside of this Variant's type list"); | 636 | 1.01k | return N == size_t(tag); | 637 | 1.01k | } |
bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<1ul>() const Line | Count | Source | 633 | 991 | { | 634 | 991 | static_assert(N < sizeof...(Ts), | 635 | 991 | "provided an index outside of this Variant's type list"); | 636 | 991 | return N == size_t(tag); | 637 | 991 | } |
bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<2ul>() const Line | Count | Source | 633 | 991 | { | 634 | 991 | static_assert(N < sizeof...(Ts), | 635 | 991 | "provided an index outside of this Variant's type list"); | 636 | 991 | return N == size_t(tag); | 637 | 991 | } |
bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<3ul>() const Line | Count | Source | 633 | 991 | { | 634 | 991 | static_assert(N < sizeof...(Ts), | 635 | 991 | "provided an index outside of this Variant's type list"); | 636 | 991 | return N == size_t(tag); | 637 | 991 | } |
bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<4ul>() const Line | Count | Source | 633 | 991 | { | 634 | 991 | static_assert(N < sizeof...(Ts), | 635 | 991 | "provided an index outside of this Variant's type list"); | 636 | 991 | return N == size_t(tag); | 637 | 991 | } |
bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<5ul>() const Line | Count | Source | 633 | 991 | { | 634 | 991 | static_assert(N < sizeof...(Ts), | 635 | 991 | "provided an index outside of this Variant's type list"); | 636 | 991 | return N == size_t(tag); | 637 | 991 | } |
bool mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::is<6ul>() const Line | Count | Source | 633 | 991 | { | 634 | 991 | static_assert(N < sizeof...(Ts), | 635 | 991 | "provided an index outside of this Variant's type list"); | 636 | 991 | return N == size_t(tag); | 637 | 991 | } |
bool mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::is<0ul>() const Line | Count | Source | 633 | 150k | { | 634 | 150k | static_assert(N < sizeof...(Ts), | 635 | 150k | "provided an index outside of this Variant's type list"); | 636 | 150k | return N == size_t(tag); | 637 | 150k | } |
Unexecuted instantiation: bool mozilla::Variant<unsigned int, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned int, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<bool, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<bool, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<double, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<double, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinVariant, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinVariant, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned char, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<unsigned char, JS::Error*>::is<1ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::is<0ul>() const Unexecuted instantiation: bool mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::is<1ul>() const |
638 | | |
639 | | /** |
640 | | * Operator == overload that defers to the variant type's operator== |
641 | | * implementation if the rhs is tagged as the same type as this one. |
642 | | */ |
643 | 0 | bool operator==(const Variant& aRhs) const { |
644 | 0 | return tag == aRhs.tag && Impl::equal(*this, aRhs); |
645 | 0 | } Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::operator==(mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&) const Unexecuted instantiation: mozilla::Variant<nsTString<char>, char const**>::operator==(mozilla::Variant<nsTString<char>, char const**> const&) const Unexecuted instantiation: mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::operator==(mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes> const&) const Unexecuted instantiation: mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::operator==(mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget> const&) const Unexecuted instantiation: mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::operator==(mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield> const&) const Unexecuted instantiation: mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::operator==(mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData> const&) const Unexecuted instantiation: mozilla::Variant<JSAtom*, char16_t const*>::operator==(mozilla::Variant<JSAtom*, char16_t const*> const&) const Unexecuted instantiation: mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::operator==(mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*> const&) const Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::operator==(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) const Unexecuted instantiation: mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::operator==(mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*> const&) const |
646 | | |
647 | | /** |
648 | | * Operator != overload that defers to the negation of the variant type's |
649 | | * operator== implementation if the rhs is tagged as the same type as this |
650 | | * one. |
651 | | */ |
652 | 0 | bool operator!=(const Variant& aRhs) const { |
653 | 0 | return !(*this == aRhs); |
654 | 0 | } Unexecuted instantiation: mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::operator!=(mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked> const&) const Unexecuted instantiation: mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::operator!=(mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> > const&) const |
655 | | |
656 | | // Accessors for working with the contained variant value. |
657 | | |
658 | | /** Mutable reference. */ |
659 | | template<typename T> |
660 | 21.7k | T& as() { |
661 | 21.7k | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, |
662 | 21.7k | "provided a type not uniquely found in this Variant's type list"); |
663 | 21.7k | MOZ_RELEASE_ASSERT(is<T>()); |
664 | 21.7k | return *static_cast<T*>(ptr()); |
665 | 21.7k | } Unexecuted instantiation: unsigned long& mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::as<unsigned long>() Unexecuted instantiation: char const*& mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<char const*>() Unexecuted instantiation: void (*&mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<void (*)(nsITimer*, bool, void*, char*, unsigned long)>())(nsITimer*, bool, void*, char*, unsigned long) PrefsHashIter::Elem& mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::as<PrefsHashIter::Elem>() Line | Count | Source | 660 | 20.6k | T& as() { | 661 | 20.6k | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 662 | 20.6k | "provided a type not uniquely found in this Variant's type list"); | 663 | 20.6k | MOZ_RELEASE_ASSERT(is<T>()); | 664 | 20.6k | return *static_cast<T*>(ptr()); | 665 | 20.6k | } |
Unexecuted instantiation: mozilla::SharedPrefMap::Pref& mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::as<mozilla::SharedPrefMap::Pref>() Unexecuted instantiation: nsTString<char>& mozilla::Variant<nsTString<char>, char const**>::as<nsTString<char> >() Pref*& mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::as<Pref*>() Line | Count | Source | 660 | 3 | T& as() { | 661 | 3 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 662 | 3 | "provided a type not uniquely found in this Variant's type list"); | 663 | 3 | MOZ_RELEASE_ASSERT(is<T>()); | 664 | 3 | return *static_cast<T*>(ptr()); | 665 | 3 | } |
Unexecuted instantiation: mozilla::SharedPrefMap::Pref& mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::as<mozilla::SharedPrefMap::Pref>() Unexecuted instantiation: mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>& mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::as<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy> >() Unexecuted instantiation: mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy>& mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::as<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >() Unexecuted instantiation: mozilla::image::TerminalState& mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::as<mozilla::image::TerminalState>() Unexecuted instantiation: unsigned int& mozilla::Variant<unsigned int, mozilla::image::WriteState>::as<unsigned int>() Unexecuted instantiation: mozilla::image::WriteState& mozilla::Variant<unsigned int, mozilla::image::WriteState>::as<mozilla::image::WriteState>() Unexecuted instantiation: unsigned char& mozilla::Variant<unsigned char, mozilla::image::WriteState>::as<unsigned char>() Unexecuted instantiation: mozilla::image::WriteState& mozilla::Variant<unsigned char, mozilla::image::WriteState>::as<mozilla::image::WriteState>() Unexecuted instantiation: mozilla::InternalAnimationEvent& mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::as<mozilla::InternalAnimationEvent>() Unexecuted instantiation: mozilla::InternalTransitionEvent& mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::as<mozilla::InternalTransitionEvent>() Unexecuted instantiation: RefPtr<mozilla::dom::AnimationPlaybackEvent>& mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::as<RefPtr<mozilla::dom::AnimationPlaybackEvent> >() Unexecuted instantiation: unsigned int& mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::as<unsigned int>() Unexecuted instantiation: mozilla::dom::ipc::StructuredCloneData& mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::as<mozilla::dom::ipc::StructuredCloneData>() Unexecuted instantiation: nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>& mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::as<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback> >() Unexecuted instantiation: nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>& mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::as<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >() Unexecuted instantiation: RefPtr<nsPIDOMWindowInner>& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<RefPtr<nsPIDOMWindowInner> >() Unexecuted instantiation: nsCOMPtr<nsIDocShell>& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<nsCOMPtr<nsIDocShell> >() Unexecuted instantiation: long& mozilla::Variant<mozilla::Nothing, long>::as<long>() Unexecuted instantiation: mozilla::dom::quota::OriginScope::Origin& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<mozilla::dom::quota::OriginScope::Origin>() Unexecuted instantiation: mozilla::dom::quota::OriginScope::Prefix& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<mozilla::dom::quota::OriginScope::Prefix>() Unexecuted instantiation: mozilla::dom::quota::OriginScope::Pattern& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<mozilla::dom::quota::OriginScope::Pattern>() Unexecuted instantiation: mozilla::dom::ShadowRoot*& mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::as<mozilla::dom::ShadowRoot*>() Unexecuted instantiation: nsXBLPrototypeBinding*& mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::as<nsXBLPrototypeBinding*>() Unexecuted instantiation: mozilla::image::Yield& mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::as<mozilla::image::Yield>() JSObject*& mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::as<JSObject*>() Line | Count | Source | 660 | 116 | T& as() { | 661 | 116 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 662 | 116 | "provided a type not uniquely found in this Variant's type list"); | 663 | 116 | MOZ_RELEASE_ASSERT(is<T>()); | 664 | 116 | return *static_cast<T*>(ptr()); | 665 | 116 | } |
Unexecuted instantiation: js::jit::IonBuilder*& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<js::jit::IonBuilder*>() Unexecuted instantiation: js::wasm::CompileTask*& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<js::wasm::CompileTask*>() Unexecuted instantiation: js::wasm::Tier2GeneratorTask*& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<js::wasm::Tier2GeneratorTask*>() Unexecuted instantiation: js::ParseTask*& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<js::ParseTask*>() Unexecuted instantiation: js::SourceCompressionTask*& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<js::SourceCompressionTask*>() js::GCParallelTask*& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<js::GCParallelTask*>() Line | Count | Source | 660 | 991 | T& as() { | 661 | 991 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 662 | 991 | "provided a type not uniquely found in this Variant's type list"); | 663 | 991 | MOZ_RELEASE_ASSERT(is<T>()); | 664 | 991 | return *static_cast<T*>(ptr()); | 665 | 991 | } |
Unexecuted instantiation: JS::FirstSubsumedFrame& mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::as<JS::FirstSubsumedFrame>() Unexecuted instantiation: char const*& mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::as<char const*>() Unexecuted instantiation: mozilla::UniquePtr<char [], JS::FreePolicy>& mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::as<mozilla::UniquePtr<char [], JS::FreePolicy> >() Unexecuted instantiation: js::ScriptSourceObject*& mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::as<js::ScriptSourceObject*>() Unexecuted instantiation: js::WasmInstanceObject*& mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::as<js::WasmInstanceObject*>() Unexecuted instantiation: JSScript*& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<JSScript*>() Unexecuted instantiation: js::LazyScript*& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<js::LazyScript*>() Unexecuted instantiation: js::WasmInstanceObject*& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<js::WasmInstanceObject*>() Unexecuted instantiation: js::ScriptSource::Compressed& mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::as<js::ScriptSource::Compressed>() Unexecuted instantiation: js::ScriptSource::Uncompressed& mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::as<js::ScriptSource::Uncompressed>() Unexecuted instantiation: JS::MaxFrames& mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::as<JS::MaxFrames>() |
666 | | |
667 | | template<size_t N> |
668 | | typename detail::Nth<N, Ts...>::Type& as() |
669 | 98.5M | { |
670 | 98.5M | static_assert(N < sizeof...(Ts), |
671 | 98.5M | "provided an index outside of this Variant's type list"); |
672 | 98.5M | MOZ_RELEASE_ASSERT(is<N>()); |
673 | 98.5M | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); |
674 | 98.5M | } Unexecuted instantiation: mozilla::detail::Nth<0ul, char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::Type& mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::Type& mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Type& mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Type& mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Type& mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, bool, nsTString<char16_t> >::Type& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, bool, nsTString<char16_t> >::Type& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, unsigned int, bool, nsTString<char16_t> >::Type& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<2ul>() mozilla::detail::Nth<0ul, unsigned int, nsresult>::Type& mozilla::Variant<unsigned int, nsresult>::as<0ul>() Line | Count | Source | 669 | 95.0M | { | 670 | 95.0M | static_assert(N < sizeof...(Ts), | 671 | 95.0M | "provided an index outside of this Variant's type list"); | 672 | 95.0M | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 95.0M | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 95.0M | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, nsresult>::Type& mozilla::Variant<unsigned int, nsresult>::as<1ul>() mozilla::detail::Nth<0ul, nsTString<char> const, nsresult>::Type& mozilla::Variant<nsTString<char> const, nsresult>::as<0ul>() Line | Count | Source | 669 | 48 | { | 670 | 48 | static_assert(N < sizeof...(Ts), | 671 | 48 | "provided an index outside of this Variant's type list"); | 672 | 48 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 48 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 48 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, nsTString<char> const, nsresult>::Type& mozilla::Variant<nsTString<char> const, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Type& mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Type& mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, bool>::Type& mozilla::Variant<mozilla::Nothing, bool, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, bool>::Type& mozilla::Variant<mozilla::Nothing, bool, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, bool>::Type& mozilla::Variant<mozilla::Nothing, bool, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<6ul>() Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<7ul>() Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<8ul>() Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<9ul>() Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<10ul>() Unexecuted instantiation: mozilla::detail::Nth<11ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<11ul>() Unexecuted instantiation: mozilla::detail::Nth<12ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<12ul>() Unexecuted instantiation: mozilla::detail::Nth<13ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<13ul>() Unexecuted instantiation: mozilla::detail::Nth<14ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<14ul>() Unexecuted instantiation: mozilla::detail::Nth<15ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<15ul>() Unexecuted instantiation: mozilla::detail::Nth<16ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<16ul>() Unexecuted instantiation: mozilla::detail::Nth<17ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<17ul>() Unexecuted instantiation: mozilla::detail::Nth<18ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<18ul>() Unexecuted instantiation: mozilla::detail::Nth<19ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<19ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::as<2ul>() mozilla::detail::Nth<0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type& mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<0ul>() Line | Count | Source | 669 | 1.45k | { | 670 | 1.45k | static_assert(N < sizeof...(Ts), | 671 | 1.45k | "provided an index outside of this Variant's type list"); | 672 | 1.45k | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 1.45k | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 1.45k | } |
mozilla::detail::Nth<1ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type& mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<1ul>() Line | Count | Source | 669 | 528 | { | 670 | 528 | static_assert(N < sizeof...(Ts), | 671 | 528 | "provided an index outside of this Variant's type list"); | 672 | 528 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 528 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 528 | } |
Unexecuted instantiation: mozilla::detail::Nth<2ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type& mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsITimer>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsITimer>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::Type& mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsILoadInfo*, nsPIDOMWindowOuter*>::Type& mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<6ul>() Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<7ul>() Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<8ul>() Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<9ul>() Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<10ul>() Unexecuted instantiation: mozilla::detail::Nth<11ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<11ul>() Unexecuted instantiation: mozilla::detail::Nth<12ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<12ul>() Unexecuted instantiation: mozilla::detail::Nth<13ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<13ul>() Unexecuted instantiation: mozilla::detail::Nth<14ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<14ul>() Unexecuted instantiation: mozilla::detail::Nth<15ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<15ul>() Unexecuted instantiation: mozilla::detail::Nth<16ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<16ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, char const*, nsTString<char> const>::Type& mozilla::Variant<char const*, nsTString<char> const>::as<0ul>() mozilla::detail::Nth<1ul, char const*, nsTString<char> const>::Type& mozilla::Variant<char const*, nsTString<char> const>::as<1ul>() Line | Count | Source | 669 | 83 | { | 670 | 83 | static_assert(N < sizeof...(Ts), | 671 | 83 | "provided an index outside of this Variant's type list"); | 672 | 83 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 83 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 83 | } |
mozilla::detail::Nth<0ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::Type& mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::as<0ul>() Line | Count | Source | 669 | 20.6k | { | 670 | 20.6k | static_assert(N < sizeof...(Ts), | 671 | 20.6k | "provided an index outside of this Variant's type list"); | 672 | 20.6k | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 20.6k | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 20.6k | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::Type& mozilla::Variant<PrefsHashIter::Elem, mozilla::SharedPrefMap::Pref>::as<1ul>() mozilla::detail::Nth<0ul, Pref*, mozilla::SharedPrefMap::Pref>::Type& mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::as<0ul>() Line | Count | Source | 669 | 31.8k | { | 670 | 31.8k | static_assert(N < sizeof...(Ts), | 671 | 31.8k | "provided an index outside of this Variant's type list"); | 672 | 31.8k | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 31.8k | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 31.8k | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, Pref*, mozilla::SharedPrefMap::Pref>::Type& mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::as<1ul>() mozilla::detail::Nth<0ul, mozilla::Ok, char const*>::Type& mozilla::Variant<mozilla::Ok, char const*>::as<0ul>() Line | Count | Source | 669 | 3 | { | 670 | 3 | static_assert(N < sizeof...(Ts), | 671 | 3 | "provided an index outside of this Variant's type list"); | 672 | 3 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 3 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 3 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Ok, char const*>::Type& mozilla::Variant<mozilla::Ok, char const*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsTString<char>, char const**>::Type& mozilla::Variant<nsTString<char>, char const**>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsTString<char>, char const**>::Type& mozilla::Variant<nsTString<char>, char const**>::as<1ul>() mozilla::detail::Nth<0ul, Pref*, nsresult>::Type& mozilla::Variant<Pref*, nsresult>::as<0ul>() Line | Count | Source | 669 | 3 | { | 670 | 3 | static_assert(N < sizeof...(Ts), | 671 | 3 | "provided an index outside of this Variant's type list"); | 672 | 3 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 3 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 3 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, Pref*, nsresult>::Type& mozilla::Variant<Pref*, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsIInputStream>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsIInputStream>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsIRequest>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsIRequest>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, nsresult>::Type& mozilla::Variant<mozilla::Nothing, bool, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, nsresult>::Type& mozilla::Variant<mozilla::Nothing, bool, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, nsresult>::Type& mozilla::Variant<mozilla::Nothing, bool, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<6ul>() Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<7ul>() Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<8ul>() Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<9ul>() Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<10ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Type& mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::as<2ul>() mozilla::detail::Nth<0ul, nsTString<char>, nsresult>::Type& mozilla::Variant<nsTString<char>, nsresult>::as<0ul>() Line | Count | Source | 669 | 5 | { | 670 | 5 | static_assert(N < sizeof...(Ts), | 671 | 5 | "provided an index outside of this Variant's type list"); | 672 | 5 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 5 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 5 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, nsTString<char>, nsresult>::Type& mozilla::Variant<nsTString<char>, nsresult>::as<1ul>() mozilla::detail::Nth<0ul, nsCOMPtr<nsIFile>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::as<0ul>() Line | Count | Source | 669 | 9 | { | 670 | 9 | static_assert(N < sizeof...(Ts), | 671 | 9 | "provided an index outside of this Variant's type list"); | 672 | 9 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 9 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 9 | } |
mozilla::detail::Nth<1ul, nsCOMPtr<nsIFile>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::as<1ul>() Line | Count | Source | 669 | 3 | { | 670 | 3 | static_assert(N < sizeof...(Ts), | 671 | 3 | "provided an index outside of this Variant's type list"); | 672 | 3 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 3 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 3 | } |
Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::URLPreloader::CacheKey, nsresult>::Type& mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::URLPreloader::CacheKey, nsresult>::Type& mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::as<1ul>() mozilla::detail::Nth<0ul, mozilla::FileLocation, nsresult>::Type& mozilla::Variant<mozilla::FileLocation, nsresult>::as<0ul>() Line | Count | Source | 669 | 24 | { | 670 | 24 | static_assert(N < sizeof...(Ts), | 671 | 24 | "provided an index outside of this Variant's type list"); | 672 | 24 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 24 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 24 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::FileLocation, nsresult>::Type& mozilla::Variant<mozilla::FileLocation, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JSAtom*, char16_t const*>::Type& mozilla::Variant<JSAtom*, char16_t const*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JSAtom*, char16_t const*>::Type& mozilla::Variant<JSAtom*, char16_t const*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<bool>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<bool>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<bool>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<6ul>() Unexecuted instantiation: mozilla::detail::Nth<7ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<7ul>() Unexecuted instantiation: mozilla::detail::Nth<8ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<8ul>() Unexecuted instantiation: mozilla::detail::Nth<9ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<9ul>() Unexecuted instantiation: mozilla::detail::Nth<10ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<10ul>() Unexecuted instantiation: mozilla::detail::Nth<11ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<11ul>() Unexecuted instantiation: mozilla::detail::Nth<12ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<12ul>() Unexecuted instantiation: mozilla::detail::Nth<13ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<13ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Type& mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Type& mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::Type& mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::Type& mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::TerminalState, mozilla::image::Yield>::Type& mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::TerminalState, mozilla::image::Yield>::Type& mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, mozilla::image::WriteState>::Type& mozilla::Variant<unsigned int, mozilla::image::WriteState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, mozilla::image::WriteState>::Type& mozilla::Variant<unsigned int, mozilla::image::WriteState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned char, mozilla::image::WriteState>::Type& mozilla::Variant<unsigned char, mozilla::image::WriteState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned char, mozilla::image::WriteState>::Type& mozilla::Variant<unsigned char, mozilla::image::WriteState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Type& mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Type& mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Type& mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsIFrame*, nsresult>::Type& mozilla::Variant<nsIFrame*, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsIFrame*, nsresult>::Type& mozilla::Variant<nsIFrame*, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, mozilla::dom::ipc::StructuredCloneData>::Type& mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, mozilla::dom::ipc::StructuredCloneData>::Type& mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Type& mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Type& mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Type& mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Type& mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, unsigned long, unsigned long>::Type& mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, unsigned long, unsigned long>::Type& mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, unsigned long, unsigned long>::Type& mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<3ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTString<char>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTString<char>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, int, nsresult>::Type& mozilla::Variant<int, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, int, nsresult>::Type& mozilla::Variant<int, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned long, nsresult>::Type& mozilla::Variant<unsigned long, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned long, nsresult>::Type& mozilla::Variant<unsigned long, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, long, nsresult>::Type& mozilla::Variant<long, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, long, nsresult>::Type& mozilla::Variant<long, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, unsigned int, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, unsigned int, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, unsigned int, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::MediaStatistics, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::MediaStatistics, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::MediaStatistics, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, long>::Type& mozilla::Variant<mozilla::Nothing, long>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, long>::Type& mozilla::Variant<mozilla::Nothing, long>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTString<char>, bool>::Type& mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Type& mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Type& mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::Type& mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::Type& mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<bool>, bool>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<bool>, bool>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<bool>, bool>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Type& mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Type& mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Type& mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Type& mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsresult, bool>::Type& mozilla::Variant<mozilla::Nothing, nsresult, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsresult, bool>::Type& mozilla::Variant<mozilla::Nothing, nsresult, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsresult, bool>::Type& mozilla::Variant<mozilla::Nothing, nsresult, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Type& mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTString<char>, nsresult>::Type& mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult>::Type& mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult>::Type& mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Type& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<3ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, RefPtr<mozilla::dom::Promise>, nsresult>::Type& mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, RefPtr<mozilla::dom::Promise>, nsresult>::Type& mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Type& mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::Type& mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::Type& mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type& mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type& mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type& mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::Type& mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::Type& mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsTString<char16_t>, nsresult>::Type& mozilla::Variant<nsTString<char16_t>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsTString<char16_t>, nsresult>::Type& mozilla::Variant<nsTString<char16_t>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, unsigned int, nsresult>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, unsigned int, nsresult>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, unsigned int, nsresult>::Type& mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsIZipReaderCache>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsIZipReaderCache>, nsresult>::Type& mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::Type& mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::Type& mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, int, double>::Type& mozilla::Variant<mozilla::Nothing, int, double>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, int, double>::Type& mozilla::Variant<mozilla::Nothing, int, double>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, int, double>::Type& mozilla::Variant<mozilla::Nothing, int, double>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<int>, double>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<int>, double>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<int>, double>::Type& mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Type& mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Type& mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() mozilla::detail::Nth<0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type& mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::as<0ul>() Line | Count | Source | 669 | 9 | { | 670 | 9 | static_assert(N < sizeof...(Ts), | 671 | 9 | "provided an index outside of this Variant's type list"); | 672 | 9 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 9 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 9 | } |
mozilla::detail::Nth<1ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type& mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::as<1ul>() Line | Count | Source | 669 | 18 | { | 670 | 18 | static_assert(N < sizeof...(Ts), | 671 | 18 | "provided an index outside of this Variant's type list"); | 672 | 18 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 18 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 18 | } |
Unexecuted instantiation: mozilla::detail::Nth<2ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type& mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<3ul>() mozilla::detail::Nth<0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<0ul>() Line | Count | Source | 669 | 3.24M | { | 670 | 3.24M | static_assert(N < sizeof...(Ts), | 671 | 3.24M | "provided an index outside of this Variant's type list"); | 672 | 3.24M | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 3.24M | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 3.24M | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<4ul>() mozilla::detail::Nth<0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type& mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::as<0ul>() Line | Count | Source | 669 | 232 | { | 670 | 232 | static_assert(N < sizeof...(Ts), | 671 | 232 | "provided an index outside of this Variant's type list"); | 672 | 232 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 232 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 232 | } |
mozilla::detail::Nth<1ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type& mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::as<1ul>() Line | Count | Source | 669 | 348 | { | 670 | 348 | static_assert(N < sizeof...(Ts), | 671 | 348 | "provided an index outside of this Variant's type list"); | 672 | 348 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 348 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 348 | } |
mozilla::detail::Nth<2ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type& mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::as<2ul>() Line | Count | Source | 669 | 348 | { | 670 | 348 | static_assert(N < sizeof...(Ts), | 671 | 348 | "provided an index outside of this Variant's type list"); | 672 | 348 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 348 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 348 | } |
mozilla::detail::Nth<0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<0ul>() Line | Count | Source | 669 | 4 | { | 670 | 4 | static_assert(N < sizeof...(Ts), | 671 | 4 | "provided an index outside of this Variant's type list"); | 672 | 4 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 4 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 4 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<2ul>() mozilla::detail::Nth<3ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<3ul>() Line | Count | Source | 669 | 36 | { | 670 | 36 | static_assert(N < sizeof...(Ts), | 671 | 36 | "provided an index outside of this Variant's type list"); | 672 | 36 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 36 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 36 | } |
Unexecuted instantiation: mozilla::detail::Nth<4ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<6ul>() mozilla::detail::Nth<0ul, js::jit::MBasicBlock*, js::jit::AbortReason>::Type& mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::as<0ul>() Line | Count | Source | 669 | 70 | { | 670 | 70 | static_assert(N < sizeof...(Ts), | 671 | 70 | "provided an index outside of this Variant's type list"); | 672 | 70 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 70 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 70 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::MBasicBlock*, js::jit::AbortReason>::Type& mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::jit::MInstruction*, js::jit::AbortReason>::Type& mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::MInstruction*, js::jit::AbortReason>::Type& mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::as<1ul>() mozilla::detail::Nth<0ul, js::jit::MCall*, js::jit::AbortReason>::Type& mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::as<0ul>() Line | Count | Source | 669 | 70 | { | 670 | 70 | static_assert(N < sizeof...(Ts), | 671 | 70 | "provided an index outside of this Variant's type list"); | 672 | 70 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 70 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 70 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::MCall*, js::jit::AbortReason>::Type& mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::jit::MDefinition*, js::jit::AbortReason>::Type& mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::MDefinition*, js::jit::AbortReason>::Type& mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::Type& mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::Type& mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Type& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Type& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Type& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<2ul>() mozilla::detail::Nth<0ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Type& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<0ul>() Line | Count | Source | 669 | 14 | { | 670 | 14 | static_assert(N < sizeof...(Ts), | 671 | 14 | "provided an index outside of this Variant's type list"); | 672 | 14 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 14 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 14 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Type& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Type& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Type& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Type& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Type& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<5ul>() mozilla::detail::Nth<6ul, js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::Type& mozilla::Variant<js::jit::IonBuilder*, js::wasm::CompileTask*, js::wasm::Tier2GeneratorTask*, js::PromiseHelperTask*, js::ParseTask*, js::SourceCompressionTask*, js::GCParallelTask*>::as<6ul>() Line | Count | Source | 669 | 991 | { | 670 | 991 | static_assert(N < sizeof...(Ts), | 671 | 991 | "provided an index outside of this Variant's type list"); | 672 | 991 | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 991 | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 991 | } |
mozilla::detail::Nth<0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::Type& mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::as<0ul>() Line | Count | Source | 669 | 148k | { | 670 | 148k | static_assert(N < sizeof...(Ts), | 671 | 148k | "provided an index outside of this Variant's type list"); | 672 | 148k | MOZ_RELEASE_ASSERT(is<N>()); | 673 | 148k | return *static_cast<typename detail::Nth<N, Ts...>::Type*>(ptr()); | 674 | 148k | } |
Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, JS::Error*>::Type& mozilla::Variant<unsigned int, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, JS::Error*>::Type& mozilla::Variant<unsigned int, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, bool, JS::Error*>::Type& mozilla::Variant<bool, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, bool, JS::Error*>::Type& mozilla::Variant<bool, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, double, JS::Error*>::Type& mozilla::Variant<double, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, double, JS::Error*>::Type& mozilla::Variant<double, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinVariant, JS::Error*>::Type& mozilla::Variant<js::frontend::BinVariant, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinVariant, JS::Error*>::Type& mozilla::Variant<js::frontend::BinVariant, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::Type& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned char, JS::Error*>::Type& mozilla::Variant<unsigned char, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned char, JS::Error*>::Type& mozilla::Variant<unsigned char, JS::Error*>::as<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::Type& mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::as<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::Type& mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::as<1ul>() |
675 | | |
676 | | /** Immutable const reference. */ |
677 | | template<typename T> |
678 | 4.38M | const T& as() const { |
679 | 4.38M | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, |
680 | 4.38M | "provided a type not found in this Variant's type list"); |
681 | 4.38M | MOZ_RELEASE_ASSERT(is<T>()); |
682 | 4.38M | return *static_cast<const T*>(ptr()); |
683 | 4.38M | } Unexecuted instantiation: unsigned int const& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<unsigned int>() const Unexecuted instantiation: nsTString<char16_t> const& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<nsTString<char16_t> >() const Unexecuted instantiation: bool const& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<bool>() const unsigned int const& mozilla::Variant<unsigned int, nsresult>::as<unsigned int>() const Line | Count | Source | 678 | 3.18M | const T& as() const { | 679 | 3.18M | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 3.18M | "provided a type not found in this Variant's type list"); | 681 | 3.18M | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 3.18M | return *static_cast<const T*>(ptr()); | 683 | 3.18M | } |
Unexecuted instantiation: nsresult const& mozilla::Variant<unsigned int, nsresult>::as<nsresult>() const Unexecuted instantiation: nsresult const& mozilla::Variant<nsTString<char> const, nsresult>::as<nsresult>() const nsTString<char> const& mozilla::Variant<nsTString<char> const, nsresult>::as<nsTString<char> const>() const Line | Count | Source | 678 | 48 | const T& as() const { | 679 | 48 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 48 | "provided a type not found in this Variant's type list"); | 681 | 48 | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 48 | return *static_cast<const T*>(ptr()); | 683 | 48 | } |
Unexecuted instantiation: char const* const& mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<char const*>() const Unexecuted instantiation: void (* const&mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<void (*)(nsITimer*, bool, void*, char*, unsigned long)>() const)(nsITimer*, bool, void*, char*, unsigned long) Unexecuted instantiation: nsPIDOMWindowOuter* const& mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::as<nsPIDOMWindowOuter*>() const Unexecuted instantiation: nsILoadInfo* const& mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::as<nsILoadInfo*>() const nsTString<char> const& mozilla::Variant<nsTString<char>, char const**>::as<nsTString<char> >() const Line | Count | Source | 678 | 1.20M | const T& as() const { | 679 | 1.20M | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 1.20M | "provided a type not found in this Variant's type list"); | 681 | 1.20M | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 1.20M | return *static_cast<const T*>(ptr()); | 683 | 1.20M | } |
Unexecuted instantiation: char const** const& mozilla::Variant<nsTString<char>, char const**>::as<char const**>() const Pref* const& mozilla::Variant<Pref*, nsresult>::as<Pref*>() const Line | Count | Source | 678 | 3 | const T& as() const { | 679 | 3 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 3 | "provided a type not found in this Variant's type list"); | 681 | 3 | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 3 | return *static_cast<const T*>(ptr()); | 683 | 3 | } |
Unexecuted instantiation: char const* const& mozilla::Variant<mozilla::Ok, char const*>::as<char const*>() const Unexecuted instantiation: nsresult const& mozilla::Variant<Pref*, nsresult>::as<nsresult>() const Unexecuted instantiation: nsresult const& mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::as<nsresult>() const Unexecuted instantiation: nsCOMPtr<nsIInputStream> const& mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::as<nsCOMPtr<nsIInputStream> >() const Unexecuted instantiation: nsresult const& mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::as<nsresult>() const Unexecuted instantiation: nsCOMPtr<nsIRequest> const& mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::as<nsCOMPtr<nsIRequest> >() const Unexecuted instantiation: nsresult const& mozilla::Variant<nsTString<char>, nsresult>::as<nsresult>() const nsTString<char> const& mozilla::Variant<nsTString<char>, nsresult>::as<nsTString<char> >() const Line | Count | Source | 678 | 5 | const T& as() const { | 679 | 5 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 5 | "provided a type not found in this Variant's type list"); | 681 | 5 | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 5 | return *static_cast<const T*>(ptr()); | 683 | 5 | } |
nsresult const& mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::as<nsresult>() const Line | Count | Source | 678 | 3 | const T& as() const { | 679 | 3 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 3 | "provided a type not found in this Variant's type list"); | 681 | 3 | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 3 | return *static_cast<const T*>(ptr()); | 683 | 3 | } |
nsCOMPtr<nsIFile> const& mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::as<nsCOMPtr<nsIFile> >() const Line | Count | Source | 678 | 9 | const T& as() const { | 679 | 9 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 9 | "provided a type not found in this Variant's type list"); | 681 | 9 | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 9 | return *static_cast<const T*>(ptr()); | 683 | 9 | } |
Unexecuted instantiation: nsresult const& mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::as<nsresult>() const Unexecuted instantiation: mozilla::URLPreloader::CacheKey const& mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::as<mozilla::URLPreloader::CacheKey>() const Unexecuted instantiation: nsresult const& mozilla::Variant<mozilla::FileLocation, nsresult>::as<nsresult>() const mozilla::FileLocation const& mozilla::Variant<mozilla::FileLocation, nsresult>::as<mozilla::FileLocation>() const Line | Count | Source | 678 | 24 | const T& as() const { | 679 | 24 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 24 | "provided a type not found in this Variant's type list"); | 681 | 24 | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 24 | return *static_cast<const T*>(ptr()); | 683 | 24 | } |
Unexecuted instantiation: mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy> const& mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::as<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy> >() const Unexecuted instantiation: mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> const& mozilla::Variant<mozilla::Vector<char16_t, 0ul, JSMallocAllocPolicy>, mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >::as<mozilla::Vector<unsigned char, 0ul, mozilla::MallocAllocPolicy> >() const Unexecuted instantiation: mozilla::gfx::ConvolveMatrixAttributes const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<mozilla::gfx::ConvolveMatrixAttributes>() const Unexecuted instantiation: nsCSSValueSharedList* const& mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::as<nsCSSValueSharedList*>() const Unexecuted instantiation: mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState>() const Unexecuted instantiation: mozilla::image::TerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::TerminalState>() const Unexecuted instantiation: mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState>() const Unexecuted instantiation: mozilla::image::TerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::TerminalState>() const Unexecuted instantiation: mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState>() const Unexecuted instantiation: mozilla::image::TerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::TerminalState>() const Unexecuted instantiation: mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState>() const Unexecuted instantiation: mozilla::image::TerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::TerminalState>() const Unexecuted instantiation: mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState>() const Unexecuted instantiation: mozilla::image::TerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::TerminalState>() const Unexecuted instantiation: mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState>() const Unexecuted instantiation: mozilla::image::TerminalState const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::TerminalState>() const Unexecuted instantiation: nsresult const& mozilla::Variant<nsIFrame*, nsresult>::as<nsresult>() const Unexecuted instantiation: nsIFrame* const& mozilla::Variant<nsIFrame*, nsresult>::as<nsIFrame*>() const Unexecuted instantiation: unsigned int const& mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::as<unsigned int>() const Unexecuted instantiation: mozilla::dom::ipc::StructuredCloneData const& mozilla::Variant<unsigned int, mozilla::dom::ipc::StructuredCloneData>::as<mozilla::dom::ipc::StructuredCloneData>() const Unexecuted instantiation: mozilla::dom::WorkerPrivate* const& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<mozilla::dom::WorkerPrivate*>() const Unexecuted instantiation: nsCOMPtr<nsIDocShell> const& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<nsCOMPtr<nsIDocShell> >() const Unexecuted instantiation: RefPtr<nsPIDOMWindowInner> const& mozilla::Variant<mozilla::Nothing, RefPtr<nsPIDOMWindowInner>, nsCOMPtr<nsIDocShell>, mozilla::dom::WorkerPrivate*>::as<RefPtr<nsPIDOMWindowInner> >() const Unexecuted instantiation: mozilla::dom::ClientWindowState const& mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::as<mozilla::dom::ClientWindowState>() const Unexecuted instantiation: mozilla::dom::ClientWorkerState const& mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::as<mozilla::dom::ClientWorkerState>() const Unexecuted instantiation: mozilla::dom::MediaRecorder::Session::RunningState const& mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::as<mozilla::dom::MediaRecorder::Session::RunningState>() const Unexecuted instantiation: mozilla::DDLogObject const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<mozilla::DDLogObject>() const Unexecuted instantiation: nsTString<char> const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<nsTString<char> const>() const Unexecuted instantiation: mozilla::MediaResult const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<mozilla::MediaResult>() const Unexecuted instantiation: nsresult const& mozilla::Variant<unsigned long, nsresult>::as<nsresult>() const Unexecuted instantiation: unsigned long const& mozilla::Variant<unsigned long, nsresult>::as<unsigned long>() const Unexecuted instantiation: nsresult const& mozilla::Variant<int, nsresult>::as<nsresult>() const Unexecuted instantiation: int const& mozilla::Variant<int, nsresult>::as<int>() const Unexecuted instantiation: long const& mozilla::Variant<long, nsresult>::as<long>() const Unexecuted instantiation: nsresult const& mozilla::Variant<long, nsresult>::as<nsresult>() const Unexecuted instantiation: mozilla::dom::quota::OriginScope::Origin const& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<mozilla::dom::quota::OriginScope::Origin>() const Unexecuted instantiation: mozilla::dom::quota::OriginScope::Prefix const& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<mozilla::dom::quota::OriginScope::Prefix>() const Unexecuted instantiation: mozilla::dom::quota::OriginScope::Pattern const& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<mozilla::dom::quota::OriginScope::Pattern>() const Unexecuted instantiation: nsCOMPtr<nsITimer> const& mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::as<nsCOMPtr<nsITimer> >() const Unexecuted instantiation: nsresult const& mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::as<nsresult>() const Unexecuted instantiation: nsTString<char16_t> const& mozilla::Variant<nsTString<char16_t>, nsresult>::as<nsTString<char16_t> >() const Unexecuted instantiation: UniqueStacks::FrameKey::NormalFrameData const& mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::as<UniqueStacks::FrameKey::NormalFrameData>() const Unexecuted instantiation: UniqueStacks::FrameKey::JITFrameData const& mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::as<UniqueStacks::FrameKey::JITFrameData>() const Unexecuted instantiation: nsresult const& mozilla::Variant<nsTString<char16_t>, nsresult>::as<nsresult>() const Unexecuted instantiation: RefPtr<mozilla::dom::Promise> const& mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::as<RefPtr<mozilla::dom::Promise> >() const Unexecuted instantiation: nsresult const& mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::as<nsresult>() const Unexecuted instantiation: nsresult const& mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::as<nsresult>() const Unexecuted instantiation: nsCOMPtr<nsIZipReaderCache> const& mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::as<nsCOMPtr<nsIZipReaderCache> >() const Unexecuted instantiation: JSAtom* const& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<JSAtom*>() const Unexecuted instantiation: char16_t const* const& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<char16_t const*>() const Unexecuted instantiation: mozilla::UniquePtr<char16_t [], JS::FreePolicy> const& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<mozilla::UniquePtr<char16_t [], JS::FreePolicy> >() const Unexecuted instantiation: mozilla::image::LexerTransition<TestState>::NonTerminalState const& mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::LexerTransition<TestState>::NonTerminalState>() const Unexecuted instantiation: mozilla::image::TerminalState const& mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::as<mozilla::image::TerminalState>() const Unexecuted instantiation: js::InterpreterFrame* const& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<js::InterpreterFrame*>() const Unexecuted instantiation: js::jit::AbortReason const& mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::as<js::jit::AbortReason>() const js::jit::MBasicBlock* const& mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::as<js::jit::MBasicBlock*>() const Line | Count | Source | 678 | 70 | const T& as() const { | 679 | 70 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 70 | "provided a type not found in this Variant's type list"); | 681 | 70 | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 70 | return *static_cast<const T*>(ptr()); | 683 | 70 | } |
Unexecuted instantiation: js::jit::AbortReason const& mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::as<js::jit::AbortReason>() const Unexecuted instantiation: js::jit::MInstruction* const& mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::as<js::jit::MInstruction*>() const Unexecuted instantiation: js::jit::AbortReason const& mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::as<js::jit::AbortReason>() const js::jit::MCall* const& mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::as<js::jit::MCall*>() const Line | Count | Source | 678 | 70 | const T& as() const { | 679 | 70 | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, | 680 | 70 | "provided a type not found in this Variant's type list"); | 681 | 70 | MOZ_RELEASE_ASSERT(is<T>()); | 682 | 70 | return *static_cast<const T*>(ptr()); | 683 | 70 | } |
Unexecuted instantiation: js::jit::AbortReason const& mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::as<js::jit::AbortReason>() const Unexecuted instantiation: js::jit::MDefinition* const& mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::as<js::jit::MDefinition*>() const Unexecuted instantiation: char const* const& mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::as<char const*>() const Unexecuted instantiation: mozilla::UniquePtr<char [], JS::FreePolicy> const& mozilla::Variant<char const*, mozilla::UniquePtr<char [], JS::FreePolicy> >::as<mozilla::UniquePtr<char [], JS::FreePolicy> >() const Unexecuted instantiation: JSObject* const& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<JSObject*>() const Unexecuted instantiation: JSScript* const& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<JSScript*>() const Unexecuted instantiation: js::LazyScript* const& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<js::LazyScript*>() const Unexecuted instantiation: js::WasmInstanceObject* const& mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::as<js::WasmInstanceObject*>() const Unexecuted instantiation: js::ScriptSourceObject* const& mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::as<js::ScriptSourceObject*>() const Unexecuted instantiation: js::WasmInstanceObject* const& mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::as<js::WasmInstanceObject*>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<bool, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: bool const& mozilla::Variant<bool, JS::Error*>::as<bool>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<unsigned int, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: unsigned int const& mozilla::Variant<unsigned int, JS::Error*>::as<unsigned int>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<double, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: double const& mozilla::Variant<double, JS::Error*>::as<double>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinVariant, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinVariant const& mozilla::Variant<js::frontend::BinVariant, JS::Error*>::as<js::frontend::BinVariant>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::as<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator>() const Unexecuted instantiation: JS::Error* const& mozilla::Variant<unsigned char, JS::Error*>::as<JS::Error*>() const Unexecuted instantiation: unsigned char const& mozilla::Variant<unsigned char, JS::Error*>::as<unsigned char>() const |
684 | | |
685 | | template<size_t N> |
686 | | const typename detail::Nth<N, Ts...>::Type& as() const |
687 | 43.6k | { |
688 | 43.6k | static_assert(N < sizeof...(Ts), |
689 | 43.6k | "provided an index outside of this Variant's type list"); |
690 | 43.6k | MOZ_RELEASE_ASSERT(is<N>()); |
691 | 43.6k | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); |
692 | 43.6k | } Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, nsresult>::Type const& mozilla::Variant<unsigned int, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, nsresult>::Type const& mozilla::Variant<unsigned int, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsTString<char> const, nsresult>::Type const& mozilla::Variant<nsTString<char> const, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsTString<char> const, nsresult>::Type const& mozilla::Variant<nsTString<char> const, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Type const& mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Type const& mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<3ul>() const Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<4ul>() const Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<5ul>() const Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<6ul>() const Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<7ul>() const Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<8ul>() const Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<9ul>() const Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<10ul>() const Unexecuted instantiation: mozilla::detail::Nth<11ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<11ul>() const Unexecuted instantiation: mozilla::detail::Nth<12ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<12ul>() const Unexecuted instantiation: mozilla::detail::Nth<13ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<13ul>() const Unexecuted instantiation: mozilla::detail::Nth<14ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<14ul>() const Unexecuted instantiation: mozilla::detail::Nth<15ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<15ul>() const Unexecuted instantiation: mozilla::detail::Nth<16ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<16ul>() const Unexecuted instantiation: mozilla::detail::Nth<17ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<17ul>() const Unexecuted instantiation: mozilla::detail::Nth<18ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<18ul>() const Unexecuted instantiation: mozilla::detail::Nth<19ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type const& mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::as<19ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type const& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type const& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type const& mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type const& mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<0ul>() const mozilla::detail::Nth<1ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type const& mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<1ul>() const Line | Count | Source | 687 | 90 | { | 688 | 90 | static_assert(N < sizeof...(Ts), | 689 | 90 | "provided an index outside of this Variant's type list"); | 690 | 90 | MOZ_RELEASE_ASSERT(is<N>()); | 691 | 90 | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); | 692 | 90 | } |
Unexecuted instantiation: mozilla::detail::Nth<2ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type const& mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsITimer>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsITimer>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsITimer>, nsresult>::as<1ul>() const mozilla::detail::Nth<0ul, Pref*, mozilla::SharedPrefMap::Pref>::Type const& mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::as<0ul>() const Line | Count | Source | 687 | 34.7k | { | 688 | 34.7k | static_assert(N < sizeof...(Ts), | 689 | 34.7k | "provided an index outside of this Variant's type list"); | 690 | 34.7k | MOZ_RELEASE_ASSERT(is<N>()); | 691 | 34.7k | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); | 692 | 34.7k | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, Pref*, mozilla::SharedPrefMap::Pref>::Type const& mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, char const*, nsTString<char> const>::Type const& mozilla::Variant<char const*, nsTString<char> const>::as<0ul>() const mozilla::detail::Nth<1ul, char const*, nsTString<char> const>::Type const& mozilla::Variant<char const*, nsTString<char> const>::as<1ul>() const Line | Count | Source | 687 | 6.97k | { | 688 | 6.97k | static_assert(N < sizeof...(Ts), | 689 | 6.97k | "provided an index outside of this Variant's type list"); | 690 | 6.97k | MOZ_RELEASE_ASSERT(is<N>()); | 691 | 6.97k | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); | 692 | 6.97k | } |
Unexecuted instantiation: mozilla::detail::Nth<0ul, nsTString<char>, char const**>::Type const& mozilla::Variant<nsTString<char>, char const**>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsTString<char>, char const**>::Type const& mozilla::Variant<nsTString<char>, char const**>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, Pref*, nsresult>::Type const& mozilla::Variant<Pref*, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, Pref*, nsresult>::Type const& mozilla::Variant<Pref*, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Ok, char const*>::Type const& mozilla::Variant<mozilla::Ok, char const*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Ok, char const*>::Type const& mozilla::Variant<mozilla::Ok, char const*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsIInputStream>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsIInputStream>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsIInputStream>, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsIRequest>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsIRequest>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsIRequest>, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<3ul>() const Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<4ul>() const Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<5ul>() const Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<6ul>() const Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<7ul>() const Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<8ul>() const Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<9ul>() const Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type const& mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::as<10ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsTString<char>, nsresult>::Type const& mozilla::Variant<nsTString<char>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsTString<char>, nsresult>::Type const& mozilla::Variant<nsTString<char>, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsIFile>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsIFile>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsIFile>, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::URLPreloader::CacheKey, nsresult>::Type const& mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::URLPreloader::CacheKey, nsresult>::Type const& mozilla::Variant<mozilla::URLPreloader::CacheKey, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::FileLocation, nsresult>::Type const& mozilla::Variant<mozilla::FileLocation, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::FileLocation, nsresult>::Type const& mozilla::Variant<mozilla::FileLocation, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<3ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<3ul>() const Unexecuted instantiation: mozilla::detail::Nth<4ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<4ul>() const Unexecuted instantiation: mozilla::detail::Nth<5ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<5ul>() const Unexecuted instantiation: mozilla::detail::Nth<6ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<6ul>() const Unexecuted instantiation: mozilla::detail::Nth<7ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<7ul>() const Unexecuted instantiation: mozilla::detail::Nth<8ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<8ul>() const Unexecuted instantiation: mozilla::detail::Nth<9ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<9ul>() const Unexecuted instantiation: mozilla::detail::Nth<10ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<10ul>() const Unexecuted instantiation: mozilla::detail::Nth<11ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<11ul>() const Unexecuted instantiation: mozilla::detail::Nth<12ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<12ul>() const Unexecuted instantiation: mozilla::detail::Nth<13ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type const& mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::as<13ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Type const& mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Type const& mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::Type const& mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::Type const& mozilla::Variant<nsCSSValueSharedList*, mozilla::layers::BogusAnimation>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::TerminalState, mozilla::image::Yield>::Type const& mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::TerminalState, mozilla::image::Yield>::Type const& mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsIFrame*, nsresult>::Type const& mozilla::Variant<nsIFrame*, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsIFrame*, nsresult>::Type const& mozilla::Variant<nsIFrame*, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Type const& mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Type const& mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Type const& mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Type const& mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, int, nsresult>::Type const& mozilla::Variant<int, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, int, nsresult>::Type const& mozilla::Variant<int, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned long, nsresult>::Type const& mozilla::Variant<unsigned long, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned long, nsresult>::Type const& mozilla::Variant<unsigned long, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, long, nsresult>::Type const& mozilla::Variant<long, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, long, nsresult>::Type const& mozilla::Variant<long, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, long>::Type const& mozilla::Variant<mozilla::Nothing, long>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, long>::Type const& mozilla::Variant<mozilla::Nothing, long>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::Type const& mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::Type const& mozilla::Variant<mozilla::dom::MediaRecorder::Session::RunningState, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<3ul>() const Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<4ul>() const Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<5ul>() const Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<6ul>() const Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<7ul>() const Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<8ul>() const Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<9ul>() const Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<10ul>() const Unexecuted instantiation: mozilla::detail::Nth<11ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<11ul>() const Unexecuted instantiation: mozilla::detail::Nth<12ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<12ul>() const Unexecuted instantiation: mozilla::detail::Nth<13ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<13ul>() const Unexecuted instantiation: mozilla::detail::Nth<14ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<14ul>() const Unexecuted instantiation: mozilla::detail::Nth<15ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<15ul>() const Unexecuted instantiation: mozilla::detail::Nth<16ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::as<16ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Type const& mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult>::Type const& mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Result<mozilla::Ok, nsresult>, nsresult>::Type const& mozilla::Variant<mozilla::Result<mozilla::Ok, nsresult>, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type const& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type const& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type const& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type const& mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::as<3ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, RefPtr<mozilla::dom::Promise>, nsresult>::Type const& mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, RefPtr<mozilla::dom::Promise>, nsresult>::Type const& mozilla::Variant<RefPtr<mozilla::dom::Promise>, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type const& mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type const& mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type const& mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::Type const& mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::Type const& mozilla::Variant<UniqueStacks::FrameKey::NormalFrameData, UniqueStacks::FrameKey::JITFrameData>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsTString<char16_t>, nsresult>::Type const& mozilla::Variant<nsTString<char16_t>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsTString<char16_t>, nsresult>::Type const& mozilla::Variant<nsTString<char16_t>, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsILoadInfo*, nsPIDOMWindowOuter*>::Type const& mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsILoadInfo*, nsPIDOMWindowOuter*>::Type const& mozilla::Variant<nsILoadInfo*, nsPIDOMWindowOuter*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, bool, nsTString<char16_t> >::Type const& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, bool, nsTString<char16_t> >::Type const& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, unsigned int, bool, nsTString<char16_t> >::Type const& mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, nsCOMPtr<nsIZipReaderCache>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, nsCOMPtr<nsIZipReaderCache>, nsresult>::Type const& mozilla::Variant<nsCOMPtr<nsIZipReaderCache>, nsresult>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type const& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type const& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type const& mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, int, double>::Type const& mozilla::Variant<mozilla::Nothing, int, double>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, int, double>::Type const& mozilla::Variant<mozilla::Nothing, int, double>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, int, double>::Type const& mozilla::Variant<mozilla::Nothing, int, double>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Type const& mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, JSAtom*, char16_t const*>::Type const& mozilla::Variant<JSAtom*, char16_t const*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, JSAtom*, char16_t const*>::Type const& mozilla::Variant<JSAtom*, char16_t const*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type const& mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::as<0ul>() const mozilla::detail::Nth<1ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type const& mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::as<1ul>() const Line | Count | Source | 687 | 18 | { | 688 | 18 | static_assert(N < sizeof...(Ts), | 689 | 18 | "provided an index outside of this Variant's type list"); | 690 | 18 | MOZ_RELEASE_ASSERT(is<N>()); | 691 | 18 | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); | 692 | 18 | } |
Unexecuted instantiation: mozilla::detail::Nth<2ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type const& mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type const& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type const& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type const& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<3ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type const& mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::as<3ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type const& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type const& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type const& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<3ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type const& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<3ul>() const Unexecuted instantiation: mozilla::detail::Nth<4ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type const& mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::as<4ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::jit::MBasicBlock*, js::jit::AbortReason>::Type const& mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::MBasicBlock*, js::jit::AbortReason>::Type const& mozilla::Variant<js::jit::MBasicBlock*, js::jit::AbortReason>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::jit::MInstruction*, js::jit::AbortReason>::Type const& mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::MInstruction*, js::jit::AbortReason>::Type const& mozilla::Variant<js::jit::MInstruction*, js::jit::AbortReason>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::jit::MCall*, js::jit::AbortReason>::Type const& mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::MCall*, js::jit::AbortReason>::Type const& mozilla::Variant<js::jit::MCall*, js::jit::AbortReason>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::jit::MDefinition*, js::jit::AbortReason>::Type const& mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::jit::MDefinition*, js::jit::AbortReason>::Type const& mozilla::Variant<js::jit::MDefinition*, js::jit::AbortReason>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::Type const& mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::Type const& mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::as<1ul>() const mozilla::detail::Nth<0ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type const& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<0ul>() const Line | Count | Source | 687 | 8 | { | 688 | 8 | static_assert(N < sizeof...(Ts), | 689 | 8 | "provided an index outside of this Variant's type list"); | 690 | 8 | MOZ_RELEASE_ASSERT(is<N>()); | 691 | 8 | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); | 692 | 8 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type const& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type const& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<2ul>() const mozilla::detail::Nth<3ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type const& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<3ul>() const Line | Count | Source | 687 | 72 | { | 688 | 72 | static_assert(N < sizeof...(Ts), | 689 | 72 | "provided an index outside of this Variant's type list"); | 690 | 72 | MOZ_RELEASE_ASSERT(is<N>()); | 691 | 72 | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); | 692 | 72 | } |
Unexecuted instantiation: mozilla::detail::Nth<4ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type const& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<4ul>() const Unexecuted instantiation: mozilla::detail::Nth<5ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type const& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<5ul>() const Unexecuted instantiation: mozilla::detail::Nth<6ul, JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::Type const& mozilla::Variant<JSScript*, JS::Realm*, JS::Zone*, js::ZonesInState, JSRuntime*, js::CompilationsUsingNursery, js::AllCompilations>::as<6ul>() const mozilla::detail::Nth<0ul, js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::Type const& mozilla::Variant<js::frontend::Parser<js::frontend::FullParseHandler, char16_t>* const>::as<0ul>() const Line | Count | Source | 687 | 1.48k | { | 688 | 1.48k | static_assert(N < sizeof...(Ts), | 689 | 1.48k | "provided an index outside of this Variant's type list"); | 690 | 1.48k | MOZ_RELEASE_ASSERT(is<N>()); | 691 | 1.48k | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); | 692 | 1.48k | } |
mozilla::detail::Nth<0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type const& mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::as<0ul>() const Line | Count | Source | 687 | 232 | { | 688 | 232 | static_assert(N < sizeof...(Ts), | 689 | 232 | "provided an index outside of this Variant's type list"); | 690 | 232 | MOZ_RELEASE_ASSERT(is<N>()); | 691 | 232 | return *static_cast<const typename detail::Nth<N, Ts...>::Type*>(ptr()); | 692 | 232 | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type const& mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<2ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type const& mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::as<2ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, JS::Error*>::Type const& mozilla::Variant<unsigned int, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, JS::Error*>::Type const& mozilla::Variant<unsigned int, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, bool, JS::Error*>::Type const& mozilla::Variant<bool, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, bool, JS::Error*>::Type const& mozilla::Variant<bool, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::AssertedDeclaredKind, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::BinaryOperator, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::CompoundAssignmentOperator, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::VariableDeclarationKind, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, double, JS::Error*>::Type const& mozilla::Variant<double, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, double, JS::Error*>::Type const& mozilla::Variant<double, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UnaryOperator, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderMultipart>::UpdateOperator, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinVariant, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinVariant, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinVariant, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinVariant, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::AssertedDeclaredKind, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::BinaryOperator, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::CompoundAssignmentOperator, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::VariableDeclarationKind, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UnaryOperator, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinASTParser<js::frontend::BinTokenReaderTester>::UpdateOperator, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned char, JS::Error*>::Type const& mozilla::Variant<unsigned char, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned char, JS::Error*>::Type const& mozilla::Variant<unsigned char, JS::Error*>::as<1ul>() const Unexecuted instantiation: mozilla::detail::Nth<0ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::as<0ul>() const Unexecuted instantiation: mozilla::detail::Nth<1ul, js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::Type const& mozilla::Variant<js::frontend::BinTokenReaderBase::SkippableSubTree, JS::Error*>::as<1ul>() const |
693 | | |
694 | | /** |
695 | | * Extract the contained variant value from this container into a temporary |
696 | | * value. On completion, the value in the variant will be in a |
697 | | * safely-destructible state, as determined by the behavior of T's move |
698 | | * constructor when provided the variant's internal value. |
699 | | */ |
700 | | template<typename T> |
701 | | T extract() { |
702 | | static_assert(detail::SelectVariantType<T, Ts...>::count == 1, |
703 | | "provided a type not uniquely found in this Variant's type list"); |
704 | | MOZ_ASSERT(is<T>()); |
705 | | return T(std::move(as<T>())); |
706 | | } |
707 | | |
708 | | template<size_t N> |
709 | | typename detail::Nth<N, Ts...>::Type extract() |
710 | 7.90k | { |
711 | 7.90k | static_assert(N < sizeof...(Ts), |
712 | 7.90k | "provided an index outside of this Variant's type list"); |
713 | 7.90k | MOZ_RELEASE_ASSERT(is<N>()); |
714 | 7.90k | return typename detail::Nth<N, Ts...>::Type(std::move(as<N>())); |
715 | 7.90k | } Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, bool>::Type mozilla::Variant<mozilla::Nothing, bool, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, bool>::Type mozilla::Variant<mozilla::Nothing, bool, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, bool>::Type mozilla::Variant<mozilla::Nothing, bool, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Type mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::Type mozilla::Variant<unsigned long, mozilla::CooperativeThreadPool::AllThreadsBlocked>::extract<1ul>() mozilla::detail::Nth<0ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::extract<0ul>() Line | Count | Source | 710 | 598 | { | 711 | 598 | static_assert(N < sizeof...(Ts), | 712 | 598 | "provided an index outside of this Variant's type list"); | 713 | 598 | MOZ_RELEASE_ASSERT(is<N>()); | 714 | 598 | return typename detail::Nth<N, Ts...>::Type(std::move(as<N>())); | 715 | 598 | } |
mozilla::detail::Nth<1ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::extract<1ul>() Line | Count | Source | 710 | 176 | { | 711 | 176 | static_assert(N < sizeof...(Ts), | 712 | 176 | "provided an index outside of this Variant's type list"); | 713 | 176 | MOZ_RELEASE_ASSERT(is<N>()); | 714 | 176 | return typename detail::Nth<N, Ts...>::Type(std::move(as<N>())); | 715 | 176 | } |
Unexecuted instantiation: mozilla::detail::Nth<2ul, int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::Type mozilla::Variant<int const, char const*, void (*)(nsITimer*, bool, void*, char*, unsigned long)>::extract<2ul>() mozilla::detail::Nth<0ul, Pref*, mozilla::SharedPrefMap::Pref>::Type mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::extract<0ul>() Line | Count | Source | 710 | 6.89k | { | 711 | 6.89k | static_assert(N < sizeof...(Ts), | 712 | 6.89k | "provided an index outside of this Variant's type list"); | 713 | 6.89k | MOZ_RELEASE_ASSERT(is<N>()); | 714 | 6.89k | return typename detail::Nth<N, Ts...>::Type(std::move(as<N>())); | 715 | 6.89k | } |
Unexecuted instantiation: mozilla::detail::Nth<1ul, Pref*, mozilla::SharedPrefMap::Pref>::Type mozilla::Variant<Pref*, mozilla::SharedPrefMap::Pref>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, char const*, nsTString<char> const>::Type mozilla::Variant<char const*, nsTString<char> const>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, char const*, nsTString<char> const>::Type mozilla::Variant<char const*, nsTString<char> const>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsCOMPtr<nsITabParent>, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, nsresult>::Type mozilla::Variant<mozilla::Nothing, bool, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, nsresult>::Type mozilla::Variant<mozilla::Nothing, bool, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, nsresult>::Type mozilla::Variant<mozilla::Nothing, bool, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ServiceWorkerRegistrationDescriptor, mozilla::CopyableErrorResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::FileDescriptor, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::CreatedWindowInfo, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<6ul>() Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<7ul>() Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<8ul>() Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<9ul>() Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::Type mozilla::Variant<mozilla::plugins::IpdlTuple::InvalidType, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, nsTString<char>, bool>::extract<10ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, RefPtr<nsIInputStream>, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::ipc::Shmem, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, nsTString<char16_t> >, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::IPCServiceWorkerRegistrationDescriptorListOrCopyableErrorResult, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::Tuple<bool, mozilla::CopyableErrorResult>, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::Type mozilla::Variant<mozilla::Nothing, mozilla::widget::IMENotificationRequests, mozilla::ipc::ResponseRejectReason>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JSAtom*, char16_t const*>::Type mozilla::Variant<JSAtom*, char16_t const*>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JSAtom*, char16_t const*>::Type mozilla::Variant<JSAtom*, char16_t const*>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<bool>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<bool>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<bool>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<bool>, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Type mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::Type mozilla::Variant<RefPtr<mozilla::gfx::SourceSurface>, RefPtr<mozilla::gfx::FilterNode> >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<6ul>() Unexecuted instantiation: mozilla::detail::Nth<7ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<7ul>() Unexecuted instantiation: mozilla::detail::Nth<8ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<8ul>() Unexecuted instantiation: mozilla::detail::Nth<9ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<9ul>() Unexecuted instantiation: mozilla::detail::Nth<10ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<10ul>() Unexecuted instantiation: mozilla::detail::Nth<11ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<11ul>() Unexecuted instantiation: mozilla::detail::Nth<12ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<12ul>() Unexecuted instantiation: mozilla::detail::Nth<13ul, unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::Type mozilla::Variant<unsigned int, float, mozilla::gfx::PointTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::Matrix5x4, mozilla::gfx::Point3DTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::SizeTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::Color, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float>, mozilla::gfx::IntRectTyped<mozilla::gfx::UnknownUnits>, bool, std::__1::vector<float, std::__1::allocator<float> >, mozilla::gfx::IntPointTyped<mozilla::gfx::UnknownUnits>, mozilla::gfx::BaseMatrix<float> >::extract<13ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<6ul>() Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<7ul>() Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<8ul>() Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<9ul>() Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<10ul>() Unexecuted instantiation: mozilla::detail::Nth<11ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<11ul>() Unexecuted instantiation: mozilla::detail::Nth<12ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<12ul>() Unexecuted instantiation: mozilla::detail::Nth<13ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<13ul>() Unexecuted instantiation: mozilla::detail::Nth<14ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<14ul>() Unexecuted instantiation: mozilla::detail::Nth<15ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<15ul>() Unexecuted instantiation: mozilla::detail::Nth<16ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<16ul>() Unexecuted instantiation: mozilla::detail::Nth<17ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<17ul>() Unexecuted instantiation: mozilla::detail::Nth<18ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<18ul>() Unexecuted instantiation: mozilla::detail::Nth<19ul, mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::Type mozilla::Variant<mozilla::gfx::EmptyAttributes, mozilla::gfx::BlendAttributes, mozilla::gfx::MorphologyAttributes, mozilla::gfx::ColorMatrixAttributes, mozilla::gfx::FloodAttributes, mozilla::gfx::TileAttributes, mozilla::gfx::ComponentTransferAttributes, mozilla::gfx::OpacityAttributes, mozilla::gfx::ConvolveMatrixAttributes, mozilla::gfx::OffsetAttributes, mozilla::gfx::DisplacementMapAttributes, mozilla::gfx::TurbulenceAttributes, mozilla::gfx::CompositeAttributes, mozilla::gfx::MergeAttributes, mozilla::gfx::ImageAttributes, mozilla::gfx::GaussianBlurAttributes, mozilla::gfx::DropShadowAttributes, mozilla::gfx::DiffuseLightingAttributes, mozilla::gfx::SpecularLightingAttributes, mozilla::gfx::ToAlphaAttributes>::extract<19ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::Type mozilla::Variant<mozilla::layers::LayersId, mozilla::layers::FocusTarget::ScrollTargets, mozilla::layers::FocusTarget::NoFocusTarget>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::wr::MemoryReport, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::wr::MemoryReport, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::TerminalState, mozilla::image::Yield>::Type mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::TerminalState, mozilla::image::Yield>::Type mozilla::Variant<mozilla::image::TerminalState, mozilla::image::Yield>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsPNGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsBMPDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsGIFDecoder2::State>::NonTerminalState, mozilla::image::TerminalState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned char, mozilla::image::WriteState>::Type mozilla::Variant<unsigned char, mozilla::image::WriteState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned char, mozilla::image::WriteState>::Type mozilla::Variant<unsigned char, mozilla::image::WriteState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::ICOState>::NonTerminalState, mozilla::image::TerminalState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsIconDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, mozilla::image::WriteState>::Type mozilla::Variant<unsigned int, mozilla::image::WriteState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, mozilla::image::WriteState>::Type mozilla::Variant<unsigned int, mozilla::image::WriteState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<mozilla::image::nsJPEGDecoder::State>::NonTerminalState, mozilla::image::TerminalState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Type mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Type mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::Type mozilla::Variant<mozilla::InternalTransitionEvent, mozilla::InternalAnimationEvent, RefPtr<mozilla::dom::AnimationPlaybackEvent> >::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, unsigned long, unsigned long>::Type mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, unsigned long, unsigned long>::Type mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, unsigned long, unsigned long>::Type mozilla::Variant<mozilla::Nothing, unsigned long, unsigned long>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Type mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Type mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::Type mozilla::Variant<JS::AllFrames, JS::MaxFrames, JS::FirstSubsumedFrame>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientOpResult, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::ClientState, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::ClientState, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Type mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::Type mozilla::Variant<mozilla::dom::ClientWindowState, mozilla::dom::ClientWorkerState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaData::Type, mozilla::WaitForDataRejectValue>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaResult, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaTrackDemuxer::SamplesHolder>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Type mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Type mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::Type mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaTrackDemuxer::SkipFailureHolder>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, unsigned int, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, unsigned int, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, unsigned int, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, unsigned int, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::MediaStatistics, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::MediaStatistics, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::MediaStatistics, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::MediaStatistics, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTString<char>, bool>::Type mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTString<char>, bool>::Type mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTString<char>, bool>::Type mozilla::Variant<mozilla::Nothing, nsTString<char>, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<bool>, bool>::Type mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<bool>, bool>::Type mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<bool>, bool>::Type mozilla::Variant<mozilla::Nothing, nsTArray<bool>, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::GlobalAllocPolicy::Token>, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::AudioData>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::VideoData>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::MetadataHolder, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Type mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Type mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::Type mozilla::Variant<mozilla::Nothing, mozilla::media::TimeUnit, mozilla::SeekRejectValue>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Type mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Type mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::Type mozilla::Variant<mozilla::Nothing, bool, RefPtr<mozilla::MediaMgrError> >::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsresult, bool>::Type mozilla::Variant<mozilla::Nothing, nsresult, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsresult, bool>::Type mozilla::Variant<mozilla::Nothing, nsresult, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsresult, bool>::Type mozilla::Variant<mozilla::Nothing, nsresult, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::Type mozilla::Variant<mozilla::Nothing, bool, mozilla::Maybe<nsTString<char16_t> > >::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Type mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Type mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::Type mozilla::Variant<mozilla::Nothing, nsTArray<unsigned long>, unsigned long>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<4ul>() Unexecuted instantiation: mozilla::detail::Nth<5ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<5ul>() Unexecuted instantiation: mozilla::detail::Nth<6ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<6ul>() Unexecuted instantiation: mozilla::detail::Nth<7ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<7ul>() Unexecuted instantiation: mozilla::detail::Nth<8ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<8ul>() Unexecuted instantiation: mozilla::detail::Nth<9ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<9ul>() Unexecuted instantiation: mozilla::detail::Nth<10ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<10ul>() Unexecuted instantiation: mozilla::detail::Nth<11ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<11ul>() Unexecuted instantiation: mozilla::detail::Nth<12ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<12ul>() Unexecuted instantiation: mozilla::detail::Nth<13ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<13ul>() Unexecuted instantiation: mozilla::detail::Nth<14ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<14ul>() Unexecuted instantiation: mozilla::detail::Nth<15ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<15ul>() Unexecuted instantiation: mozilla::detail::Nth<16ul, mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::Type mozilla::Variant<mozilla::DDNoValue, mozilla::DDLogObject, char const*, nsTString<char> const, bool, signed char, unsigned char, short, unsigned short, int, unsigned int, long, unsigned long, double, mozilla::DDRange, nsresult, mozilla::MediaResult>::extract<16ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTString<char>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTString<char>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTString<char>, nsresult>::Type mozilla::Variant<mozilla::Nothing, nsTString<char>, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::DecryptResult, mozilla::DecryptResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<RefPtr<mozilla::MediaData> >, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::TrackInfo::TrackType, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::GMPContentParent::CloseBlocker>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::gmp::ChromiumCDMParent>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::gmp::GMPServiceChild*, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::MediaCapabilitiesInfo, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::MediaCapabilitiesInfo>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, mozilla::Pair<bool, mozilla::SourceBufferAttributes>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaDataDecoder>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, mozilla::MediaResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::Type mozilla::Variant<mozilla::Nothing, RefPtr<mozilla::MediaRawData>, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Type mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Type mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::Type mozilla::Variant<mozilla::Nothing, OMX_COMMANDTYPE, mozilla::OmxPromiseLayer::OmxCommandFailureHolder>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::OmxPromiseLayer::BufferData*>, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::Type mozilla::Variant<mozilla::Nothing, mozilla::OmxPromiseLayer::BufferData*, mozilla::OmxPromiseLayer::OmxBufferFailureHolder>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::Type mozilla::Variant<mozilla::dom::quota::OriginScope::Origin, mozilla::dom::quota::OriginScope::Prefix, mozilla::dom::quota::OriginScope::Pattern, mozilla::dom::quota::OriginScope::Null>::extract<3ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnMakeCredentialResult, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::Type mozilla::Variant<mozilla::Nothing, mozilla::dom::WebAuthnGetAssertionResult, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Type mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::Type mozilla::Variant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>, nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback> >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::Type mozilla::Variant<mozilla::Nothing, nsTArray<mozilla::dom::ServiceWorkerRegistrationDescriptor>, mozilla::CopyableErrorResult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::Type mozilla::Variant<mozilla::ServoStyleSet*, nsXBLPrototypeBinding*, mozilla::dom::ShadowRoot*>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, unsigned int, nsresult>::Type mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, unsigned int, nsresult>::Type mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, unsigned int, nsresult>::Type mozilla::Variant<mozilla::Nothing, unsigned int, nsresult>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, unsigned int, bool, nsTString<char16_t> >::Type mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, unsigned int, bool, nsTString<char16_t> >::Type mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, unsigned int, bool, nsTString<char16_t> >::Type mozilla::Variant<unsigned int, bool, nsTString<char16_t> >::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::Type mozilla::Variant<JSAtom*, char16_t const*, mozilla::UniquePtr<char16_t [], JS::FreePolicy> >::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::Type mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::Type mozilla::Variant<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const*, unsigned long>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, int, double>::Type mozilla::Variant<mozilla::Nothing, int, double>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, int, double>::Type mozilla::Variant<mozilla::Nothing, int, double>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, int, double>::Type mozilla::Variant<mozilla::Nothing, int, double>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, nsTArray<int>, double>::Type mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, nsTArray<int>, double>::Type mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, nsTArray<int>, double>::Type mozilla::Variant<mozilla::Nothing, nsTArray<int>, double>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::Type mozilla::Variant<mozilla::Nothing, mozilla::UniquePtr<char, mozilla::DefaultDelete<char> >, bool>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::Type mozilla::Variant<mozilla::image::LexerTransition<TestState>::NonTerminalState, mozilla::image::TerminalState>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::extract<0ul>() mozilla::detail::Nth<1ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::extract<1ul>() Line | Count | Source | 710 | 9 | { | 711 | 9 | static_assert(N < sizeof...(Ts), | 712 | 9 | "provided an index outside of this Variant's type list"); | 713 | 9 | MOZ_RELEASE_ASSERT(is<N>()); | 714 | 9 | return typename detail::Nth<N, Ts...>::Type(std::move(as<N>())); | 715 | 9 | } |
Unexecuted instantiation: mozilla::detail::Nth<2ul, js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::Type mozilla::Variant<js::ScriptSource::Missing, js::ScriptSource::Uncompressed, js::ScriptSource::Compressed>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::extract<3ul>() Unexecuted instantiation: mozilla::detail::Nth<4ul, JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::Type mozilla::Variant<JSObject*, JSString*, mozilla::Tuple<js::NativeObject*, JSScript*>, mozilla::Tuple<js::NativeObject*, js::LazyScript*>, mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> >::extract<4ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::extract<0ul>() mozilla::detail::Nth<1ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::extract<1ul>() Line | Count | Source | 710 | 116 | { | 711 | 116 | static_assert(N < sizeof...(Ts), | 712 | 116 | "provided an index outside of this Variant's type list"); | 713 | 116 | MOZ_RELEASE_ASSERT(is<N>()); | 714 | 116 | return typename detail::Nth<N, Ts...>::Type(std::move(as<N>())); | 715 | 116 | } |
mozilla::detail::Nth<2ul, js::ImmediateMetadata, js::DelayMetadata, JSObject*>::Type mozilla::Variant<js::ImmediateMetadata, js::DelayMetadata, JSObject*>::extract<2ul>() Line | Count | Source | 710 | 116 | { | 711 | 116 | static_assert(N < sizeof...(Ts), | 712 | 116 | "provided an index outside of this Variant's type list"); | 713 | 116 | MOZ_RELEASE_ASSERT(is<N>()); | 714 | 116 | return typename detail::Nth<N, Ts...>::Type(std::move(as<N>())); | 715 | 116 | } |
Unexecuted instantiation: mozilla::detail::Nth<0ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::extract<2ul>() Unexecuted instantiation: mozilla::detail::Nth<3ul, js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::Type mozilla::Variant<js::InterpreterFrame*, js::jit::CommonFrameLayout*, js::jit::RematerializedFrame*, js::wasm::DebugFrame*>::extract<3ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::Type mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, js::ScriptSourceObject*, js::WasmInstanceObject*>::Type mozilla::Variant<js::ScriptSourceObject*, js::WasmInstanceObject*>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<0ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Type mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::extract<0ul>() Unexecuted instantiation: mozilla::detail::Nth<1ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Type mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::extract<1ul>() Unexecuted instantiation: mozilla::detail::Nth<2ul, JSScript*, js::LazyScript*, js::WasmInstanceObject*>::Type mozilla::Variant<JSScript*, js::LazyScript*, js::WasmInstanceObject*>::extract<2ul>() |
716 | | |
717 | | // Exhaustive matching of all variant types on the contained value. |
718 | | |
719 | | /** Match on an immutable const reference. */ |
720 | | template<typename Matcher> |
721 | | auto |
722 | | match(Matcher&& aMatcher) const |
723 | | -> decltype(Impl::match(aMatcher, *this)) |
724 | 43.2k | { |
725 | 43.2k | return Impl::match(aMatcher, *this); |
726 | 43.2k | } Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_3gfx15EmptyAttributesENS1_15BlendAttributesENS1_20MorphologyAttributesENS1_21ColorMatrixAttributesENS1_15FloodAttributesENS1_14TileAttributesENS1_27ComponentTransferAttributesENS1_17OpacityAttributesENS1_24ConvolveMatrixAttributesENS1_16OffsetAttributesENS1_25DisplacementMapAttributesENS1_20TurbulenceAttributesENS1_19CompositeAttributesENS1_15MergeAttributesENS1_15ImageAttributesENS1_22GaussianBlurAttributesENS1_20DropShadowAttributesENS1_25DiffuseLightingAttributesENS1_26SpecularLightingAttributesENS1_17ToAlphaAttributesEEE5matchIN3IPC11ParamTraitsISM_E13VariantWriterEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_6layers8LayersIdENS1_11FocusTarget13ScrollTargetsENS3_13NoFocusTargetEEE5matchIN3IPC11ParamTraitsIS6_E13VariantWriterEEEDTclsr4ImplE5matchfp_defpTEEOT_ _ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper12GetBoolValueENS_13PrefValueKindEE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 3.92k | { | 725 | 3.92k | return Impl::match(aMatcher, *this); | 726 | 3.92k | } |
_ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper11GetIntValueENS_13PrefValueKindEE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 226 | { | 725 | 226 | return Impl::match(aMatcher, *this); | 726 | 226 | } |
Unexecuted instantiation: _ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper18GetBareStringValueENS_13PrefValueKindEE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ _ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper4NameEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 6.90k | { | 725 | 6.90k | return Impl::match(aMatcher, *this); | 726 | 6.90k | } |
_ZNK7mozilla7VariantIJPKcK9nsTStringIcEEE5matchIRN12nsPrefBranch8PrefName10PtrMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 6.90k | { | 725 | 6.90k | return Impl::match(aMatcher, *this); | 726 | 6.90k | } |
_ZNK7mozilla7VariantIJPKcK9nsTStringIcEEE5matchIRN12nsPrefBranch8PrefName10LenMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 3 | { | 725 | 3 | return Impl::match(aMatcher, *this); | 726 | 3 | } |
_ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper10NameStringEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 3 | { | 725 | 3 | return Impl::match(aMatcher, *this); | 726 | 3 | } |
_ZNK7mozilla7VariantIJPKcK9nsTStringIcEEE5matchIN12nsPrefBranch8PrefName14CStringMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 71 | { | 725 | 71 | return Impl::match(aMatcher, *this); | 726 | 71 | } |
_ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper15HasDefaultValueEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 4.18k | { | 725 | 4.18k | return Impl::match(aMatcher, *this); | 726 | 4.18k | } |
Unexecuted instantiation: _ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper8IsStickyEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ _ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper14GetStringValueENS_13PrefValueKindEE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 37 | { | 725 | 37 | return Impl::match(aMatcher, *this); | 726 | 37 | } |
_ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper8IsLockedEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 4.19k | { | 725 | 4.19k | return Impl::match(aMatcher, *this); | 726 | 4.19k | } |
_ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper12HasUserValueEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 4.18k | { | 725 | 4.18k | return Impl::match(aMatcher, *this); | 726 | 4.18k | } |
_ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper4TypeEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 11.0k | { | 725 | 11.0k | return Impl::match(aMatcher, *this); | 726 | 11.0k | } |
Unexecuted instantiation: _ZNK7mozilla7VariantIJP4PrefNS_13SharedPrefMap4PrefEEE5matchIZNK11PrefWrapper14DefaultChangedEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_7plugins9IpdlTuple11InvalidTypeEahstijlm9nsTStringIcEbEE5matchIN3IPC11ParamTraitsIS6_E13VariantWriterEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_7plugins9IpdlTuple11InvalidTypeEahstijlm9nsTStringIcEbEE5matchIN3IPC11ParamTraitsINS2_12MaybeVariantIJahstijlmS5_bEEEE10LogMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:_ZNK7mozilla7VariantIJNS_3gfx15EmptyAttributesENS1_15BlendAttributesENS1_20MorphologyAttributesENS1_21ColorMatrixAttributesENS1_15FloodAttributesENS1_14TileAttributesENS1_27ComponentTransferAttributesENS1_17OpacityAttributesENS1_24ConvolveMatrixAttributesENS1_16OffsetAttributesENS1_25DisplacementMapAttributesENS1_20TurbulenceAttributesENS1_19CompositeAttributesENS1_15MergeAttributesENS1_15ImageAttributesENS1_22GaussianBlurAttributesENS1_20DropShadowAttributesENS1_25DiffuseLightingAttributesENS1_26SpecularLightingAttributesENS1_17ToAlphaAttributesEEE5matchIZNS1_L34FilterNodeFromPrimitiveDescriptionERKNS1_26FilterPrimitiveDescriptionEPNS1_10DrawTargetER8nsTArrayI6RefPtrINS1_10FilterNodeEEERST_INS1_12IntRectTypedINS1_12UnknownUnitsEEEERST_ISU_INS1_13SourceSurfaceEEEE26PrimitiveAttributesMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:_ZNK7mozilla7VariantIJNS_3gfx15EmptyAttributesENS1_15BlendAttributesENS1_20MorphologyAttributesENS1_21ColorMatrixAttributesENS1_15FloodAttributesENS1_14TileAttributesENS1_27ComponentTransferAttributesENS1_17OpacityAttributesENS1_24ConvolveMatrixAttributesENS1_16OffsetAttributesENS1_25DisplacementMapAttributesENS1_20TurbulenceAttributesENS1_19CompositeAttributesENS1_15MergeAttributesENS1_15ImageAttributesENS1_22GaussianBlurAttributesENS1_20DropShadowAttributesENS1_25DiffuseLightingAttributesENS1_26SpecularLightingAttributesENS1_17ToAlphaAttributesEEE5matchIZNS1_L30ResultChangeRegionForPrimitiveERKNS1_26FilterPrimitiveDescriptionERK8nsTArrayINS1_14IntRegionTypedINS1_12UnknownUnitsEEEEE26PrimitiveAttributesMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:_ZNK7mozilla7VariantIJNS_3gfx15EmptyAttributesENS1_15BlendAttributesENS1_20MorphologyAttributesENS1_21ColorMatrixAttributesENS1_15FloodAttributesENS1_14TileAttributesENS1_27ComponentTransferAttributesENS1_17OpacityAttributesENS1_24ConvolveMatrixAttributesENS1_16OffsetAttributesENS1_25DisplacementMapAttributesENS1_20TurbulenceAttributesENS1_19CompositeAttributesENS1_15MergeAttributesENS1_15ImageAttributesENS1_22GaussianBlurAttributesENS1_20DropShadowAttributesENS1_25DiffuseLightingAttributesENS1_26SpecularLightingAttributesENS1_17ToAlphaAttributesEEE5matchIZNS1_L30SourceNeededRegionForPrimitiveERKNS1_26FilterPrimitiveDescriptionERKNS1_14IntRegionTypedINS1_12UnknownUnitsEEEiE26PrimitiveAttributesMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_gfx_src0.cpp:_ZNK7mozilla7VariantIJNS_3gfx15EmptyAttributesENS1_15BlendAttributesENS1_20MorphologyAttributesENS1_21ColorMatrixAttributesENS1_15FloodAttributesENS1_14TileAttributesENS1_27ComponentTransferAttributesENS1_17OpacityAttributesENS1_24ConvolveMatrixAttributesENS1_16OffsetAttributesENS1_25DisplacementMapAttributesENS1_20TurbulenceAttributesENS1_19CompositeAttributesENS1_15MergeAttributesENS1_15ImageAttributesENS1_22GaussianBlurAttributesENS1_20DropShadowAttributesENS1_25DiffuseLightingAttributesENS1_26SpecularLightingAttributesENS1_17ToAlphaAttributesEEE5matchIZNS1_13FilterSupport29PostFilterExtentsForPrimitiveERKNS1_26FilterPrimitiveDescriptionERK8nsTArrayINS1_14IntRegionTypedINS1_12UnknownUnitsEEEEE26PrimitiveAttributesMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_gfx_layers2.cpp:_ZNK7mozilla7VariantIJNS_6layers8LayersIdENS1_11FocusTarget13ScrollTargetsENS3_13NoFocusTargetEEE5matchIZNS1_10FocusState6UpdateES2_S2_RKS3_E22FocusTargetDataMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_9DDNoValueENS_11DDLogObjectEPKcK9nsTStringIcEbahstijlmdNS_7DDRangeE8nsresultNS_11MediaResultEEE5matchINS_15LogValueMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_9DDNoValueENS_11DDLogObjectEPKcK9nsTStringIcEbahstijlmdNS_7DDRangeE8nsresultNS_11MediaResultEEE5matchINS_19LogValueMatcherJsonEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_3dom5quota11OriginScope6OriginENS3_6PrefixENS3_7PatternENS3_4NullEEE5matchIZNKS3_7MatchesERKS3_E7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_3dom5quota11OriginScope6OriginENS3_6PrefixENS3_7PatternENS3_4NullEEE5matchIZNKS3_13MatchesOriginERKS4_E13OriginMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_3dom5quota11OriginScope6OriginENS3_6PrefixENS3_7PatternENS3_4NullEEE5matchIZNKS3_13MatchesPrefixERKS5_E13PrefixMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJNS_3dom5quota11OriginScope6OriginENS3_6PrefixENS3_7PatternENS3_4NullEEE5matchIZNKS3_14MatchesPatternERKS6_E14PatternMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_extensions0.cpp:_ZNK7mozilla7VariantIJP11nsILoadInfoP18nsPIDOMWindowOuterEE5matchIZNKS_10extensions7DocInfo10IsTopLevelEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_extensions0.cpp:_ZNK7mozilla7VariantIJP11nsILoadInfoP18nsPIDOMWindowOuterEE5matchIZNKS_10extensions7DocInfo30ShouldMatchActiveTabPermissionEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_extensions0.cpp:_ZNK7mozilla7VariantIJP11nsILoadInfoP18nsPIDOMWindowOuterEE5matchIZNKS_10extensions7DocInfo7FrameIDEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_extensions0.cpp:_ZNK7mozilla7VariantIJP11nsILoadInfoP18nsPIDOMWindowOuterEE5matchIZNKS_10extensions7DocInfo9PrincipalEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJP6JSAtomPKDsNS_9UniquePtrIA_DsN2JS10FreePolicyEEEEE5matchIRNS_8devtools13TwoByteString10HashPolicy14HashingMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJP6JSAtomPKDsNS_9UniquePtrIA_DsN2JS10FreePolicyEEEEE5matchIRNS_8devtools13TwoByteString10HashPolicy15EqualityMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJP6JSAtomPKDsNS_9UniquePtrIA_DsN2JS10FreePolicyEEEEE5matchIRNS_8devtools13TwoByteString13LengthMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJP6JSAtomPKDsNS_9UniquePtrIA_DsN2JS10FreePolicyEEEEE5matchIRNS_8devtools13TwoByteString16IsNonNullMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ _ZNK7mozilla7VariantIJN2js12ScriptSource7MissingENS2_12UncompressedENS2_10CompressedEEE5matchIZNKS2_6lengthEvE13LengthMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 18 | { | 725 | 18 | return Impl::match(aMatcher, *this); | 726 | 18 | } |
Unexecuted instantiation: _ZNK7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchINSF_6Hasher11HashFunctorEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZNK7mozilla7VariantIJPN2js16InterpreterFrameEPNS1_3jit17CommonFrameLayoutEPNS4_19RematerializedFrameEPNS1_4wasm10DebugFrameEEE5matchINS1_19LiveSavedFrameCache8FramePtr16HasCachedMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unified_cpp_js_src35.cpp:_ZNK7mozilla7VariantIJP8JSScriptPN2JS5RealmEPNS3_4ZoneEN2js12ZonesInStateEP9JSRuntimeNS8_24CompilationsUsingNurseryENS8_15AllCompilationsEEE5matchIZL22JitDataStructuresExistRKSE_E7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 40 | { | 725 | 40 | return Impl::match(aMatcher, *this); | 726 | 40 | } |
Unexecuted instantiation: Unified_cpp_js_src35.cpp:_ZNK7mozilla7VariantIJP8JSScriptPN2JS5RealmEPNS3_4ZoneEN2js12ZonesInStateEP9JSRuntimeNS8_24CompilationsUsingNurseryENS8_15AllCompilationsEEE5matchIZL17IonBuilderMatchesRKSE_PNS8_3jit10IonBuilderEE14BuilderMatchesEEDTclsr4ImplE5matchfp_defpTEEOT_ Unified_cpp_js_src35.cpp:_ZNK7mozilla7VariantIJP8JSScriptPN2JS5RealmEPNS3_4ZoneEN2js12ZonesInStateEP9JSRuntimeNS8_24CompilationsUsingNurseryENS8_15AllCompilationsEEE5matchIZL18GetSelectorRuntimeRKSE_E7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 40 | { | 725 | 40 | return Impl::match(aMatcher, *this); | 726 | 40 | } |
Unexecuted instantiation: _ZNK7mozilla7VariantIJKPN2js8frontend6ParserINS2_16FullParseHandlerEDsEEEE5matchINS1_6detail20ErrorReporterMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ _ZNK7mozilla7VariantIJKPN2js8frontend6ParserINS2_16FullParseHandlerEDsEEEE5matchINS1_6detail20InvokeMemberFunctionINSA_9GetParserENSA_13ParserOptionsEJEEEEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 724 | 1.48k | { | 725 | 1.48k | return Impl::match(aMatcher, *this); | 726 | 1.48k | } |
|
727 | | |
728 | | /** Match on a mutable non-const reference. */ |
729 | | template<typename Matcher> |
730 | | auto |
731 | | match(Matcher&& aMatcher) |
732 | | -> decltype(Impl::match(aMatcher, *this)) |
733 | 1.79M | { |
734 | 1.79M | return Impl::match(aMatcher, *this); |
735 | 1.79M | } _ZN7mozilla7VariantIJN13PrefsHashIter4ElemENS_13SharedPrefMap4PrefEEE5matchIZN9PrefsIter4DoneEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 733 | 6.90k | { | 734 | 6.90k | return Impl::match(aMatcher, *this); | 735 | 6.90k | } |
_ZN7mozilla7VariantIJN13PrefsHashIter4ElemENS_13SharedPrefMap4PrefEEE5matchIZN9PrefsIter9MakeEntryEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 733 | 6.89k | { | 734 | 6.89k | return Impl::match(aMatcher, *this); | 735 | 6.89k | } |
_ZN7mozilla7VariantIJN13PrefsHashIter4ElemENS_13SharedPrefMap4PrefEEE5matchIZN9PrefsIter9NextEntryEvE7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 733 | 6.89k | { | 734 | 6.89k | return Impl::match(aMatcher, *this); | 735 | 6.89k | } |
Unexecuted instantiation: _ZN7mozilla7VariantIJjfNS_3gfx10PointTypedINS1_12UnknownUnitsEfEENS1_9Matrix5x4ENS1_12Point3DTypedIS3_fEENS1_9SizeTypedIS3_fEENS1_12IntSizeTypedIS3_EENS1_5ColorENS1_9RectTypedIS3_fEENS1_12IntRectTypedIS3_EEbNSt3__16vectorIfNSH_9allocatorIfEEEENS1_13IntPointTypedIS3_EENS1_10BaseMatrixIfEEEE5matchIRNS1_6SetterEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJ6RefPtrINS_3gfx13SourceSurfaceEES1_INS2_10FilterNodeEEEE5matchIRNS2_6SetterEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJP6JSAtomPKDsNS_9UniquePtrIA_DsN2JS10FreePolicyEEEEE5matchIRNS_8devtools13TwoByteString19CopyToBufferMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJP6JSAtomPKDsEE5matchIRNS_8devtools13TwoByteString22AsTwoByteStringMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJPKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEmEE5matchIRNS_8devtools24GetOrInternStringMatcherIDsNS_6VectorINS_9UniquePtrIA_DsNS_6detail10FreePolicyISG_EEEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJPKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEmEE5matchIRNS_8devtools24GetOrInternStringMatcherIcNS_6VectorINS_9UniquePtrIA_cNS_6detail10FreePolicyISG_EEEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr4ImplE5matchfp_defpTEEOT_ _ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_14applyToWrappedIZNSF_11compartmentEvE21GetCompartmentFunctorEEDTclfp_scPS2_LDnEEET_E14WrappedMatcherEEDTclsr4ImplE5matchfp_defpTEEOSO_ Line | Count | Source | 733 | 1.62M | { | 734 | 1.62M | return Impl::match(aMatcher, *this); | 735 | 1.62M | } |
Unexecuted instantiation: _ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_14applyToWrappedIZNKSF_9isTenuredEvE16IsTenuredFunctorEEDTclfp_scPS2_LDnEEET_E14WrappedMatcherEEDTclsr4ImplE5matchfp_defpTEEOSO_ Unexecuted instantiation: _ZN7mozilla7VariantIJPN2js16InterpreterFrameEPNS1_3jit17CommonFrameLayoutEPNS4_19RematerializedFrameEPNS1_4wasm10DebugFrameEEE5matchINS1_19LiveSavedFrameCache8FramePtr19SetHasCachedMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJPN2js16InterpreterFrameEPNS1_3jit17CommonFrameLayoutEPNS4_19RematerializedFrameEPNS1_4wasm10DebugFrameEEE5matchINS1_19LiveSavedFrameCache8FramePtr21ClearHasCachedMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_js_src10.cpp:_ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_14applyToWrappedIN12_GLOBAL__N_120TraceIncomingFunctorEEEDTclfp_scPS2_LDnEEET_E14WrappedMatcherEEDTclsr4ImplE5matchfp_defpTEEOSP_ Unexecuted instantiation: Unified_cpp_js_src27.cpp:_ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_14applyToWrappedIN12_GLOBAL__N_124VisitGrayCallbackFunctorEEEDTclfp_scPS2_LDnEEET_E14WrappedMatcherEEDTclsr4ImplE5matchfp_defpTEEOSP_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_14applyToWrappedIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS2_LDnEEET_E14WrappedMatcherEEDTclsr4ImplE5matchfp_defpTEEOSP_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_15applyToDebuggerIN12_GLOBAL__N_116TraceRootFunctorEEEDTclfp_scPS8_LDnEEET_E15DebuggerMatcherEEDTclsr4ImplE5matchfp_defpTEEOSP_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_14applyToWrappedIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS2_LDnEEET_E14WrappedMatcherEEDTclsr4ImplE5matchfp_defpTEEOSP_ Unexecuted instantiation: Unified_cpp_js_src33.cpp:_ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_15applyToDebuggerIN12_GLOBAL__N_128NeedsSweepUnbarrieredFunctorEEEDTclfp_scPS8_LDnEEET_E15DebuggerMatcherEEDTclsr4ImplE5matchfp_defpTEEOSP_ Unexecuted instantiation: _ZN7mozilla7VariantIJN2js12ScriptSource7MissingENS2_12UncompressedENS2_10CompressedEEE5matchIRZNS2_10performXDRILNS1_7XDRModeE0EEENS_6ResultINS_2OkEN2JS15TranscodeResultEEEPNS1_8XDRStateIXT_EEEE23CompressedLengthMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJN2js12ScriptSource7MissingENS2_12UncompressedENS2_10CompressedEEE5matchIRZNS2_10performXDRILNS1_7XDRModeE0EEENS_6ResultINS_2OkEN2JS15TranscodeResultEEEPNS1_8XDRStateIXT_EEEE14RawDataMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ _ZN7mozilla7VariantIJKPN2js8frontend6ParserINS2_16FullParseHandlerEDsEEEE5matchINS1_6detail19ParseHandlerMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 733 | 44 | { | 734 | 44 | return Impl::match(aMatcher, *this); | 735 | 44 | } |
_ZN7mozilla7VariantIJKPN2js8frontend6ParserINS2_16FullParseHandlerEDsEEEE5matchINS1_6detail20ErrorReporterMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 733 | 148k | { | 734 | 148k | return Impl::match(aMatcher, *this); | 735 | 148k | } |
_ZN7mozilla7VariantIJKPN2js8frontend6ParserINS2_16FullParseHandlerEDsEEEE5matchINS1_6detail20InvokeMemberFunctionINSA_9GetParserENSA_18ParserNewObjectBoxEJP8JSObjectEEEEEDTclsr4ImplE5matchfp_defpTEEOT_ Line | Count | Source | 733 | 188 | { | 734 | 188 | return Impl::match(aMatcher, *this); | 735 | 188 | } |
Unexecuted instantiation: _ZN7mozilla7VariantIJN2js12ScriptSource7MissingENS2_12UncompressedENS2_10CompressedEEE5matchIRZNS2_10performXDRILNS1_7XDRModeE1EEENS_6ResultINS_2OkEN2JS15TranscodeResultEEEPNS1_8XDRStateIXT_EEEE23CompressedLengthMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJN2js12ScriptSource7MissingENS2_12UncompressedENS2_10CompressedEEE5matchIRZNS2_10performXDRILNS1_7XDRModeE1EEENS_6ResultINS_2OkEN2JS15TranscodeResultEEEPNS1_8XDRStateIXT_EEEE14RawDataMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_js_src39.cpp:_ZN7mozilla7VariantIJN2JS9AllFramesENS1_9MaxFramesENS1_18FirstSubsumedFrameEEE5matchIRZN2jsL18captureIsSatisfiedEP9JSContextP12JSPrincipalsPK6JSAtomRS5_E7MatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJP6JSAtomPKDsEE5matchIRN2JS3ubi16AtomizingMatcherEEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJP6JSAtomPKDsEE5matchIR19CopyToBufferMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: _ZN7mozilla7VariantIJP6JSAtomPKDsEE5matchIR13LengthMatcherEEDTclsr4ImplE5matchfp_defpTEEOT_ Unexecuted instantiation: Unified_cpp_js_src9.cpp:_ZN7mozilla7VariantIJP8JSObjectP8JSStringNS_5TupleIJPN2js12NativeObjectEP8JSScriptEEENS5_IJS8_PNS6_10LazyScriptEEEENS5_IJS8_S2_NS6_19CrossCompartmentKey18DebuggerObjectKindEEEEEE5matchIRZNSF_14applyToWrappedIN12_GLOBAL__N_122AddOutgoingEdgeFunctorEEEDTclfp_scPS2_LDnEEET_E14WrappedMatcherEEDTclsr4ImplE5matchfp_defpTEEOSP_ |
736 | | }; |
737 | | |
738 | | /* |
739 | | * AsVariant() is used to construct a Variant<T,...> value containing the |
740 | | * provided T value using type inference. It can be used to construct Variant |
741 | | * values in expressions or return them from functions without specifying the |
742 | | * entire Variant type. |
743 | | * |
744 | | * Because AsVariant() must copy or move the value into a temporary and this |
745 | | * cannot necessarily be elided by the compiler, it's mostly appropriate only |
746 | | * for use with primitive or very small types. |
747 | | * |
748 | | * AsVariant() returns a AsVariantTemporary value which is implicitly |
749 | | * convertible to any Variant that can hold a value of type T. |
750 | | */ |
751 | | template<typename T> |
752 | | detail::AsVariantTemporary<T> |
753 | | AsVariant(T&& aValue) |
754 | 19.4k | { |
755 | 19.4k | return detail::AsVariantTemporary<T>(std::forward<T>(aValue)); |
756 | 19.4k | } Unexecuted instantiation: mozilla::detail::AsVariantTemporary<char const*> mozilla::AsVariant<char const*>(char const*&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned int&> mozilla::AsVariant<unsigned int&>(unsigned int&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsTString<char16_t>&> mozilla::AsVariant<nsTString<char16_t>&>(nsTString<char16_t>&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<bool&> mozilla::AsVariant<bool&>(bool&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned long&> mozilla::AsVariant<unsigned long&>(unsigned long&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned long const&> mozilla::AsVariant<unsigned long const&>(unsigned long const&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::CooperativeThreadPool::AllThreadsBlocked> mozilla::AsVariant<mozilla::CooperativeThreadPool::AllThreadsBlocked>(mozilla::CooperativeThreadPool::AllThreadsBlocked&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ToAlphaAttributes&> mozilla::AsVariant<mozilla::gfx::ToAlphaAttributes&>(mozilla::gfx::ToAlphaAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::SpecularLightingAttributes&> mozilla::AsVariant<mozilla::gfx::SpecularLightingAttributes&>(mozilla::gfx::SpecularLightingAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DiffuseLightingAttributes&> mozilla::AsVariant<mozilla::gfx::DiffuseLightingAttributes&>(mozilla::gfx::DiffuseLightingAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DropShadowAttributes&> mozilla::AsVariant<mozilla::gfx::DropShadowAttributes&>(mozilla::gfx::DropShadowAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::GaussianBlurAttributes&> mozilla::AsVariant<mozilla::gfx::GaussianBlurAttributes&>(mozilla::gfx::GaussianBlurAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ImageAttributes&> mozilla::AsVariant<mozilla::gfx::ImageAttributes&>(mozilla::gfx::ImageAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::MergeAttributes&> mozilla::AsVariant<mozilla::gfx::MergeAttributes&>(mozilla::gfx::MergeAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::CompositeAttributes&> mozilla::AsVariant<mozilla::gfx::CompositeAttributes&>(mozilla::gfx::CompositeAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::TurbulenceAttributes&> mozilla::AsVariant<mozilla::gfx::TurbulenceAttributes&>(mozilla::gfx::TurbulenceAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DisplacementMapAttributes&> mozilla::AsVariant<mozilla::gfx::DisplacementMapAttributes&>(mozilla::gfx::DisplacementMapAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::OffsetAttributes&> mozilla::AsVariant<mozilla::gfx::OffsetAttributes&>(mozilla::gfx::OffsetAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ConvolveMatrixAttributes&> mozilla::AsVariant<mozilla::gfx::ConvolveMatrixAttributes&>(mozilla::gfx::ConvolveMatrixAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::OpacityAttributes&> mozilla::AsVariant<mozilla::gfx::OpacityAttributes&>(mozilla::gfx::OpacityAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ComponentTransferAttributes&> mozilla::AsVariant<mozilla::gfx::ComponentTransferAttributes&>(mozilla::gfx::ComponentTransferAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::TileAttributes&> mozilla::AsVariant<mozilla::gfx::TileAttributes&>(mozilla::gfx::TileAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::FloodAttributes&> mozilla::AsVariant<mozilla::gfx::FloodAttributes&>(mozilla::gfx::FloodAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ColorMatrixAttributes&> mozilla::AsVariant<mozilla::gfx::ColorMatrixAttributes&>(mozilla::gfx::ColorMatrixAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::MorphologyAttributes&> mozilla::AsVariant<mozilla::gfx::MorphologyAttributes&>(mozilla::gfx::MorphologyAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::BlendAttributes&> mozilla::AsVariant<mozilla::gfx::BlendAttributes&>(mozilla::gfx::BlendAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::EmptyAttributes&> mozilla::AsVariant<mozilla::gfx::EmptyAttributes&>(mozilla::gfx::EmptyAttributes&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::NoFocusTarget&> mozilla::AsVariant<mozilla::layers::FocusTarget::NoFocusTarget&>(mozilla::layers::FocusTarget::NoFocusTarget&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::ScrollTargets&> mozilla::AsVariant<mozilla::layers::FocusTarget::ScrollTargets&>(mozilla::layers::FocusTarget::ScrollTargets&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::LayersId&> mozilla::AsVariant<mozilla::layers::LayersId&>(mozilla::layers::LayersId&) mozilla::detail::AsVariantTemporary<PrefsHashIter::Elem> mozilla::AsVariant<PrefsHashIter::Elem>(PrefsHashIter::Elem&&) Line | Count | Source | 754 | 6 | { | 755 | 6 | return detail::AsVariantTemporary<T>(std::forward<T>(aValue)); | 756 | 6 | } |
Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::SharedPrefMap::Pref> mozilla::AsVariant<mozilla::SharedPrefMap::Pref>(mozilla::SharedPrefMap::Pref&&) mozilla::detail::AsVariantTemporary<Pref*&> mozilla::AsVariant<Pref*&>(Pref*&) Line | Count | Source | 754 | 18.0k | { | 755 | 18.0k | return detail::AsVariantTemporary<T>(std::forward<T>(aValue)); | 756 | 18.0k | } |
Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::SharedPrefMap::Pref const&> mozilla::AsVariant<mozilla::SharedPrefMap::Pref const&>(mozilla::SharedPrefMap::Pref const&) mozilla::detail::AsVariantTemporary<nsTString<char> > mozilla::AsVariant<nsTString<char> >(nsTString<char>&&) Line | Count | Source | 754 | 1.40k | { | 755 | 1.40k | return detail::AsVariantTemporary<T>(std::forward<T>(aValue)); | 756 | 1.40k | } |
mozilla::detail::AsVariantTemporary<char const**&> mozilla::AsVariant<char const**&>(char const**&) Line | Count | Source | 754 | 37 | { | 755 | 37 | return detail::AsVariantTemporary<T>(std::forward<T>(aValue)); | 756 | 37 | } |
Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsTString<char>&> mozilla::AsVariant<nsTString<char>&>(nsTString<char>&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<long&> mozilla::AsVariant<long&>(long&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<int&> mozilla::AsVariant<int&>(int&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned short&> mozilla::AsVariant<unsigned short&>(unsigned short&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<short&> mozilla::AsVariant<short&>(short&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned char&> mozilla::AsVariant<unsigned char&>(unsigned char&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<signed char&> mozilla::AsVariant<signed char&>(signed char&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::plugins::IpdlTuple::InvalidType&> mozilla::AsVariant<mozilla::plugins::IpdlTuple::InvalidType&>(mozilla::plugins::IpdlTuple::InvalidType&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::FocusTarget::NoFocusTarget> mozilla::AsVariant<mozilla::layers::FocusTarget::NoFocusTarget>(mozilla::layers::FocusTarget::NoFocusTarget&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::layers::LayersId> mozilla::AsVariant<mozilla::layers::LayersId>(mozilla::layers::LayersId&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned int> mozilla::AsVariant<unsigned int>(unsigned int&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned char> mozilla::AsVariant<unsigned char>(unsigned char&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::image::WriteState> mozilla::AsVariant<mozilla::image::WriteState>(mozilla::image::WriteState&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<unsigned int const&> mozilla::AsVariant<unsigned int const&>(unsigned int const&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::Nothing> mozilla::AsVariant<mozilla::Nothing>(mozilla::Nothing&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::WorkerPrivate*&> mozilla::AsVariant<mozilla::dom::WorkerPrivate*&>(mozilla::dom::WorkerPrivate*&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<RefPtr<nsPIDOMWindowInner> > mozilla::AsVariant<RefPtr<nsPIDOMWindowInner> >(RefPtr<nsPIDOMWindowInner>&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsCOMPtr<nsIDocShell> > mozilla::AsVariant<nsCOMPtr<nsIDocShell> >(nsCOMPtr<nsIDocShell>&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWindowState const&> mozilla::AsVariant<mozilla::dom::ClientWindowState const&>(mozilla::dom::ClientWindowState const&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWorkerState const&> mozilla::AsVariant<mozilla::dom::ClientWorkerState const&>(mozilla::dom::ClientWorkerState const&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWindowState> mozilla::AsVariant<mozilla::dom::ClientWindowState>(mozilla::dom::ClientWindowState&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ClientWorkerState> mozilla::AsVariant<mozilla::dom::ClientWorkerState>(mozilla::dom::ClientWorkerState&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Origin> mozilla::AsVariant<mozilla::dom::quota::OriginScope::Origin>(mozilla::dom::quota::OriginScope::Origin&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Prefix> mozilla::AsVariant<mozilla::dom::quota::OriginScope::Prefix>(mozilla::dom::quota::OriginScope::Prefix&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Pattern> mozilla::AsVariant<mozilla::dom::quota::OriginScope::Pattern>(mozilla::dom::quota::OriginScope::Pattern&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::quota::OriginScope::Null> mozilla::AsVariant<mozilla::dom::quota::OriginScope::Null>(mozilla::dom::quota::OriginScope::Null&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::BlendAttributes> mozilla::AsVariant<mozilla::gfx::BlendAttributes>(mozilla::gfx::BlendAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ColorMatrixAttributes> mozilla::AsVariant<mozilla::gfx::ColorMatrixAttributes>(mozilla::gfx::ColorMatrixAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ComponentTransferAttributes> mozilla::AsVariant<mozilla::gfx::ComponentTransferAttributes>(mozilla::gfx::ComponentTransferAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::CompositeAttributes> mozilla::AsVariant<mozilla::gfx::CompositeAttributes>(mozilla::gfx::CompositeAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ConvolveMatrixAttributes> mozilla::AsVariant<mozilla::gfx::ConvolveMatrixAttributes>(mozilla::gfx::ConvolveMatrixAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DiffuseLightingAttributes> mozilla::AsVariant<mozilla::gfx::DiffuseLightingAttributes>(mozilla::gfx::DiffuseLightingAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::OffsetAttributes> mozilla::AsVariant<mozilla::gfx::OffsetAttributes>(mozilla::gfx::OffsetAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DisplacementMapAttributes> mozilla::AsVariant<mozilla::gfx::DisplacementMapAttributes>(mozilla::gfx::DisplacementMapAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::DropShadowAttributes> mozilla::AsVariant<mozilla::gfx::DropShadowAttributes>(mozilla::gfx::DropShadowAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::FloodAttributes> mozilla::AsVariant<mozilla::gfx::FloodAttributes>(mozilla::gfx::FloodAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::GaussianBlurAttributes> mozilla::AsVariant<mozilla::gfx::GaussianBlurAttributes>(mozilla::gfx::GaussianBlurAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ImageAttributes> mozilla::AsVariant<mozilla::gfx::ImageAttributes>(mozilla::gfx::ImageAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::MergeAttributes> mozilla::AsVariant<mozilla::gfx::MergeAttributes>(mozilla::gfx::MergeAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::MorphologyAttributes> mozilla::AsVariant<mozilla::gfx::MorphologyAttributes>(mozilla::gfx::MorphologyAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::SpecularLightingAttributes> mozilla::AsVariant<mozilla::gfx::SpecularLightingAttributes>(mozilla::gfx::SpecularLightingAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::TileAttributes> mozilla::AsVariant<mozilla::gfx::TileAttributes>(mozilla::gfx::TileAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::TurbulenceAttributes> mozilla::AsVariant<mozilla::gfx::TurbulenceAttributes>(mozilla::gfx::TurbulenceAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::dom::ipc::StructuredCloneData> mozilla::AsVariant<mozilla::dom::ipc::StructuredCloneData>(mozilla::dom::ipc::StructuredCloneData&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>&> mozilla::AsVariant<nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>&>(nsMainThreadPtrHandle<mozilla::dom::U2FRegisterCallback>&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>&> mozilla::AsVariant<nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>&>(nsMainThreadPtrHandle<mozilla::dom::U2FSignCallback>&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::OpacityAttributes> mozilla::AsVariant<mozilla::gfx::OpacityAttributes>(mozilla::gfx::OpacityAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::gfx::ToAlphaAttributes> mozilla::AsVariant<mozilla::gfx::ToAlphaAttributes>(mozilla::gfx::ToAlphaAttributes&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsILoadInfo*&> mozilla::AsVariant<nsILoadInfo*&>(nsILoadInfo*&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<nsPIDOMWindowOuter*&> mozilla::AsVariant<nsPIDOMWindowOuter*&>(nsPIDOMWindowOuter*&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::image::WriteState&> mozilla::AsVariant<mozilla::image::WriteState&>(mozilla::image::WriteState&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<mozilla::UniquePtr<char [], JS::FreePolicy> > mozilla::AsVariant<mozilla::UniquePtr<char [], JS::FreePolicy> >(mozilla::UniquePtr<char [], JS::FreePolicy>&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<js::ScriptSourceObject*> mozilla::AsVariant<js::ScriptSourceObject*>(js::ScriptSourceObject*&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<js::WasmInstanceObject*> mozilla::AsVariant<js::WasmInstanceObject*>(js::WasmInstanceObject*&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<js::WasmInstanceObject*&> mozilla::AsVariant<js::WasmInstanceObject*&>(js::WasmInstanceObject*&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<JSScript*> mozilla::AsVariant<JSScript*>(JSScript*&&) Unexecuted instantiation: mozilla::detail::AsVariantTemporary<js::LazyScript*> mozilla::AsVariant<js::LazyScript*>(js::LazyScript*&&) |
757 | | |
758 | | } // namespace mozilla |
759 | | |
760 | | #endif /* mozilla_Variant_h */ |