Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dist/include/mozilla/Tuple.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 variadic tuple class. */
8
9
#ifndef mozilla_Tuple_h
10
#define mozilla_Tuple_h
11
12
#include "mozilla/Move.h"
13
#include "mozilla/Pair.h"
14
#include "mozilla/TemplateLib.h"
15
#include "mozilla/TypeTraits.h"
16
17
#include <stddef.h>
18
#include <utility>
19
20
namespace mozilla {
21
22
namespace detail {
23
24
/*
25
 * A helper class that allows passing around multiple variadic argument lists
26
 * by grouping them.
27
 */
28
template<typename... Ts>
29
struct Group;
30
31
/*
32
 * CheckConvertibility checks whether each type in a source pack of types
33
 * is convertible to the corresponding type in a target pack of types.
34
 *
35
 * It is intended to be invoked like this:
36
 *   CheckConvertibility<Group<SourceTypes...>, Group<TargetTypes...>>
37
 * 'Group' is used to separate types in the two packs (otherwise if we just
38
 * wrote 'CheckConvertibility<SourceTypes..., TargetTypes...', it couldn't
39
 * know where the first pack ends and the second begins).
40
 *
41
 * Note that we need to check explicitly that the two packs are of the same
42
 * size, because attempting to simultaneously expand two parameter packs
43
 * is an error (and it would be a hard error, because it wouldn't be in the
44
 * immediate context of the caller).
45
 */
46
47
template<typename Source, typename Target, bool SameSize>
48
struct CheckConvertibilityImpl;
49
50
template<typename Source, typename Target>
51
struct CheckConvertibilityImpl<Source, Target, false>
52
  : FalseType {};
53
54
template<typename... SourceTypes, typename... TargetTypes>
55
struct CheckConvertibilityImpl<Group<SourceTypes...>, Group<TargetTypes...>, true>
56
  : IntegralConstant<bool, tl::And<IsConvertible<SourceTypes, TargetTypes>::value...>::value> { };
57
58
template<typename Source, typename Target>
59
struct CheckConvertibility;
60
61
template<typename... SourceTypes, typename... TargetTypes>
62
struct CheckConvertibility<Group<SourceTypes...>, Group<TargetTypes...>>
63
  : CheckConvertibilityImpl<Group<SourceTypes...>, Group<TargetTypes...>,
64
        sizeof...(SourceTypes) == sizeof...(TargetTypes)> { };
65
66
/*
67
 * TupleImpl is a helper class used to implement mozilla::Tuple.
68
 * It represents one node in a recursive inheritance hierarchy.
69
 * 'Index' is the 0-based index of the tuple element stored in this node;
70
 * 'Elements...' are the types of the elements stored in this node and its
71
 * base classes.
72
 *
73
 * Example:
74
 *   Tuple<int, float, char> inherits from
75
 *   TupleImpl<0, int, float, char>, which stores the 'int' and inherits from
76
 *   TupleImpl<1, float, char>, which stores the 'float' and inherits from
77
 *   TupleImpl<2, char>, which stores the 'char' and inherits from
78
 *   TupleImpl<3>, which stores nothing and terminates the recursion.
79
 *
80
 * The purpose of the 'Index' parameter is to allow efficient index-based
81
 * access to a tuple element: given a tuple, and an index 'I' that we wish to
82
 * access, we can cast the tuple to the base which stores the I'th element
83
 * by performing template argument deduction against 'TupleImpl<I, E...>',
84
 * where 'I' is specified explicitly and 'E...' is deduced (this is what the
85
 * non-member 'Get<N>(t)' function does).
86
 *
87
 * This implementation strategy is borrowed from libstdc++'s std::tuple
88
 * implementation.
89
 */
90
template<std::size_t Index, typename... Elements>
91
struct TupleImpl;
92
93
/*
94
 * The base case of the inheritance recursion (and also the implementation
95
 * of an empty tuple).
96
 */
97
template<std::size_t Index>
98
struct TupleImpl<Index> {
99
  bool operator==(const TupleImpl<Index>& aOther) const
100
0
  {
101
0
    return true;
102
0
  }
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul>::operator==(mozilla::detail::TupleImpl<2ul> const&) const
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul>::operator==(mozilla::detail::TupleImpl<3ul> const&) const
103
104
  template <typename F>
105
0
  void ForEach(const F& aFunc) {}
Unexecuted instantiation: _ZN7mozilla6detail9TupleImplILm3EJEE7ForEachIZ27ImplCycleCollectionTraverseIJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS5_INS_10extensions25WebExtensionContentScriptEELm8EEEEvR34nsCycleCollectionTraversalCallbackRNS_5TupleIJDpT_EEEPKcjEUlRT_E_EEvRKSP_
Unexecuted instantiation: _ZN7mozilla6detail9TupleImplILm3EJEE7ForEachIZ25ImplCycleCollectionUnlinkIJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS5_INS_10extensions25WebExtensionContentScriptEELm8EEEEvRNS_5TupleIJDpT_EEEEUlRT_E_EEvRKSL_
106
};
107
108
/*
109
 * One node of the recursive inheritance hierarchy. It stores the element at
110
 * index 'Index' of a tuple, of type 'HeadT', and inherits from the nodes
111
 * that store the remaining elements, of types 'TailT...'.
112
 */
113
template<std::size_t Index, typename HeadT, typename... TailT>
114
struct TupleImpl<Index, HeadT, TailT...>
115
  : public TupleImpl<Index + 1, TailT...>
116
{
117
  typedef TupleImpl<Index + 1, TailT...> Base;
118
119
  // Accessors for the head and the tail.
120
  // These are static, because the intended usage is for the caller to,
121
  // given a tuple, obtain the type B of the base class which stores the
122
  // element of interest, and then call B::Head(tuple) to access it.
123
  // (Tail() is mostly for internal use, but is exposed for consistency.)
124
212
  static HeadT& Head(TupleImpl& aTuple) { return aTuple.mHead; }
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long>::Head(mozilla::detail::TupleImpl<1ul, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*, unsigned long>::Head(mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NotNull<mozilla::Encoding const*> >::Head(mozilla::detail::TupleImpl<1ul, mozilla::NotNull<mozilla::Encoding const*> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult, mozilla::NotNull<mozilla::Encoding const*> >::Head(mozilla::detail::TupleImpl<0ul, nsresult, mozilla::NotNull<mozilla::Encoding const*> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, bool>::Head(mozilla::detail::TupleImpl<3ul, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long, bool>::Head(mozilla::detail::TupleImpl<2ul, unsigned long, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long, bool>::Head(mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long, bool>::Head(mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long>::Head(mozilla::detail::TupleImpl<2ul, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long>::Head(mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long>::Head(mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&>::Head(mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&>::Head(mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long&>::Head(mozilla::detail::TupleImpl<2ul, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&, bool&>::Head(mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&, bool&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&, bool&>::Head(mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&, bool&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long&, bool&>::Head(mozilla::detail::TupleImpl<2ul, unsigned long&, bool&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, bool&>::Head(mozilla::detail::TupleImpl<3ul, bool&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult&, mozilla::Encoding const*&>::Head(mozilla::detail::TupleImpl<0ul, nsresult&, mozilla::Encoding const*&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Encoding const*&>::Head(mozilla::detail::TupleImpl<1ul, mozilla::Encoding const*&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::ConnectionData> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::ConnectionData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::LookupArgument> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::LookupArgument> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::SocketData> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::SocketData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::HttpData> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::HttpData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::WebSocketRequest> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::WebSocketRequest> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::DnsData> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::DnsData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::RcwnData> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::RcwnData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<double> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<double> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsILoadContextInfo>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsILoadContextInfo>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<long const>, StoreCopyPassByConstLRef<long const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<long const>, StoreCopyPassByConstLRef<long const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<long const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<long const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, socket*, socket*>::Head(mozilla::detail::TupleImpl<0ul, socket*, socket*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, socket*>::Head(mozilla::detail::TupleImpl<1ul, socket*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPacket> >::Head(mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPacket> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::ipc::MessageChannel>, StoreCopyPassByConstLRef<mozilla::ipc::Side> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::ipc::MessageChannel>, StoreCopyPassByConstLRef<mozilla::ipc::Side> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::ipc::Side> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::ipc::Side> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<IPC::Message> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<IPC::Message> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >::Head(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >::Head(mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool&, nsTString<char16_t>&>::Head(mozilla::detail::TupleImpl<0ul, bool&, nsTString<char16_t>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t>&>::Head(mozilla::detail::TupleImpl<1ul, nsTString<char16_t>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>::Head(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>::Head(mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool&, mozilla::CopyableErrorResult&>::Head(mozilla::detail::TupleImpl<0ul, bool&, mozilla::CopyableErrorResult&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult&>::Head(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsJARInputThunk>, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsJARInputThunk>, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozIStorageError> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozIStorageError> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::storage::ResultSet> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::storage::ResultSet> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, GMPVideoCodec, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, GMPVideoCodec, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, GMPVideoCodec, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<1ul, GMPVideoCodec, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<2ul, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<3ul, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<4ul, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, webrtc::VideoFrame, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, webrtc::VideoFrame, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, webrtc::VideoFrame, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >::Head(mozilla::detail::TupleImpl<1ul, webrtc::VideoFrame, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >::Head(mozilla::detail::TupleImpl<2ul, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, unsigned int, unsigned int>::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, unsigned int, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned int, unsigned int>::Head(mozilla::detail::TupleImpl<1ul, unsigned int, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned int>::Head(mozilla::detail::TupleImpl<2ul, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder>, webrtc::VideoCodec const*, int, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder>, webrtc::VideoCodec const*, int, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, webrtc::VideoCodec const*, int, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<1ul, webrtc::VideoCodec const*, int, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, int, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<2ul, int, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, RefPtr<mozilla::GmpInitDoneRunnable> >::Head(mozilla::detail::TupleImpl<3ul, RefPtr<mozilla::GmpInitDoneRunnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder>, nsAutoPtr<mozilla::GMPDecodeData> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder>, nsAutoPtr<mozilla::GMPDecodeData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::GMPDecodeData> >::Head(mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::GMPDecodeData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::layers::Image>, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::layers::Image>, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::TransportFlow>, RefPtr<mozilla::TransportFlow>, nsAutoPtr<mozilla::MediaPipelineFilter> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::TransportFlow>, RefPtr<mozilla::TransportFlow>, nsAutoPtr<mozilla::MediaPipelineFilter> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::TransportFlow>, nsAutoPtr<mozilla::MediaPipelineFilter> >::Head(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::TransportFlow>, nsAutoPtr<mozilla::MediaPipelineFilter> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::MediaPipelineFilter> >::Head(mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::MediaPipelineFilter> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long>::Head(mozilla::detail::TupleImpl<0ul, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::Head(mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::Head(mozilla::detail::TupleImpl<1ul, int, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::Head(mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, char const*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, char const*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, char const*>::Head(mozilla::detail::TupleImpl<1ul, int, char const*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, char const*>::Head(mozilla::detail::TupleImpl<2ul, char const*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::Head(mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::Head(mozilla::detail::TupleImpl<1ul, int, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::Head(mozilla::detail::TupleImpl<2ul, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >::Head(mozilla::detail::TupleImpl<0ul, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::RTCStatsQuery> >::Head(mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::RTCStatsQuery> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::Head(mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<nsDOMDataChannel>, RefPtr<mozilla::dom::PeerConnectionObserver> >::Head(mozilla::detail::TupleImpl<0ul, already_AddRefed<nsDOMDataChannel>, RefPtr<mozilla::dom::PeerConnectionObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::PeerConnectionObserver> >::Head(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::PeerConnectionObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, mozilla::JsepOfferOptions>::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, mozilla::JsepOfferOptions>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::JsepOfferOptions>::Head(mozilla::detail::TupleImpl<1ul, mozilla::JsepOfferOptions>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<1ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, nsAutoPtr<mozilla::RTCStatsQuery> >::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, nsAutoPtr<mozilla::RTCStatsQuery> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsCOMPtr<nsIWeakReference>, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, nsCOMPtr<nsIWeakReference>, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<1ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:mozilla::detail::TupleImpl<0ul, mozilla::dom::PCObserverStateType, (anonymous namespace)::WrappableJSErrorResult, JS::Realm*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::dom::PCObserverStateType, (anonymous namespace)::WrappableJSErrorResult, JS::Realm*>&)
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:mozilla::detail::TupleImpl<1ul, (anonymous namespace)::WrappableJSErrorResult, JS::Realm*>::Head(mozilla::detail::TupleImpl<1ul, (anonymous namespace)::WrappableJSErrorResult, JS::Realm*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, JS::Realm*>::Head(mozilla::detail::TupleImpl<2ul, JS::Realm*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >::Head(mozilla::detail::TupleImpl<1ul, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::RTCStatsQuery> >::Head(mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::RTCStatsQuery> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>::Head(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned long>::Head(mozilla::detail::TupleImpl<3ul, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<0ul, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<3ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<4ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<5ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<6ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<6ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::PeerConnectionMedia>, nsAutoPtr<mozilla::PacketDumper>, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::PeerConnectionMedia>, nsAutoPtr<mozilla::PacketDumper>, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::PacketDumper>, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::Head(mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::PacketDumper>, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::Head(mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::Head(mozilla::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::Head(mozilla::detail::TupleImpl<4ul, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::Head(mozilla::detail::TupleImpl<5ul, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<6ul, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::Head(mozilla::detail::TupleImpl<6ul, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<7ul, mozilla::TransportLayerSrtp*>::Head(mozilla::detail::TupleImpl<7ul, mozilla::TransportLayerSrtp*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<0ul, bool, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<1ul, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<2ul, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<3ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool>::Head(mozilla::detail::TupleImpl<0ul, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, bool>::Head(mozilla::detail::TupleImpl<0ul, bool, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, bool>::Head(mozilla::detail::TupleImpl<1ul, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx*, mozilla::NrIceCtx::GatheringState>::Head(mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx*, mozilla::NrIceCtx::GatheringState>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NrIceCtx::GatheringState>::Head(mozilla::detail::TupleImpl<1ul, mozilla::NrIceCtx::GatheringState>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx*, mozilla::NrIceCtx::ConnectionState>::Head(mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx*, mozilla::NrIceCtx::ConnectionState>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NrIceCtx::ConnectionState>::Head(mozilla::detail::TupleImpl<1ul, mozilla::NrIceCtx::ConnectionState>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<2ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<4ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<5ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<1ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<3ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<4ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool>::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::TransportFlow> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::TransportFlow> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::RTCStatsQuery> >::Head(mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::RTCStatsQuery> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsIUDPSocketChild*, nsCOMPtr<nsIEventTarget> >::Head(mozilla::detail::TupleImpl<0ul, nsIUDPSocketChild*, nsCOMPtr<nsIEventTarget> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIEventTarget> >::Head(mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIEventTarget> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::nr_udp_message> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::nr_udp_message> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, unsigned short>::Head(mozilla::detail::TupleImpl<0ul, nsTString<char>, unsigned short>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned short>::Head(mozilla::detail::TupleImpl<1ul, unsigned short>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::net::NetAddr, nsAutoPtr<mozilla::MediaPacket> >::Head(mozilla::detail::TupleImpl<0ul, mozilla::net::NetAddr, nsAutoPtr<mozilla::MediaPacket> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::MediaPacket> >::Head(mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::MediaPacket> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::TCPSocketChild*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::dom::TCPSocketChild*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrSocketIpc::NrSocketIpcState>::Head(mozilla::detail::TupleImpl<0ul, mozilla::NrSocketIpc::NrSocketIpcState>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, unsigned int>::Head(mozilla::detail::TupleImpl<0ul, unsigned int, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned int>::Head(mozilla::detail::TupleImpl<1ul, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::nr_tcp_message> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::nr_tcp_message> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, unsigned short, nsTString<char>, unsigned short, nsTString<char> >::Head(mozilla::detail::TupleImpl<0ul, nsTString<char>, unsigned short, nsTString<char>, unsigned short, nsTString<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned short, nsTString<char>, unsigned short, nsTString<char> >::Head(mozilla::detail::TupleImpl<1ul, unsigned short, nsTString<char>, unsigned short, nsTString<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsTString<char>, unsigned short, nsTString<char> >::Head(mozilla::detail::TupleImpl<2ul, nsTString<char>, unsigned short, nsTString<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned short, nsTString<char> >::Head(mozilla::detail::TupleImpl<3ul, unsigned short, nsTString<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, nsTString<char> >::Head(mozilla::detail::TupleImpl<4ul, nsTString<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<nsTArray<unsigned char> >, unsigned int>::Head(mozilla::detail::TupleImpl<0ul, nsAutoPtr<nsTArray<unsigned char> >, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<std::__1::deque<mozilla::TransportLayer*, std::__1::allocator<mozilla::TransportLayer*> > > >::Head(mozilla::detail::TupleImpl<0ul, nsAutoPtr<std::__1::deque<mozilla::TransportLayer*, std::__1::allocator<mozilla::TransportLayer*> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTArray<mozilla::NrIceStunAddr> >::Head(mozilla::detail::TupleImpl<0ul, nsTArray<mozilla::NrIceStunAddr> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*&, unsigned long&>::Head(mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*&, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&>::Head(mozilla::detail::TupleImpl<1ul, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >::Head(mozilla::detail::TupleImpl<0ul, mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager> >::Head(mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::Runnable> >::Head(mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::Runnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >::Head(mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >::Head(mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned long> >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Element> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Element> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned short> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned short> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, bool*>::Head(mozilla::detail::TupleImpl<2ul, bool*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::ReentrantMonitor*, bool*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::ReentrantMonitor*, bool*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::LayersIPCChannel*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::layers::LayersIPCChannel*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, mozilla::layers::LayersIPCChannel*>::Head(mozilla::detail::TupleImpl<0ul, unsigned long, mozilla::layers::LayersIPCChannel*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<float> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<float> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<unsigned int> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<unsigned int> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTArray<unsigned int> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTArray<unsigned int> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long*>::Head(mozilla::detail::TupleImpl<1ul, unsigned long*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, unsigned long*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, unsigned long*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::GeckoContentController*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::layers::GeckoContentController*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TimeStamp>::Head(mozilla::detail::TupleImpl<0ul, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::TimeStamp> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::TimeStamp> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::layers::ImageContainer> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::layers::ImageContainer> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::AsyncCanvasRenderer*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::AsyncCanvasRenderer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::AsyncCanvasRenderer*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::layers::AsyncCanvasRenderer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::ImageClient*, mozilla::layers::ImageContainer*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::ImageClient*, mozilla::layers::ImageContainer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::ImageClient*, mozilla::layers::ImageContainer*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::layers::ImageClient*, mozilla::layers::ImageContainer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::layers::ImageContainer*>::Head(mozilla::detail::TupleImpl<2ul, mozilla::layers::ImageContainer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::layers::ImageBridgeParent> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::layers::ImageBridgeParent> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>::Head(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>::Head(mozilla::detail::TupleImpl<2ul, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, mozilla::layers::ImageContainer*>::Head(mozilla::detail::TupleImpl<3ul, mozilla::layers::ImageContainer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::CanvasClient::CanvasClientType, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::CanvasClient::CanvasClientType, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::CanvasClient::CanvasClientType, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::layers::CanvasClient::CanvasClientType, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>::Head(mozilla::detail::TupleImpl<2ul, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, RefPtr<mozilla::layers::CanvasClient>*>::Head(mozilla::detail::TupleImpl<3ul, RefPtr<mozilla::layers::CanvasClient>*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::AllocShmemParams*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::AllocShmemParams*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::AllocShmemParams*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::layers::AllocShmemParams*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::ipc::Shmem*, bool*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::ipc::Shmem*, bool*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::ipc::Shmem*, bool*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::ipc::Shmem*, bool*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositableHandle>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositableHandle>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Head(mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, double>::Head(mozilla::detail::TupleImpl<2ul, double>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::GPUProcessHost*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::gfx::GPUProcessHost*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<vr::IVRSystem>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<vr::IVRSystem>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Head(mozilla::detail::TupleImpl<5ul, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::VRManagerChild> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::VRManagerChild> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver> >::Head(mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRManagerParent*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRManagerParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRProcessParent*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRProcessParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::MemoryReport>, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::MemoryReport>, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::Head(mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::WrWindowId> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::WrWindowId> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, mozilla::TimeStamp>::Head(mozilla::detail::TupleImpl<3ul, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::TimeStamp, mozilla::TimeStamp>::Head(mozilla::detail::TupleImpl<2ul, mozilla::TimeStamp, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::Head(mozilla::detail::TupleImpl<1ul, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::wr::RenderTextureHost> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::wr::RenderTextureHost> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::wr::WebRenderError>::Head(mozilla::detail::TupleImpl<1ul, mozilla::wr::WebRenderError>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>::Head(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&>::Head(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::gfx::SourceSurface>&>::Head(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Head(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Head(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Head(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Head(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::Head(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::Head(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::Head(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::Head(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface> >::Head(mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface>&>::Head(mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Head(mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Head(mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Head(mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Head(mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Head(mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, mozilla::Maybe<mozilla::image::WriteState> >::Head(mozilla::detail::TupleImpl<0ul, int, mozilla::Maybe<mozilla::image::WriteState> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int&, mozilla::Maybe<mozilla::image::WriteState>&>::Head(mozilla::detail::TupleImpl<0ul, int&, mozilla::Maybe<mozilla::image::WriteState>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState> >::Head(mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState>&>::Head(mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<5ul, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<3ul, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<5ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<6ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<6ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<7ul, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<7ul, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIObserver> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIObserver> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentParent*, mozilla::dom::TabParent*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentParent*, mozilla::dom::TabParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::dom::TabParent*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::dom::TabParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::TabParent>&>::Head(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::TabParent>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::TimedMetadata> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::TimedMetadata> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Blob>, StoreConstPtrPassByConstPtr<char> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Blob>, StoreConstPtrPassByConstPtr<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreConstPtrPassByConstPtr<char> >::Head(mozilla::detail::TupleImpl<1ul, StoreConstPtrPassByConstPtr<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<3ul, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::CDMProxy> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::CDMProxy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::AudioData> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::AudioData> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::VideoData> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::VideoData> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::Head(mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::Head(mozilla::detail::TupleImpl<1ul, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::SeekJob>::Head(mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::SeekJob>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::SeekJob>::Head(mozilla::detail::TupleImpl<1ul, mozilla::SeekJob>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> > >, StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> > >, StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::media::TimeUnit> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::media::TimeUnit> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaDecoder> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaDecoder> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaPlaybackEvent> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaPlaybackEvent> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::VideoDecodeMode> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::VideoDecodeMode> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::SeekTarget> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::SeekTarget> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaResult> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaResult> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::DecoderDoctorEvent> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::DecoderDoctorEvent> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::SourceListener> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::SourceListener> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::media::TimeIntervals> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::media::TimeIntervals> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTArray<unsigned char> >, StoreCopyPassByRRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTArray<unsigned char> >, StoreCopyPassByRRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, void const*, RefPtr<mozilla::AudioDataListener> >::Head(mozilla::detail::TupleImpl<0ul, void const*, RefPtr<mozilla::AudioDataListener> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::AudioDataListener> >::Head(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::AudioDataListener> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Maybe<void const*>, RefPtr<mozilla::AudioDataListener> >::Head(mozilla::detail::TupleImpl<0ul, mozilla::Maybe<void const*>, RefPtr<mozilla::AudioDataListener> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::media::TimeUnit> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::media::TimeUnit> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaData::Type> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaData::Type> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<long> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::AudioSegment> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::AudioSegment> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::VideoSegment> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::VideoSegment> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<long> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<long> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double const> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::gmp::GMPParent> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::gmp::GMPParent> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, nsTString<char>, nsTString<char16_t> >::Head(mozilla::detail::TupleImpl<0ul, unsigned int, nsTString<char>, nsTString<char16_t> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTString<char16_t> >::Head(mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTString<char16_t> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsTString<char16_t> >::Head(mozilla::detail::TupleImpl<2ul, nsTString<char16_t> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<NS_ConvertUTF8toUTF16> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<NS_ConvertUTF8toUTF16> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gmp::GMPParent> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gmp::GMPParent> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::Monitor>, StorePtrPassByPtr<bool> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::Monitor>, StorePtrPassByPtr<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StorePtrPassByPtr<bool> >::Head(mozilla::detail::TupleImpl<1ul, StorePtrPassByPtr<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char> >::Head(mozilla::detail::TupleImpl<0ul, nsTString<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<unsigned char> >::Head(mozilla::detail::TupleImpl<1ul, nsTArray<unsigned char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<unsigned char> >::Head(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<unsigned char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::Head(mozilla::detail::TupleImpl<0ul, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<long> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::SourceBufferTask> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::SourceBufferTask> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaRawData> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaRawData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::TrackInfo::TrackType> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::TrackInfo::TrackType> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >::Head(mozilla::detail::TupleImpl<2ul, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<SPDNotificationType> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<SPDNotificationType> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<SPDNotificationType> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<SPDNotificationType> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<SPDNotificationType> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<SPDNotificationType> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsCOMPtr<nsIUDPSocket>, nsCOMPtr<nsIEventTarget>, UDPAddressInfo>::Head(mozilla::detail::TupleImpl<0ul, nsCOMPtr<nsIUDPSocket>, nsCOMPtr<nsIEventTarget>, UDPAddressInfo>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIEventTarget>, UDPAddressInfo>::Head(mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIEventTarget>, UDPAddressInfo>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, UDPAddressInfo>::Head(mozilla::detail::TupleImpl<2ul, UDPAddressInfo>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, UDPAddressInfo>::Head(mozilla::detail::TupleImpl<0ul, UDPAddressInfo>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int>::Head(mozilla::detail::TupleImpl<0ul, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<gfxSurfaceType>, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<gfxSurfaceType>, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentProcessHost*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentProcessHost*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, bool>::Head(mozilla::detail::TupleImpl<0ul, int, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Element>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Element>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<nsAtom> >::Head(mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<nsAtom> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreCopyPassByConstLRef<nsresult> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreCopyPassByConstLRef<nsresult> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >::Head(mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsresult> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsresult> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned short> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned short> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&>::Head(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&>::Head(mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::SDBRequest> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::SDBRequest> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<mozilla::dom::Promise> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<mozilla::dom::Promise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::dom::Promise> >::Head(mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::dom::Promise> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIPresentationSessionTransport> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIPresentationSessionTransport> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByLRef<nsTArray<unsigned int> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByLRef<nsTArray<unsigned int> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByLRef<nsTArray<unsigned int> > >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByLRef<nsTArray<unsigned int> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<nsINode> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<nsINode> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::a11y::SelData> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::a11y::SelData> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::a11y::Accessible> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::a11y::Accessible> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::Event> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::Event> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<nsTString<char> > >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<nsTString<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&>::Head(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&>::Head(mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<char> >::Head(mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::ExtensionPolicyService>, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::ExtensionPolicyService>, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::Head(mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::Head(mozilla::detail::TupleImpl<2ul, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTArray<unsigned char> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTArray<unsigned char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::Head(mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::Head(mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<long> >::Head(mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<long> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, long>::Head(mozilla::detail::TupleImpl<2ul, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<int>, long>::Head(mozilla::detail::TupleImpl<1ul, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<int>, long>::Head(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, long>::Head(mozilla::detail::TupleImpl<3ul, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsTArray<int>, long>::Head(mozilla::detail::TupleImpl<2ul, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTArray<int>, long>::Head(mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char>, nsTArray<int>, long>::Head(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char>, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int>::Head(mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int>::Head(mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::Head(mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::Head(mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsCOMPtr<nsIVariant> >::Head(mozilla::detail::TupleImpl<2ul, nsCOMPtr<nsIVariant> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::Head(mozilla::detail::TupleImpl<1ul, nsTString<char16_t>, nsCOMPtr<nsIVariant> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::Head(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::HTMLInputElement> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::HTMLInputElement> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsFoo> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsFoo> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<char> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<bool> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<bool> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<char>, StoreCopyPassByConstLRef<unsigned int> >::Head(mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<char>, StoreCopyPassByConstLRef<unsigned int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<int> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByPtr<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByPtr<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstPtr<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstPtr<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByValue<TestThreadUtils::Spy> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByValue<TestThreadUtils::Spy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<TestThreadUtils::Spy> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<TestThreadUtils::Spy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<TestThreadUtils::Spy> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<TestThreadUtils::Spy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<TestThreadUtils::Spy> >::Head(mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<TestThreadUtils::Spy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<TestThreadUtils::Spy> >::Head(mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<TestThreadUtils::Spy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::Head(mozilla::detail::TupleImpl<0ul, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::Head(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mediapipeline_unittest.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TestAgentReceive*, (anonymous namespace)::TestAgentSend*>::Head(mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TestAgentReceive*, (anonymous namespace)::TestAgentSend*>&)
Unexecuted instantiation: mediapipeline_unittest.cpp:mozilla::detail::TupleImpl<1ul, (anonymous namespace)::TestAgentSend*>::Head(mozilla::detail::TupleImpl<1ul, (anonymous namespace)::TestAgentSend*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPipelineFilter> >::Head(mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPipelineFilter> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<GMPTestMonitor> >::Head(mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<GMPTestMonitor> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*> >::Head(mozilla::detail::TupleImpl<1ul, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StorePtrPassByPtr<GMPVideoHost*> >::Head(mozilla::detail::TupleImpl<2ul, StorePtrPassByPtr<GMPVideoHost*> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstRefPassByConstLRef<GMPVideoCodec>, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<0ul, StoreConstRefPassByConstLRef<GMPVideoCodec>, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<1ul, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >::Head(mozilla::detail::TupleImpl<2ul, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<SomeEvent> >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<SomeEvent> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<RefCounter> > >::Head(mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<RefCounter> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int>::Head(mozilla::detail::TupleImpl<0ul, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, mozilla::NrIceCandidate*>::Head(mozilla::detail::TupleImpl<0ul, unsigned int, mozilla::NrIceCandidate*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NrIceCandidate*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::NrIceCandidate*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, int>::Head(mozilla::detail::TupleImpl<0ul, unsigned long, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int>::Head(mozilla::detail::TupleImpl<1ul, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx::Controlling>::Head(mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx::Controlling>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, int>::Head(mozilla::detail::TupleImpl<0ul, int, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, int, unsigned char const*, int>::Head(mozilla::detail::TupleImpl<0ul, int, int, unsigned char const*, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, unsigned char const*, int>::Head(mozilla::detail::TupleImpl<1ul, int, unsigned char const*, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned char const*, int>::Head(mozilla::detail::TupleImpl<2ul, unsigned char const*, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, int>::Head(mozilla::detail::TupleImpl<3ul, int>&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::IceTestPeer*, (anonymous namespace)::TrickleMode, bool>::Head(mozilla::detail::TupleImpl<0ul, (anonymous namespace)::IceTestPeer*, (anonymous namespace)::TrickleMode, bool>&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<1ul, (anonymous namespace)::TrickleMode, bool>::Head(mozilla::detail::TupleImpl<1ul, (anonymous namespace)::TrickleMode, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, bool>::Head(mozilla::detail::TupleImpl<2ul, bool>&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<0ul, int, int, (anonymous namespace)::ConsentStatus>::Head(mozilla::detail::TupleImpl<0ul, int, int, (anonymous namespace)::ConsentStatus>&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<1ul, int, (anonymous namespace)::ConsentStatus>::Head(mozilla::detail::TupleImpl<1ul, int, (anonymous namespace)::ConsentStatus>&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<2ul, (anonymous namespace)::ConsentStatus>::Head(mozilla::detail::TupleImpl<2ul, (anonymous namespace)::ConsentStatus>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*>::Head(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*>::Head(mozilla::detail::TupleImpl<1ul, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_tcp_type, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, nr_socket_**>::Head(mozilla::detail::TupleImpl<0ul, nr_socket_tcp_type, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, nr_socket_**>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, nr_socket_**>::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, nr_socket_**>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned short, nr_socket_**>::Head(mozilla::detail::TupleImpl<2ul, unsigned short, nr_socket_**>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, nr_socket_**>::Head(mozilla::detail::TupleImpl<3ul, nr_socket_**>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*>::Head(mozilla::detail::TupleImpl<0ul, nr_socket_*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_socket_*>::Head(mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_socket_*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_socket_*>::Head(mozilla::detail::TupleImpl<1ul, nr_socket_*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*, unsigned long, int>::Head(mozilla::detail::TupleImpl<0ul, nr_socket_*, unsigned long, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long, int>::Head(mozilla::detail::TupleImpl<1ul, unsigned long, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, int>::Head(mozilla::detail::TupleImpl<2ul, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_socket_*, char const*, unsigned long>::Head(mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_socket_*, char const*, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_socket_*, char const*, unsigned long>::Head(mozilla::detail::TupleImpl<1ul, nr_socket_*, char const*, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, char const*, unsigned long>::Head(mozilla::detail::TupleImpl<2ul, char const*, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_transport_addr_*, char const*, unsigned long>::Head(mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_transport_addr_*, char const*, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_transport_addr_*, char const*, unsigned long>::Head(mozilla::detail::TupleImpl<1ul, nr_transport_addr_*, char const*, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_transport_addr_*, nr_socket_*, char const*, unsigned long>::Head(mozilla::detail::TupleImpl<0ul, nr_transport_addr_*, nr_socket_*, char const*, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool*>::Head(mozilla::detail::TupleImpl<0ul, bool*>&)
Unexecuted instantiation: runnable_utils_unittest.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TargetClass*, int>::Head(mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TargetClass*, int>&)
Unexecuted instantiation: runnable_utils_unittest.cpp:mozilla::detail::TupleImpl<0ul, RefPtr<(anonymous namespace)::Destructor> >::Head(mozilla::detail::TupleImpl<0ul, RefPtr<(anonymous namespace)::Destructor> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPacket>, RefPtr<mozilla::TransportFlow>, mozilla::TransportLayerLoopback*>::Head(mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPacket>, RefPtr<mozilla::TransportFlow>, mozilla::TransportLayerLoopback*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::TransportFlow>, mozilla::TransportLayerLoopback*>::Head(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::TransportFlow>, mozilla::TransportLayerLoopback*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::TransportLayerLoopback*>::Head(mozilla::detail::TupleImpl<2ul, mozilla::TransportLayerLoopback*>&)
Unexecuted instantiation: sctp_unittest.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TransportTestPeer*>::Head(mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TransportTestPeer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<0ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, char const*, int>::Head(mozilla::detail::TupleImpl<0ul, unsigned long, char const*, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, char const*, int>::Head(mozilla::detail::TupleImpl<1ul, char const*, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, nr_transport_addr_*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, nr_transport_addr_*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_transport_addr_*>::Head(mozilla::detail::TupleImpl<1ul, nr_transport_addr_*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrSocketBase*, int>::Head(mozilla::detail::TupleImpl<0ul, mozilla::NrSocketBase*, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, nr_transport_addr_>::Head(mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, nr_transport_addr_>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_transport_addr_>::Head(mozilla::detail::TupleImpl<1ul, nr_transport_addr_>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, mozilla::TestNrSocket*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, mozilla::TestNrSocket*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::TestNrSocket*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::TestNrSocket*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, mozilla::NrSocketBase**>::Head(mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, mozilla::NrSocketBase**>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NrSocketBase**>::Head(mozilla::detail::TupleImpl<1ul, mozilla::NrSocketBase**>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrSocketBase*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::NrSocketBase*>&)
Unexecuted instantiation: transport_unittests.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TransportTestPeer*>::Head(mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TransportTestPeer*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned short*>::Head(mozilla::detail::TupleImpl<0ul, unsigned short*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TransportLayerDtls*, mozilla::MediaPacket*>::Head(mozilla::detail::TupleImpl<0ul, mozilla::TransportLayerDtls*, mozilla::MediaPacket*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::MediaPacket*>::Head(mozilla::detail::TupleImpl<1ul, mozilla::MediaPacket*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<0ul, char const*, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<1ul, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Head(mozilla::detail::TupleImpl<2ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, int>::Head(mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSScript*>::Head(mozilla::detail::TupleImpl<1ul, JSScript*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>::Head(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, js::LazyScript*>::Head(mozilla::detail::TupleImpl<1ul, js::LazyScript*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>::Head(mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>::Head(mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Head(mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Head(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>&)
mozilla::detail::TupleImpl<0ul, js::HelperThread*>::Head(mozilla::detail::TupleImpl<0ul, js::HelperThread*>&)
Line
Count
Source
124
24
  static HeadT& Head(TupleImpl& aTuple) { return aTuple.mHead; }
mozilla::detail::TupleImpl<0ul, JSObject*>::Head(mozilla::detail::TupleImpl<0ul, JSObject*>&)
Line
Count
Source
124
188
  static HeadT& Head(TupleImpl& aTuple) { return aTuple.mHead; }
125
0
  static const HeadT& Head(const TupleImpl& aTuple) { return aTuple.mHead; }
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >::Head(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >::Head(mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&>::Head(mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&>::Head(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>::Head(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>::Head(mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&>::Head(mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&>::Head(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, double>::Head(mozilla::detail::TupleImpl<2ul, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Head(mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int>::Head(mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int>::Head(mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::Head(mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::Head(mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned int>::Head(mozilla::detail::TupleImpl<2ul, unsigned int> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Head(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>::Head(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSScript*>::Head(mozilla::detail::TupleImpl<1ul, JSScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>::Head(mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, js::LazyScript*>::Head(mozilla::detail::TupleImpl<1ul, js::LazyScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Head(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Head(mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>::Head(mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind> const&)
126
0
  static Base& Tail(TupleImpl& aTuple) { return aTuple; }
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*, unsigned long>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long>::Tail(mozilla::detail::TupleImpl<1ul, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult, mozilla::NotNull<mozilla::Encoding const*> >::Tail(mozilla::detail::TupleImpl<0ul, nsresult, mozilla::NotNull<mozilla::Encoding const*> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NotNull<mozilla::Encoding const*> >::Tail(mozilla::detail::TupleImpl<1ul, mozilla::NotNull<mozilla::Encoding const*> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long, bool>::Tail(mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long, bool>::Tail(mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long, bool>::Tail(mozilla::detail::TupleImpl<2ul, unsigned long, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, bool>::Tail(mozilla::detail::TupleImpl<3ul, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long>::Tail(mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long>::Tail(mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long>::Tail(mozilla::detail::TupleImpl<2ul, unsigned long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&>::Tail(mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&>::Tail(mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long&>::Tail(mozilla::detail::TupleImpl<2ul, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&, bool&>::Tail(mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&, bool&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&, bool&>::Tail(mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&, bool&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long&, bool&>::Tail(mozilla::detail::TupleImpl<2ul, unsigned long&, bool&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, bool&>::Tail(mozilla::detail::TupleImpl<3ul, bool&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult&, mozilla::Encoding const*&>::Tail(mozilla::detail::TupleImpl<0ul, nsresult&, mozilla::Encoding const*&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Encoding const*&>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::Encoding const*&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >::Tail(mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >::Tail(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool&, nsTString<char16_t>&>::Tail(mozilla::detail::TupleImpl<0ul, bool&, nsTString<char16_t>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t>&>::Tail(mozilla::detail::TupleImpl<1ul, nsTString<char16_t>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>::Tail(mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool&, mozilla::CopyableErrorResult&>::Tail(mozilla::detail::TupleImpl<0ul, bool&, mozilla::CopyableErrorResult&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult&>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*&, unsigned long&>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*&, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&>::Tail(mozilla::detail::TupleImpl<1ul, unsigned long&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >::Tail(mozilla::detail::TupleImpl<0ul, mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::Runnable> >::Tail(mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::Runnable> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::ReentrantMonitor*, bool*>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::ReentrantMonitor*, bool*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, bool*>::Tail(mozilla::detail::TupleImpl<2ul, bool*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, mozilla::layers::LayersIPCChannel*>::Tail(mozilla::detail::TupleImpl<0ul, unsigned long, mozilla::layers::LayersIPCChannel*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::LayersIPCChannel*>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::layers::LayersIPCChannel*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, unsigned long*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, unsigned long*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long*>::Tail(mozilla::detail::TupleImpl<1ul, unsigned long*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::GeckoContentController*>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::layers::GeckoContentController*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TimeStamp>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Tail(mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Tail(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, double>::Tail(mozilla::detail::TupleImpl<2ul, double>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::GPUProcessHost*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::gfx::GPUProcessHost*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::VRManagerChild> >::Tail(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::VRManagerChild> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRManagerParent*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRManagerParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRProcessParent*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRProcessParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::TimeStamp, mozilla::TimeStamp>::Tail(mozilla::detail::TupleImpl<2ul, mozilla::TimeStamp, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, mozilla::TimeStamp>::Tail(mozilla::detail::TupleImpl<3ul, mozilla::TimeStamp>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::wr::WebRenderError>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::wr::WebRenderError>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tail(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tail(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::Tail(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::Tail(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface> >::Tail(mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface>&>::Tail(mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::gfx::SourceSurface>&>::Tail(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::gfx::SourceSurface>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tail(mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tail(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tail(mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tail(mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tail(mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tail(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tail(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, mozilla::Maybe<mozilla::image::WriteState> >::Tail(mozilla::detail::TupleImpl<0ul, int, mozilla::Maybe<mozilla::image::WriteState> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int&, mozilla::Maybe<mozilla::image::WriteState>&>::Tail(mozilla::detail::TupleImpl<0ul, int&, mozilla::Maybe<mozilla::image::WriteState>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState> >::Tail(mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState>&>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentParent*, mozilla::dom::TabParent*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentParent*, mozilla::dom::TabParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>::Tail(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::dom::TabParent*>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::dom::TabParent*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::TabParent>&>::Tail(mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::TabParent>&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::SeekJob>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::SeekJob>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::SeekJob>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::SeekJob>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char> >::Tail(mozilla::detail::TupleImpl<0ul, nsTString<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<unsigned char> >::Tail(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<unsigned char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<unsigned char> >::Tail(mozilla::detail::TupleImpl<1ul, nsTArray<unsigned char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::Tail(mozilla::detail::TupleImpl<0ul, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentProcessHost*>::Tail(mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentProcessHost*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, bool>::Tail(mozilla::detail::TupleImpl<0ul, int, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, bool>::Tail(mozilla::detail::TupleImpl<1ul, bool>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&>::Tail(mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&>::Tail(mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&>::Tail(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::ExtensionPolicyService>, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::Tail(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::ExtensionPolicyService>, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::Tail(mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::Tail(mozilla::detail::TupleImpl<2ul, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<int>, long>::Tail(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<int>, long>::Tail(mozilla::detail::TupleImpl<1ul, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, long>::Tail(mozilla::detail::TupleImpl<2ul, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char>, nsTArray<int>, long>::Tail(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char>, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTArray<int>, long>::Tail(mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsTArray<int>, long>::Tail(mozilla::detail::TupleImpl<2ul, nsTArray<int>, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, long>::Tail(mozilla::detail::TupleImpl<3ul, long>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int>::Tail(mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int>::Tail(mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned int>::Tail(mozilla::detail::TupleImpl<2ul, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::Tail(mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::Tail(mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::Tail(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::Tail(mozilla::detail::TupleImpl<1ul, nsTString<char16_t>, nsCOMPtr<nsIVariant> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsCOMPtr<nsIVariant> >::Tail(mozilla::detail::TupleImpl<2ul, nsCOMPtr<nsIVariant> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::Tail(mozilla::detail::TupleImpl<0ul, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::Tail(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::Tail(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tail(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tail(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tail(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>::Tail(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSScript*>::Tail(mozilla::detail::TupleImpl<1ul, JSScript*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>::Tail(mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, js::LazyScript*>::Tail(mozilla::detail::TupleImpl<1ul, js::LazyScript*>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Tail(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Tail(mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>::Tail(mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>&)
127
0
  static const Base& Tail(const TupleImpl& aTuple) { return aTuple; }
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >::Tail(mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >::Tail(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&>::Tail(mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&>::Tail(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>::Tail(mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&>::Tail(mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&>::Tail(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Tail(mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Tail(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, double>::Tail(mozilla::detail::TupleImpl<2ul, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tail(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tail(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tail(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>::Tail(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSScript*>::Tail(mozilla::detail::TupleImpl<1ul, JSScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>::Tail(mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, js::LazyScript*>::Tail(mozilla::detail::TupleImpl<1ul, js::LazyScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Tail(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Tail(mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>::Tail(mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind> const&)
128
129
  TupleImpl() : Base(), mHead() { }
130
131
  // Construct from const references to the elements.
132
  explicit TupleImpl(const HeadT& aHead, const TailT&... aTail)
133
0
    : Base(aTail...), mHead(aHead) { }
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&>::TupleImpl(unsigned int&, unsigned long&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&>::TupleImpl(unsigned long&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long&>::TupleImpl(unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&, bool&>::TupleImpl(unsigned int&, unsigned long&, unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&, bool&>::TupleImpl(unsigned long&, unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long&, bool&>::TupleImpl(unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, bool&>::TupleImpl(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult&, mozilla::Encoding const*&>::TupleImpl(nsresult&, mozilla::Encoding const*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Encoding const*&>::TupleImpl(mozilla::Encoding const*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool&, nsTString<char16_t>&>::TupleImpl(bool&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t>&>::TupleImpl(nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool&, mozilla::CopyableErrorResult&>::TupleImpl(bool&, mozilla::CopyableErrorResult&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult&>::TupleImpl(mozilla::CopyableErrorResult&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, webrtc::VideoFrame, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >::TupleImpl(webrtc::VideoFrame const&, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >::TupleImpl(std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::JsepOfferOptions>::TupleImpl(mozilla::JsepOfferOptions const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(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::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::TransportFlow> >::TupleImpl(RefPtr<mozilla::TransportFlow> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*&, unsigned long&>::TupleImpl(mozilla::Encoding const*&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&>::TupleImpl(unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositableHandle>::TupleImpl(mozilla::layers::CompositableHandle const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&>::TupleImpl(mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::gfx::SourceSurface>&>::TupleImpl(RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::TupleImpl(mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::TupleImpl(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::TupleImpl(mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::TupleImpl(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface>&>::TupleImpl(RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::TupleImpl(RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::TupleImpl(mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::TupleImpl(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::TupleImpl(RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int&, mozilla::Maybe<mozilla::image::WriteState>&>::TupleImpl(int&, mozilla::Maybe<mozilla::image::WriteState>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState>&>::TupleImpl(mozilla::Maybe<mozilla::image::WriteState>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>::TupleImpl(RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::TabParent>&>::TupleImpl(RefPtr<mozilla::dom::TabParent>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gmp::GMPParent> >::TupleImpl(RefPtr<mozilla::gmp::GMPParent> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char> >::TupleImpl(nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, UDPAddressInfo>::TupleImpl(UDPAddressInfo const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, UDPAddressInfo>::TupleImpl(UDPAddressInfo const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&>::TupleImpl(nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned int>::TupleImpl(unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::TupleImpl(char const* const&, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > > const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::TupleImpl(nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > > const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::TupleImpl(unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::TupleImpl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::TupleImpl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
134
135
  // Construct from objects that are convertible to the elements.
136
  // This constructor is enabled only when the argument types are actually
137
  // convertible to the element types, otherwise it could become a better
138
  // match for certain invocations than the copy constructor.
139
  template <typename OtherHeadT, typename... OtherTailT,
140
            typename = typename EnableIf<
141
                CheckConvertibility<
142
                    Group<OtherHeadT, OtherTailT...>,
143
                    Group<HeadT, TailT...>>::value>::Type>
144
  explicit TupleImpl(OtherHeadT&& aHead, OtherTailT&&... aTail)
145
212
    : Base(std::forward<OtherTailT>(aTail)...), mHead(std::forward<OtherHeadT>(aHead)) { }
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long>::TupleImpl<unsigned int&, unsigned long&, unsigned long&, void>(unsigned int&, unsigned long&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long>::TupleImpl<unsigned long&, unsigned long&, void>(unsigned long&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long>::TupleImpl<unsigned long&, , void>(unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long, bool>::TupleImpl<unsigned int&, unsigned long&, unsigned long&, bool&, void>(unsigned int&, unsigned long&, unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long, bool>::TupleImpl<unsigned long&, unsigned long&, bool&, void>(unsigned long&, unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long, bool>::TupleImpl<unsigned long&, bool&, void>(unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, bool>::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult, mozilla::NotNull<mozilla::Encoding const*> >::TupleImpl<nsresult&, mozilla::NotNull<mozilla::Encoding const*>, void>(nsresult&, mozilla::NotNull<mozilla::Encoding const*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NotNull<mozilla::Encoding const*> >::TupleImpl<mozilla::NotNull<mozilla::Encoding const*>, , void>(mozilla::NotNull<mozilla::Encoding const*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::ConnectionData> >::TupleImpl<mozilla::net::ConnectionData*, , void>(mozilla::net::ConnectionData*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::LookupArgument> >::TupleImpl<RefPtr<mozilla::net::LookupArgument>&, , void>(RefPtr<mozilla::net::LookupArgument>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::SocketData> >::TupleImpl<RefPtr<mozilla::net::SocketData>&, , void>(RefPtr<mozilla::net::SocketData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::HttpData> >::TupleImpl<RefPtr<mozilla::net::HttpData>&, , void>(RefPtr<mozilla::net::HttpData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::WebSocketRequest> >::TupleImpl<RefPtr<mozilla::net::WebSocketRequest>&, , void>(RefPtr<mozilla::net::WebSocketRequest>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::DnsData> >::TupleImpl<RefPtr<mozilla::net::DnsData>&, , void>(RefPtr<mozilla::net::DnsData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::RcwnData> >::TupleImpl<RefPtr<mozilla::net::RcwnData>&, , void>(RefPtr<mozilla::net::RcwnData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::ConnectionData> >::TupleImpl<RefPtr<mozilla::net::ConnectionData>&, , void>(RefPtr<mozilla::net::ConnectionData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<bool&, bool&, nsresult&, nsTString<char>&, void>(bool&, bool&, nsresult&, nsTString<char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<bool&, nsresult&, nsTString<char>&, void>(bool&, nsresult&, nsTString<char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsresult&, nsTString<char>&, void>(nsresult&, nsTString<char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsTString<char>&, , void>(nsTString<char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<double> >::TupleImpl<double&, , void>(double&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsILoadContextInfo>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&, void>(nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<bool&, nsTSubstring<char16_t> const&, void>(bool&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<nsTSubstring<char16_t> const&, , void>(nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsTString<char>&, , void>(nsTString<char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&, void>(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&, void>(nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<unsigned long const&, unsigned int const&, nsTString<char> const&, void>(unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<unsigned int const&, nsTString<char> const&, void>(unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTString<char> const&, , void>(nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::TupleImpl<nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&, void>(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::TupleImpl<mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&, void>(mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::TupleImpl<mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&, void>(mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::TupleImpl<mozilla::net::nsHttpHeaderArray const&, , void>(mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<long const>, StoreCopyPassByConstLRef<long const> >::TupleImpl<long const&, long const&, void>(long const&, long const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<long const> >::TupleImpl<long const&, , void>(long const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const> >::TupleImpl<nsresult const&, , void>(nsresult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::TupleImpl<nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&, void>(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::TupleImpl<mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&, void>(mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::TupleImpl<mozilla::net::nsHttpHeaderArray const&, , void>(mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool> >::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&, void>(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTSubstring<char> const&, nsTSubstring<char> const&, void>(nsTSubstring<char> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTSubstring<char> const&, , void>(nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult> >::TupleImpl<nsresult&, , void>(nsresult&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTString<char> const&, nsTString<char> const&, nsTString<char> const&, void>(nsTString<char> const&, nsTString<char> const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTString<char> const&, nsTString<char> const&, void>(nsTString<char> const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTString<char> const&, , void>(nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult> >::TupleImpl<nsresult const&, , void>(nsresult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild> >::TupleImpl<RefPtr<mozilla::net::HttpChannelChild>, , void>(RefPtr<mozilla::net::HttpChannelChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild> >::TupleImpl<RefPtr<mozilla::net::HttpChannelChild>&, , void>(RefPtr<mozilla::net::HttpChannelChild>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, socket*, socket*>::TupleImpl<socket*&, socket*&, void>(socket*&, socket*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, socket*>::TupleImpl<socket*&, , void>(socket*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPacket> >::TupleImpl<nsAutoPtr<mozilla::MediaPacket>&, , void>(nsAutoPtr<mozilla::MediaPacket>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>, , void>(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::TupleImpl<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::ipc::MessageChannel>, StoreCopyPassByConstLRef<mozilla::ipc::Side> >::TupleImpl<mozilla::ipc::MessageChannel*, mozilla::ipc::Side&, void>(mozilla::ipc::MessageChannel*&&, mozilla::ipc::Side&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::ipc::Side> >::TupleImpl<mozilla::ipc::Side&, , void>(mozilla::ipc::Side&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<IPC::Message> >::TupleImpl<IPC::Message*&, , void>(IPC::Message*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >::TupleImpl<bool, nsTString<char16_t>, void>(bool&&, nsTString<char16_t>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >::TupleImpl<nsTString<char16_t>, , void>(nsTString<char16_t>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>::TupleImpl<bool, mozilla::CopyableErrorResult, void>(bool&&, mozilla::CopyableErrorResult&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>::TupleImpl<mozilla::CopyableErrorResult, , void>(mozilla::CopyableErrorResult&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsJARInputThunk>, StoreCopyPassByConstLRef<bool> >::TupleImpl<RefPtr<nsJARInputThunk>&, bool, void>(RefPtr<nsJARInputThunk>&, bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool> >::TupleImpl<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<bool> >::TupleImpl<nsresult&, bool, void>(nsresult&, bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<unsigned long, , void>(unsigned long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozIStorageError> >::TupleImpl<mozIStorageError*&, , void>(mozIStorageError*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::storage::ResultSet> >::TupleImpl<already_AddRefed<mozilla::storage::ResultSet>, , void>(already_AddRefed<mozilla::storage::ResultSet>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTLiteralString<char> const&, , void>(nsTLiteralString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, GMPVideoCodec, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<RefPtr<mozilla::WebrtcGmpVideoEncoder>, GMPVideoCodec&, int&, unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(RefPtr<mozilla::WebrtcGmpVideoEncoder>&&, GMPVideoCodec&, int&, unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, GMPVideoCodec, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<GMPVideoCodec&, int&, unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(GMPVideoCodec&, int&, unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<int&, unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(int&, unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<RefPtr<mozilla::GmpInitDoneRunnable>&, , void>(RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, webrtc::VideoFrame, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >::TupleImpl<RefPtr<mozilla::WebrtcGmpVideoEncoder>, webrtc::VideoFrame const&, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > const&, void>(RefPtr<mozilla::WebrtcGmpVideoEncoder>&&, webrtc::VideoFrame const&, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder> >::TupleImpl<RefPtr<mozilla::WebrtcGmpVideoEncoder>, , void>(RefPtr<mozilla::WebrtcGmpVideoEncoder>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoEncoder>, unsigned int, unsigned int>::TupleImpl<RefPtr<mozilla::WebrtcGmpVideoEncoder>, unsigned int&, unsigned int&, void>(RefPtr<mozilla::WebrtcGmpVideoEncoder>&&, unsigned int&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned int, unsigned int>::TupleImpl<unsigned int&, unsigned int&, void>(unsigned int&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned int>::TupleImpl<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder>, webrtc::VideoCodec const*, int, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<RefPtr<mozilla::WebrtcGmpVideoDecoder>, webrtc::VideoCodec const*&, int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(RefPtr<mozilla::WebrtcGmpVideoDecoder>&&, webrtc::VideoCodec const*&, int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, webrtc::VideoCodec const*, int, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<webrtc::VideoCodec const*&, int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(webrtc::VideoCodec const*&, int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, int, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, RefPtr<mozilla::GmpInitDoneRunnable> >::TupleImpl<RefPtr<mozilla::GmpInitDoneRunnable>&, , void>(RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder>, nsAutoPtr<mozilla::GMPDecodeData> >::TupleImpl<RefPtr<mozilla::WebrtcGmpVideoDecoder>, nsAutoPtr<mozilla::GMPDecodeData>&, void>(RefPtr<mozilla::WebrtcGmpVideoDecoder>&&, nsAutoPtr<mozilla::GMPDecodeData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::GMPDecodeData> >::TupleImpl<nsAutoPtr<mozilla::GMPDecodeData>&, , void>(nsAutoPtr<mozilla::GMPDecodeData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::WebrtcGmpVideoDecoder> >::TupleImpl<RefPtr<mozilla::WebrtcGmpVideoDecoder>, , void>(RefPtr<mozilla::WebrtcGmpVideoDecoder>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::layers::Image>, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool> >::TupleImpl<mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&, void>(mozilla::layers::Image*&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool> >::TupleImpl<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&, void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<bool> >::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::TransportFlow>, RefPtr<mozilla::TransportFlow>, nsAutoPtr<mozilla::MediaPipelineFilter> >::TupleImpl<RefPtr<mozilla::TransportFlow>&, RefPtr<mozilla::TransportFlow>&, nsAutoPtr<mozilla::MediaPipelineFilter>&, void>(RefPtr<mozilla::TransportFlow>&, RefPtr<mozilla::TransportFlow>&, nsAutoPtr<mozilla::MediaPipelineFilter>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::TransportFlow>, nsAutoPtr<mozilla::MediaPipelineFilter> >::TupleImpl<RefPtr<mozilla::TransportFlow>&, nsAutoPtr<mozilla::MediaPipelineFilter>&, void>(RefPtr<mozilla::TransportFlow>&, nsAutoPtr<mozilla::MediaPipelineFilter>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::MediaPipelineFilter> >::TupleImpl<nsAutoPtr<mozilla::MediaPipelineFilter>&, , void>(nsAutoPtr<mozilla::MediaPipelineFilter>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long>::TupleImpl<unsigned long&, , void>(unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, , void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::TupleImpl<mozilla::dom::WebrtcGlobalChild*&, int const&, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&, void>(mozilla::dom::WebrtcGlobalChild*&, int const&, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::TupleImpl<int const&, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&, void>(int const&, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::TupleImpl<nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&, , void>(nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, char const*>::TupleImpl<mozilla::dom::WebrtcGlobalChild*&, int const&, char const*, void>(mozilla::dom::WebrtcGlobalChild*&, int const&, char const*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, char const*>::TupleImpl<int const&, char const*, void>(int const&, char const*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, char const*>::TupleImpl<char const*, , void>(char const*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::TupleImpl<mozilla::dom::WebrtcGlobalChild*&, int const&, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&, void>(mozilla::dom::WebrtcGlobalChild*&, int const&, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::TupleImpl<int const&, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&, void>(int const&, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::TupleImpl<nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&, , void>(nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >::TupleImpl<nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&, void>(nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::RTCStatsQuery> >::TupleImpl<nsAutoPtr<mozilla::RTCStatsQuery>&, , void>(nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::TupleImpl<nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&, , void>(nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<nsDOMDataChannel>, RefPtr<mozilla::dom::PeerConnectionObserver> >::TupleImpl<already_AddRefed<nsDOMDataChannel>, RefPtr<mozilla::dom::PeerConnectionObserver>&, void>(already_AddRefed<nsDOMDataChannel>&&, RefPtr<mozilla::dom::PeerConnectionObserver>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::PeerConnectionObserver> >::TupleImpl<RefPtr<mozilla::dom::PeerConnectionObserver>&, , void>(RefPtr<mozilla::dom::PeerConnectionObserver>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, mozilla::JsepOfferOptions>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, mozilla::JsepOfferOptions const&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, mozilla::JsepOfferOptions const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, , void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, nsAutoPtr<mozilla::RTCStatsQuery> >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, nsAutoPtr<mozilla::RTCStatsQuery>&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsCOMPtr<nsIWeakReference>, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<nsCOMPtr<nsIWeakReference>&, unsigned short&, 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&, void>(nsCOMPtr<nsIWeakReference>&, unsigned short&, 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::detail::TupleImpl<1ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<unsigned short&, 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&, void>(unsigned short&, 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: Unified_cpp_src_peerconnection0.cpp:mozilla::detail::TupleImpl<0ul, mozilla::dom::PCObserverStateType, (anonymous namespace)::WrappableJSErrorResult, JS::Realm*>::TupleImpl<mozilla::dom::PCObserverStateType, (anonymous namespace)::WrappableJSErrorResult&, JS::Realm*, void>(mozilla::dom::PCObserverStateType&&, (anonymous namespace)::WrappableJSErrorResult&, JS::Realm*&&)
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:mozilla::detail::TupleImpl<1ul, (anonymous namespace)::WrappableJSErrorResult, JS::Realm*>::TupleImpl<(anonymous namespace)::WrappableJSErrorResult&, JS::Realm*, void>((anonymous namespace)::WrappableJSErrorResult&, JS::Realm*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, JS::Realm*>::TupleImpl<JS::Realm*, , void>(JS::Realm*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >::TupleImpl<nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&, void>(nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsAutoPtr<mozilla::RTCStatsQuery> >::TupleImpl<nsAutoPtr<mozilla::RTCStatsQuery>&, , void>(nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned long&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned long&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned long&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned long>::TupleImpl<unsigned long&, , void>(unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, , void>(std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<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&, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, void>(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&, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<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&, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, void>(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&, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, void>(unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<6ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::PeerConnectionMedia>, nsAutoPtr<mozilla::PacketDumper>, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::TupleImpl<RefPtr<mozilla::PeerConnectionMedia>&, nsAutoPtr<mozilla::PacketDumper>&, RefPtr<mozilla::TransportFlow>&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*, void>(RefPtr<mozilla::PeerConnectionMedia>&, nsAutoPtr<mozilla::PacketDumper>&, RefPtr<mozilla::TransportFlow>&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*&&, mozilla::TransportLayerDtls*&&, mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::PacketDumper>, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::TupleImpl<nsAutoPtr<mozilla::PacketDumper>&, RefPtr<mozilla::TransportFlow>&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*, void>(nsAutoPtr<mozilla::PacketDumper>&, RefPtr<mozilla::TransportFlow>&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*&&, mozilla::TransportLayerDtls*&&, mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::TupleImpl<RefPtr<mozilla::TransportFlow>&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*, void>(RefPtr<mozilla::TransportFlow>&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*&&, mozilla::TransportLayerDtls*&&, mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*&&, mozilla::TransportLayerDtls*&&, mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::TupleImpl<bool&, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*, void>(bool&, mozilla::TransportLayerIce*&&, mozilla::TransportLayerDtls*&&, mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::TupleImpl<mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*, void>(mozilla::TransportLayerIce*&&, mozilla::TransportLayerDtls*&&, mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<6ul, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::TupleImpl<mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*, void>(mozilla::TransportLayerDtls*&&, mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<7ul, mozilla::TransportLayerSrtp*>::TupleImpl<mozilla::TransportLayerSrtp*, , void>(mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<bool, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, void>(bool&&, bool&&, bool&&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, void>(bool&&, bool&&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, void>(bool&&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, , void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool>::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, bool>::TupleImpl<bool, bool, void>(bool&&, bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, bool>::TupleImpl<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx*, mozilla::NrIceCtx::GatheringState>::TupleImpl<mozilla::NrIceCtx*&, mozilla::NrIceCtx::GatheringState&, void>(mozilla::NrIceCtx*&, mozilla::NrIceCtx::GatheringState&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NrIceCtx::GatheringState>::TupleImpl<mozilla::NrIceCtx::GatheringState&, , void>(mozilla::NrIceCtx::GatheringState&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx*, mozilla::NrIceCtx::ConnectionState>::TupleImpl<mozilla::NrIceCtx*&, mozilla::NrIceCtx::ConnectionState&, void>(mozilla::NrIceCtx*&, mozilla::NrIceCtx::ConnectionState&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NrIceCtx::ConnectionState>::TupleImpl<mozilla::NrIceCtx::ConnectionState&, , void>(mozilla::NrIceCtx::ConnectionState&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<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> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(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> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, bool&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, bool>::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::WebrtcGlobalChild*, int, char const*>::TupleImpl<mozilla::dom::WebrtcGlobalChild*, int const&, char const*, void>(mozilla::dom::WebrtcGlobalChild*&&, int const&, char const*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::RTCStatsQuery> >::TupleImpl<nsAutoPtr<mozilla::RTCStatsQuery>&, , void>(nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsIUDPSocketChild*, nsCOMPtr<nsIEventTarget> >::TupleImpl<nsIUDPSocketChild*, nsCOMPtr<nsIEventTarget>&, void>(nsIUDPSocketChild*&&, nsCOMPtr<nsIEventTarget>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIEventTarget> >::TupleImpl<nsCOMPtr<nsIEventTarget>&, , void>(nsCOMPtr<nsIEventTarget>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::nr_udp_message> >::TupleImpl<RefPtr<mozilla::nr_udp_message>&, , void>(RefPtr<mozilla::nr_udp_message>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, unsigned short>::TupleImpl<nsTString<char>&, unsigned short, void>(nsTString<char>&, unsigned short&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned short>::TupleImpl<unsigned short, , void>(unsigned short&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::net::NetAddr, nsAutoPtr<mozilla::MediaPacket> >::TupleImpl<mozilla::net::NetAddr&, nsAutoPtr<mozilla::MediaPacket>&, void>(mozilla::net::NetAddr&, nsAutoPtr<mozilla::MediaPacket>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsAutoPtr<mozilla::MediaPacket> >::TupleImpl<nsAutoPtr<mozilla::MediaPacket>&, , void>(nsAutoPtr<mozilla::MediaPacket>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::TCPSocketChild*>::TupleImpl<mozilla::dom::TCPSocketChild*, , void>(mozilla::dom::TCPSocketChild*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrSocketIpc::NrSocketIpcState>::TupleImpl<mozilla::NrSocketIpc::NrSocketIpcState&, , void>(mozilla::NrSocketIpc::NrSocketIpcState&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, unsigned int>::TupleImpl<unsigned int&, unsigned int&, void>(unsigned int&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned int>::TupleImpl<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::nr_tcp_message> >::TupleImpl<RefPtr<mozilla::nr_tcp_message>&, , void>(RefPtr<mozilla::nr_tcp_message>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrSocketIpc::NrSocketIpcState>::TupleImpl<mozilla::NrSocketIpc::NrSocketIpcState, , void>(mozilla::NrSocketIpc::NrSocketIpcState&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, unsigned short, nsTString<char>, unsigned short, nsTString<char> >::TupleImpl<nsTString<char>&, unsigned short, nsTString<char>&, unsigned short, nsTString<char>, void>(nsTString<char>&, unsigned short&&, nsTString<char>&, unsigned short&&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned short, nsTString<char>, unsigned short, nsTString<char> >::TupleImpl<unsigned short, nsTString<char>&, unsigned short, nsTString<char>, void>(unsigned short&&, nsTString<char>&, unsigned short&&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsTString<char>, unsigned short, nsTString<char> >::TupleImpl<nsTString<char>&, unsigned short, nsTString<char>, void>(nsTString<char>&, unsigned short&&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, unsigned short, nsTString<char> >::TupleImpl<unsigned short, nsTString<char>, void>(unsigned short&&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, nsTString<char> >::TupleImpl<nsTString<char>, , void>(nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<nsTArray<unsigned char> >, unsigned int>::TupleImpl<nsAutoPtr<nsTArray<unsigned char> >, unsigned int&, void>(nsAutoPtr<nsTArray<unsigned char> >&&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<std::__1::deque<mozilla::TransportLayer*, std::__1::allocator<mozilla::TransportLayer*> > > >::TupleImpl<nsAutoPtr<std::__1::deque<mozilla::TransportLayer*, std::__1::allocator<mozilla::TransportLayer*> > >&, , void>(nsAutoPtr<std::__1::deque<mozilla::TransportLayer*, std::__1::allocator<mozilla::TransportLayer*> > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTArray<mozilla::NrIceStunAddr> >::TupleImpl<nsTArray<mozilla::NrIceStunAddr>, , void>(nsTArray<mozilla::NrIceStunAddr>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*, unsigned long>::TupleImpl<mozilla::Encoding const*&, unsigned long&, void>(mozilla::Encoding const*&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long>::TupleImpl<unsigned long&, , void>(unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >::TupleImpl<mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> >, , void>(mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&, void>(mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::layers::LayersObserverEpoch&, bool&, void>(mozilla::layers::LayersObserverEpoch&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int> >::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >::TupleImpl<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, , void>(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> > >::TupleImpl<mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> > >::TupleImpl<mozilla::Maybe<mozilla::layers::ZoomConstraints> const&, , void>(mozilla::Maybe<mozilla::layers::ZoomConstraints> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >::TupleImpl<mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&, void>(mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >::TupleImpl<mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&, void>(mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >::TupleImpl<mozilla::layers::FocusTarget const&, , void>(mozilla::layers::FocusTarget const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager> >::TupleImpl<mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager>, void>(mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager> >::TupleImpl<RefPtr<mozilla::layers::APZCTreeManager>, , void>(RefPtr<mozilla::layers::APZCTreeManager>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::Runnable> >::TupleImpl<already_AddRefed<mozilla::Runnable>, , void>(already_AddRefed<mozilla::Runnable>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController> >::TupleImpl<mozilla::layers::AsyncPanZoomController*, , void>(mozilla::layers::AsyncPanZoomController*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >::TupleImpl<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&, void>(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >::TupleImpl<RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&, void>(RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >::TupleImpl<RefPtr<mozilla::layers::AsyncPanZoomController const>&, , void>(RefPtr<mozilla::layers::AsyncPanZoomController const>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid, unsigned long, void>(mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid&&, unsigned long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid, unsigned long, void>(mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid&&, unsigned long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<unsigned short&, mozilla::layers::ScrollableLayerGuid, unsigned long, void>(unsigned short&, mozilla::layers::ScrollableLayerGuid&&, unsigned long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<mozilla::layers::ScrollableLayerGuid, unsigned long, void>(mozilla::layers::ScrollableLayerGuid&&, unsigned long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<unsigned long, , void>(unsigned long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >::TupleImpl<mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, void>(mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >::TupleImpl<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, , void>(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool> >::TupleImpl<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Element> >::TupleImpl<nsCOMPtr<mozilla::dom::Element>&, , void>(nsCOMPtr<mozilla::dom::Element>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior, void>(mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior, void>(mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::layers::ZoomToRectBehavior, , void>(mozilla::layers::ZoomToRectBehavior&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&, void>(mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&, void>(mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&, void>(unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<mozilla::layers::ScrollableLayerGuid const&, unsigned long&, void>(mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<unsigned long&, , void>(unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >::TupleImpl<mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, void>(mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >::TupleImpl<mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >::TupleImpl<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, void>(mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned short> >::TupleImpl<unsigned short&, , void>(unsigned short&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::layers::GeckoContentController::APZStateChange&, int&, void>(mozilla::layers::GeckoContentController::APZStateChange&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<unsigned long const&, nsTString<char16_t> const&, void>(unsigned long const&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<nsTString<char16_t> const&, , void>(nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<unsigned long const&, , void>(unsigned long const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid> >::TupleImpl<mozilla::layers::ScrollableLayerGuid const&, , void>(mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>::TupleImpl<mozilla::layers::TextureDeallocParams&, mozilla::ReentrantMonitor*, bool*, void>(mozilla::layers::TextureDeallocParams&, mozilla::ReentrantMonitor*&&, bool*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::ReentrantMonitor*, bool*>::TupleImpl<mozilla::ReentrantMonitor*, bool*, void>(mozilla::ReentrantMonitor*&&, bool*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, bool*>::TupleImpl<bool*, , void>(bool*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams>::TupleImpl<mozilla::layers::TextureDeallocParams&, , void>(mozilla::layers::TextureDeallocParams&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, mozilla::layers::LayersIPCChannel*>::TupleImpl<unsigned long&, mozilla::layers::LayersIPCChannel*&, void>(unsigned long&, mozilla::layers::LayersIPCChannel*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::LayersIPCChannel*>::TupleImpl<mozilla::layers::LayersIPCChannel*&, , void>(mozilla::layers::LayersIPCChannel*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap> >::TupleImpl<mozilla::layers::KeyboardMap const&, , void>(mozilla::layers::KeyboardMap const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&, void>(mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<unsigned int const&, , void>(unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >::TupleImpl<unsigned long const&, bool const&, void>(unsigned long const&, bool const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool> >::TupleImpl<bool const&, , void>(bool const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::TupleImpl<unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&, void>(unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::TupleImpl<nsTArray<mozilla::layers::ScrollableLayerGuid>&, , void>(nsTArray<mozilla::layers::ScrollableLayerGuid>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<float> >::TupleImpl<float const&, , void>(float const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<unsigned int> > >::TupleImpl<unsigned long const&, nsTArray<unsigned int>, void>(unsigned long const&, nsTArray<unsigned int>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTArray<unsigned int> > >::TupleImpl<nsTArray<unsigned int>, , void>(nsTArray<unsigned int>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >::TupleImpl<mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >::TupleImpl<mozilla::layers::AsyncDragMetrics const&, , void>(mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> > >::TupleImpl<mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> > >::TupleImpl<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&, , void>(mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool> >::TupleImpl<bool const&, , void>(bool const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&, void>(base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&, void>(base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::layers::LayersId&, unsigned int&, void>(mozilla::layers::LayersId&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<unsigned long&, unsigned int&, void>(unsigned long&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, unsigned long*>::TupleImpl<mozilla::layers::CompositorBridgeParent*, unsigned long*, void>(mozilla::layers::CompositorBridgeParent*&&, unsigned long*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long*>::TupleImpl<unsigned long*, , void>(unsigned long*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<int&, int&, void>(int&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::TupleImpl<unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&, void>(unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::TupleImpl<nsTArray<mozilla::layers::ScrollableLayerGuid> const&, , void>(nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId>::TupleImpl<mozilla::layers::LayersId&, , void>(mozilla::layers::LayersId&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>::TupleImpl<mozilla::layers::LayersId&, mozilla::layers::GeckoContentController*&, void>(mozilla::layers::LayersId&, mozilla::layers::GeckoContentController*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::GeckoContentController*>::TupleImpl<mozilla::layers::GeckoContentController*&, , void>(mozilla::layers::GeckoContentController*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TimeStamp>::TupleImpl<mozilla::TimeStamp&, , void>(mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::TimeStamp> >::TupleImpl<mozilla::TimeStamp&, , void>(mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::layers::ImageContainer> >::TupleImpl<RefPtr<mozilla::layers::ImageContainer>&, , void>(RefPtr<mozilla::layers::ImageContainer>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::AsyncCanvasRenderer*>::TupleImpl<mozilla::layers::SynchronousTask*, mozilla::layers::AsyncCanvasRenderer*&, void>(mozilla::layers::SynchronousTask*&&, mozilla::layers::AsyncCanvasRenderer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::AsyncCanvasRenderer*>::TupleImpl<mozilla::layers::AsyncCanvasRenderer*&, , void>(mozilla::layers::AsyncCanvasRenderer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::ImageClient*, mozilla::layers::ImageContainer*>::TupleImpl<mozilla::layers::SynchronousTask*, mozilla::layers::ImageClient*&, mozilla::layers::ImageContainer*&, void>(mozilla::layers::SynchronousTask*&&, mozilla::layers::ImageClient*&, mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::ImageClient*, mozilla::layers::ImageContainer*>::TupleImpl<mozilla::layers::ImageClient*&, mozilla::layers::ImageContainer*&, void>(mozilla::layers::ImageClient*&, mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::layers::ImageContainer*>::TupleImpl<mozilla::layers::ImageContainer*&, , void>(mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*>::TupleImpl<mozilla::layers::SynchronousTask*, , void>(mozilla::layers::SynchronousTask*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::layers::ImageBridgeParent> >::TupleImpl<RefPtr<mozilla::layers::ImageBridgeParent>&, , void>(RefPtr<mozilla::layers::ImageBridgeParent>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>::TupleImpl<mozilla::layers::SynchronousTask*, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType&, mozilla::layers::ImageContainer*&, void>(mozilla::layers::SynchronousTask*&&, RefPtr<mozilla::layers::ImageClient>*&&, mozilla::layers::CompositableType&, mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>::TupleImpl<RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType&, mozilla::layers::ImageContainer*&, void>(RefPtr<mozilla::layers::ImageClient>*&&, mozilla::layers::CompositableType&, mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>::TupleImpl<mozilla::layers::CompositableType&, mozilla::layers::ImageContainer*&, void>(mozilla::layers::CompositableType&, mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, mozilla::layers::ImageContainer*>::TupleImpl<mozilla::layers::ImageContainer*&, , void>(mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::CanvasClient::CanvasClientType, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>::TupleImpl<mozilla::layers::SynchronousTask*, mozilla::layers::CanvasClient::CanvasClientType&, mozilla::layers::TextureFlags&, RefPtr<mozilla::layers::CanvasClient>*, void>(mozilla::layers::SynchronousTask*&&, mozilla::layers::CanvasClient::CanvasClientType&, mozilla::layers::TextureFlags&, RefPtr<mozilla::layers::CanvasClient>*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::CanvasClient::CanvasClientType, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>::TupleImpl<mozilla::layers::CanvasClient::CanvasClientType&, mozilla::layers::TextureFlags&, RefPtr<mozilla::layers::CanvasClient>*, void>(mozilla::layers::CanvasClient::CanvasClientType&, mozilla::layers::TextureFlags&, RefPtr<mozilla::layers::CanvasClient>*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>::TupleImpl<mozilla::layers::TextureFlags&, RefPtr<mozilla::layers::CanvasClient>*, void>(mozilla::layers::TextureFlags&, RefPtr<mozilla::layers::CanvasClient>*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, RefPtr<mozilla::layers::CanvasClient>*>::TupleImpl<RefPtr<mozilla::layers::CanvasClient>*, , void>(RefPtr<mozilla::layers::CanvasClient>*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::layers::AllocShmemParams*>::TupleImpl<mozilla::layers::SynchronousTask*, mozilla::layers::AllocShmemParams*, void>(mozilla::layers::SynchronousTask*&&, mozilla::layers::AllocShmemParams*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::AllocShmemParams*>::TupleImpl<mozilla::layers::AllocShmemParams*, , void>(mozilla::layers::AllocShmemParams*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::SynchronousTask*, mozilla::ipc::Shmem*, bool*>::TupleImpl<mozilla::layers::SynchronousTask*, mozilla::ipc::Shmem*, bool*, void>(mozilla::layers::SynchronousTask*&&, mozilla::ipc::Shmem*&&, bool*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::ipc::Shmem*, bool*>::TupleImpl<mozilla::ipc::Shmem*, bool*, void>(mozilla::ipc::Shmem*&&, bool*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool> >::TupleImpl<float&, float&, bool&, void>(float&, float&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool> >::TupleImpl<float&, bool&, void>(float&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::TupleImpl<int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, double&, void>(int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, double&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, double&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, double&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, double>::TupleImpl<double&, , void>(double&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::GPUProcessHost*>::TupleImpl<mozilla::gfx::GPUProcessHost*, , void>(mozilla::gfx::GPUProcessHost*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>, , void>(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>, , void>(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::TupleImpl<mozilla::layers::SurfaceDescriptor const&, unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, void>(mozilla::layers::SurfaceDescriptor const&, unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::TupleImpl<unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, void>(unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::TupleImpl<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, void>(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::TupleImpl<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, , void>(mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<vr::IVRSystem>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<vr::IVRSystem*&, unsigned int&, double&, double, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(vr::IVRSystem*&, unsigned int&, double&, double&&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<unsigned int&, double&, double, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(unsigned int&, double&, double&&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<double&, double, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(double&, double&&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<double, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(double&&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<mozilla::gfx::VRManagerPromise const&, , void>(mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<mozilla::gfx::VRManagerPromise const&, , void>(mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<vr::IVRSystem>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::TupleImpl<double&, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(double&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::TimeStamp> >::TupleImpl<mozilla::TimeStamp, , void>(mozilla::TimeStamp&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>, , void>(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::VRManagerChild> >::TupleImpl<RefPtr<mozilla::gfx::VRManagerChild>&, , void>(RefPtr<mozilla::gfx::VRManagerChild>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver> >::TupleImpl<unsigned int, mozilla::dom::VREventObserver*&, void>(unsigned int&&, mozilla::dom::VREventObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver> >::TupleImpl<mozilla::dom::VREventObserver*&, , void>(mozilla::dom::VREventObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>, , void>(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRManagerParent*>::TupleImpl<mozilla::gfx::VRManagerParent*, , void>(mozilla::gfx::VRManagerParent*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRProcessParent*>::TupleImpl<mozilla::gfx::VRProcessParent*, , void>(mozilla::gfx::VRProcessParent*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::MemoryReport>, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::TupleImpl<mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&, void>(mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::TupleImpl<RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&, , void>(RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::WrWindowId> >::TupleImpl<mozilla::wr::WrWindowId&, , void>(mozilla::wr::WrWindowId&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > > >::TupleImpl<mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >, void>(mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > > >::TupleImpl<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >, , void>(mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::TupleImpl<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo&, mozilla::TimeStamp const&, mozilla::TimeStamp&, void>(mozilla::layers::CompositorBridgeParent*&&, mozilla::wr::WrPipelineInfo&, mozilla::TimeStamp const&, mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::TupleImpl<mozilla::wr::WrPipelineInfo&, mozilla::TimeStamp const&, mozilla::TimeStamp&, void>(mozilla::wr::WrPipelineInfo&, mozilla::TimeStamp const&, mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::TimeStamp, mozilla::TimeStamp>::TupleImpl<mozilla::TimeStamp const&, mozilla::TimeStamp&, void>(mozilla::TimeStamp const&, mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, mozilla::TimeStamp>::TupleImpl<mozilla::TimeStamp&, , void>(mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::wr::RenderTextureHost> >::TupleImpl<RefPtr<mozilla::wr::RenderTextureHost>&, , void>(RefPtr<mozilla::wr::RenderTextureHost>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*>::TupleImpl<mozilla::layers::CompositorBridgeParent*&, , void>(mozilla::layers::CompositorBridgeParent*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>::TupleImpl<mozilla::layers::CompositorBridgeParent*&, mozilla::wr::WebRenderError&, void>(mozilla::layers::CompositorBridgeParent*&, mozilla::wr::WebRenderError&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::wr::WebRenderError>::TupleImpl<mozilla::wr::WebRenderError&, , void>(mozilla::wr::WebRenderError&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::TupleImpl<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::TupleImpl<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface> >::TupleImpl<RefPtr<mozilla::gfx::SourceSurface>, , void>(RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, , void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::image::MatchType&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, , void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(mozilla::image::MatchType&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, , void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::TupleImpl<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::TupleImpl<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, , void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, void>(RefPtr<mozilla::gfx::SourceSurface>&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::TupleImpl<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(RefPtr<mozilla::gfx::SourceSurface>&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, mozilla::Maybe<mozilla::image::WriteState> >::TupleImpl<int&, mozilla::Maybe<mozilla::image::WriteState>, void>(int&, mozilla::Maybe<mozilla::image::WriteState>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState> >::TupleImpl<mozilla::Maybe<mozilla::image::WriteState>, , void>(mozilla::Maybe<mozilla::image::WriteState>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&, void>(int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&, void>(int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&, void>(int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&, void>(nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsTSubstring<char16_t> const&, nsIObserver*&, void>(nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsIObserver*&, , void>(nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int&, int&, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, int&, int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<int&, int&, nsIObserver*&, void>(int&, int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<int&, nsIObserver*&, void>(int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsIObserver*&, , void>(nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsIObserver*&, , void>(nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&, void>(unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&, void>(double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<double&, double&, unsigned int&, unsigned int&, nsIObserver*&, void>(double&, double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<double&, unsigned int&, unsigned int&, nsIObserver*&, void>(double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<5ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<unsigned int&, unsigned int&, nsIObserver*&, void>(unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<6ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<unsigned int&, nsIObserver*&, void>(unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<7ul, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsIObserver*&, , void>(nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<unsigned int&, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double&, unsigned int&, nsIObserver*&, void>(unsigned int&, nsIWidget::TouchPointerState&&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, double&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double&, unsigned int&, nsIObserver*&, void>(nsIWidget::TouchPointerState&&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, double&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double&, unsigned int&, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, double&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<double&, unsigned int&, nsIObserver*&, void>(double&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<unsigned int&, nsIObserver*&, void>(unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool&, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, bool&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<bool&, nsIObserver*&, void>(bool&, nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsIObserver*&, , void>(nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIObserver> >::TupleImpl<nsIObserver*&, , void>(nsIObserver*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentParent*, mozilla::dom::TabParent*>::TupleImpl<decltype(nullptr), decltype(nullptr), void>(decltype(nullptr)&&, decltype(nullptr)&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::dom::TabParent*>::TupleImpl<decltype(nullptr), , void>(decltype(nullptr)&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentParent*, mozilla::dom::TabParent*>::TupleImpl<mozilla::dom::ContentParent*, mozilla::dom::TabParent*&, void>(mozilla::dom::ContentParent*&&, mozilla::dom::TabParent*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::dom::TabParent*>::TupleImpl<mozilla::dom::TabParent*&, , void>(mozilla::dom::TabParent*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Blob>, StoreConstPtrPassByConstPtr<char> >::TupleImpl<decltype(nullptr), decltype(nullptr), void>(decltype(nullptr)&&, decltype(nullptr)&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreConstPtrPassByConstPtr<char> >::TupleImpl<decltype(nullptr), , void>(decltype(nullptr)&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> > >::TupleImpl<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, , void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement> >::TupleImpl<mozilla::dom::HTMLMediaElement*&, , void>(mozilla::dom::HTMLMediaElement*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsTString<char>, , void>(nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::TupleImpl<RefPtr<mozilla::dom::MediaStreamTrack>&, , void>(RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> const> >::TupleImpl<nsTString<char16_t> const&, , void>(nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type, mozilla::MediaStream*&, int&, void>(mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type&&, mozilla::MediaStream*&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::TupleImpl<int&, mozilla::MediaSegment::Type, mozilla::MediaStream*&, int&, void>(int&, mozilla::MediaSegment::Type&&, mozilla::MediaStream*&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::MediaSegment::Type, mozilla::MediaStream*&, int&, void>(mozilla::MediaSegment::Type&&, mozilla::MediaStream*&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::MediaStream*&, int&, void>(mozilla::MediaStream*&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&, void>(mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::MediaStream*&, int&, int&, void>(mozilla::MediaStream*&, int&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<int&, int&, void>(int&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::TimedMetadata> >::TupleImpl<mozilla::TimedMetadata, , void>(mozilla::TimedMetadata&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState> >::TupleImpl<mozilla::MediaDecoder::PlayState&, , void>(mozilla::MediaDecoder::PlayState&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::TupleImpl<nsMainThreadPtrHandle<nsIPrincipal>&, , void>(nsMainThreadPtrHandle<nsIPrincipal>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> > >::TupleImpl<already_AddRefed<mozilla::layers::KnowsCompositor>, , void>(already_AddRefed<mozilla::layers::KnowsCompositor>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::TupleImpl<mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*, , void>(mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::TupleImpl<mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*, , void>(mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::TupleImpl<mozilla::Mirror<mozilla::media::TimeUnit>::Impl*, , void>(mozilla::Mirror<mozilla::media::TimeUnit>::Impl*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::TupleImpl<mozilla::Mirror<bool>::Impl*, , void>(mozilla::Mirror<bool>::Impl*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::CDMProxy> >::TupleImpl<mozilla::CDMProxy*&, , void>(mozilla::CDMProxy*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<bool> >::TupleImpl<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType> >::TupleImpl<mozilla::MediaPlaybackEvent::EventType&, , void>(mozilla::MediaPlaybackEvent::EventType&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus> >::TupleImpl<mozilla::MediaDecoderOwner::NextFrameStatus&, , void>(mozilla::MediaDecoderOwner::NextFrameStatus&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::SeekJob>::TupleImpl<mozilla::SeekJob, mozilla::SeekJob, void>(mozilla::SeekJob&&, mozilla::SeekJob&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::SeekJob>::TupleImpl<mozilla::SeekJob, , void>(mozilla::SeekJob&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::TupleImpl<mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility, void>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::TupleImpl<mozilla::MediaDecoderStateMachine::StateObject::EventVisibility, , void>(mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::AudioData> > >::TupleImpl<RefPtr<mozilla::AudioData>&, , void>(RefPtr<mozilla::AudioData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::VideoData> > >::TupleImpl<RefPtr<mozilla::VideoData>&, , void>(RefPtr<mozilla::VideoData>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit> > >::TupleImpl<mozilla::Maybe<mozilla::media::TimeUnit>&, , void>(mozilla::Maybe<mozilla::media::TimeUnit>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::TupleImpl<mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&, void>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::TupleImpl<mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&, , void>(mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> > >, StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::TupleImpl<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility, void>(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::TupleImpl<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility, void>(mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::TupleImpl<mozilla::MediaDecoderEventVisibility, , void>(mozilla::MediaDecoderEventVisibility&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::TupleImpl<mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*, , void>(mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::TupleImpl<mozilla::Mirror<double>::Impl*, , void>(mozilla::Mirror<double>::Impl*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::TupleImpl<mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*, , void>(mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::media::TimeUnit> >::TupleImpl<mozilla::media::TimeUnit&, , void>(mozilla::media::TimeUnit&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaDecoder> >::TupleImpl<mozilla::MediaDecoder*&, , void>(mozilla::MediaDecoder*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaPlaybackEvent> >::TupleImpl<mozilla::MediaPlaybackEvent&, , void>(mozilla::MediaPlaybackEvent&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::VideoDecodeMode> >::TupleImpl<mozilla::VideoDecodeMode&, , void>(mozilla::VideoDecodeMode&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::SeekTarget> >::TupleImpl<mozilla::SeekTarget const&, , void>(mozilla::SeekTarget const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaResult> >::TupleImpl<mozilla::MediaResult const&, , void>(mozilla::MediaResult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::TupleImpl<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility&, void>(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::TupleImpl<mozilla::MediaDecoderEventVisibility&, , void>(mozilla::MediaDecoderEventVisibility&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::DecoderDoctorEvent> >::TupleImpl<mozilla::DecoderDoctorEvent&, , void>(mozilla::DecoderDoctorEvent&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::SourceListener> >::TupleImpl<RefPtr<mozilla::SourceListener>&, , void>(RefPtr<mozilla::SourceListener>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::TupleImpl<RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&, , void>(RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::media::TimeIntervals> >::TupleImpl<mozilla::media::TimeIntervals&, , void>(mozilla::media::TimeIntervals&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTArray<unsigned char> >, StoreCopyPassByRRef<nsTString<char16_t> > >::TupleImpl<nsTArray<unsigned char>&, nsTString<char16_t>&, void>(nsTArray<unsigned char>&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTString<char16_t> > >::TupleImpl<nsTString<char16_t>&, , void>(nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType> >::TupleImpl<mozilla::TrackInfo::TrackType&, , void>(mozilla::TrackInfo::TrackType&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::TupleImpl<nsMainThreadPtrHandle<nsIPrincipal> const&, , void>(nsMainThreadPtrHandle<nsIPrincipal> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, void const*, RefPtr<mozilla::AudioDataListener> >::TupleImpl<void const*&, RefPtr<mozilla::AudioDataListener>, void>(void const*&, RefPtr<mozilla::AudioDataListener>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::AudioDataListener> >::TupleImpl<RefPtr<mozilla::AudioDataListener>, , void>(RefPtr<mozilla::AudioDataListener>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Maybe<void const*>, RefPtr<mozilla::AudioDataListener> >::TupleImpl<mozilla::Maybe<void const*>&, RefPtr<mozilla::AudioDataListener>, void>(mozilla::Maybe<void const*>&, RefPtr<mozilla::AudioDataListener>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::media::TimeUnit> >::TupleImpl<mozilla::media::TimeUnit const&, , void>(mozilla::media::TimeUnit const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::SeekTarget> >::TupleImpl<mozilla::SeekTarget, , void>(mozilla::SeekTarget&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::MediaData::Type> >::TupleImpl<mozilla::MediaData::Type&, , void>(mozilla::MediaData::Type&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> > >::TupleImpl<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&, , void>(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<long> >::TupleImpl<long&, , void>(long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<long> >::TupleImpl<long, , void>(long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::AudioSegment> >::TupleImpl<mozilla::AudioSegment, , void>(mozilla::AudioSegment&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener> >::TupleImpl<RefPtr<mozilla::MediaEncoder::EncoderListener>&, , void>(RefPtr<mozilla::MediaEncoder::EncoderListener>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::VideoSegment> >::TupleImpl<mozilla::VideoSegment, , void>(mozilla::VideoSegment&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >::TupleImpl<unsigned int&, NS_ConvertUTF8toUTF16, void>(unsigned int&, NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >::TupleImpl<NS_ConvertUTF8toUTF16, , void>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<bool> >::TupleImpl<unsigned int&, bool&, void>(unsigned int&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool> >::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<unsigned int&, nsresult&, nsTString<char> const&, void>(unsigned int&, nsresult&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsresult&, nsTString<char> const&, void>(nsresult&, nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsTString<char> const&, , void>(nsTString<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char>, void>(NS_ConvertUTF8toUTF16&&, mozilla::dom::MediaKeyMessageType&&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char>, void>(mozilla::dom::MediaKeyMessageType&&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<nsTArray<unsigned char>, , void>(nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus> >::TupleImpl<unsigned int&, mozilla::dom::MediaKeyStatus, void>(unsigned int&, mozilla::dom::MediaKeyStatus&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus> >::TupleImpl<mozilla::dom::MediaKeyStatus, , void>(mozilla::dom::MediaKeyStatus&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >::TupleImpl<NS_ConvertUTF8toUTF16, , void>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<long> >::TupleImpl<NS_ConvertUTF8toUTF16, long, void>(NS_ConvertUTF8toUTF16&&, long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<long> >::TupleImpl<long, , void>(long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const> >::TupleImpl<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const> >::TupleImpl<unsigned int&, unsigned int, void>(unsigned int&, unsigned int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const> >::TupleImpl<unsigned int, , void>(unsigned int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char>, void>(bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<unsigned int&, nsTString<char>, void>(unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTString<char>, , void>(nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const> >::TupleImpl<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const> >::TupleImpl<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int&, unsigned int, unsigned int&, nsTString<char>, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int&, unsigned int&&, unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<unsigned int&, unsigned int, unsigned int&, nsTString<char>, void>(unsigned int&, unsigned int&&, unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<unsigned int, unsigned int&, nsTString<char>, void>(unsigned int&&, unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<unsigned int&, nsTString<char>, void>(unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTString<char>, , void>(nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::TupleImpl<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char>, unsigned int, nsTArray<unsigned char>&, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char>&&, unsigned int&&, nsTArray<unsigned char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::TupleImpl<nsTString<char>, unsigned int, nsTArray<unsigned char>&, void>(nsTString<char>&&, unsigned int&&, nsTArray<unsigned char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::TupleImpl<unsigned int, nsTArray<unsigned char>&, void>(unsigned int&&, nsTArray<unsigned char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::TupleImpl<nsTArray<unsigned char>&, , void>(nsTArray<unsigned char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >::TupleImpl<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>, nsTArray<mozilla::gmp::CDMKeyInformation>&, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>&&, nsTArray<mozilla::gmp::CDMKeyInformation>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >::TupleImpl<nsTString<char>, nsTArray<mozilla::gmp::CDMKeyInformation>&, void>(nsTString<char>&&, nsTArray<mozilla::gmp::CDMKeyInformation>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >::TupleImpl<nsTArray<mozilla::gmp::CDMKeyInformation>&, , void>(nsTArray<mozilla::gmp::CDMKeyInformation>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const> >::TupleImpl<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>, double&, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>&&, double&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const> >::TupleImpl<nsTString<char>, double&, void>(nsTString<char>&&, double&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<double const> >::TupleImpl<double&, , void>(double&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char>, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> const> >::TupleImpl<nsTString<char>, , void>(nsTString<char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>, void>(unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>, void>(unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<unsigned int&, unsigned int&, nsTArray<unsigned char>, void>(unsigned int&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<unsigned int&, nsTArray<unsigned char>, void>(unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<nsTArray<unsigned char>, , void>(nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<unsigned int&, unsigned int, nsTSubstring<char16_t> const&, void>(unsigned int&, unsigned int&&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<unsigned int, nsTSubstring<char16_t> const&, void>(unsigned int&&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<unsigned int&, nsTArray<unsigned char>, void>(unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<nsTArray<unsigned char>, , void>(nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<NS_ConvertUTF16toUTF8, unsigned int&, nsTArray<unsigned char>, void>(NS_ConvertUTF16toUTF8&&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::TupleImpl<unsigned int&, nsTArray<unsigned char>, void>(unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<NS_ConvertUTF16toUTF8, unsigned int&, void>(NS_ConvertUTF16toUTF8&&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<unsigned int&, NS_ConvertUTF16toUTF8, void>(unsigned int&, NS_ConvertUTF16toUTF8&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<NS_ConvertUTF16toUTF8, , void>(NS_ConvertUTF16toUTF8&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::gmp::GMPParent> >::TupleImpl<RefPtr<mozilla::gmp::GMPParent>&, , void>(RefPtr<mozilla::gmp::GMPParent>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, nsTString<char>, nsTString<char16_t> >::TupleImpl<unsigned int&, nsTString<char>&, nsTString<char16_t>&, void>(unsigned int&, nsTString<char>&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTString<char16_t> >::TupleImpl<nsTString<char>&, nsTString<char16_t>&, void>(nsTString<char>&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsTString<char16_t> >::TupleImpl<nsTString<char16_t>&, , void>(nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<NS_ConvertUTF8toUTF16> >::TupleImpl<NS_ConvertUTF8toUTF16, , void>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTString<char16_t> > >::TupleImpl<nsTString<char16_t>&, , void>(nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern> >::TupleImpl<NS_ConvertUTF16toUTF8, mozilla::OriginAttributesPattern const&, void>(NS_ConvertUTF16toUTF8&&, mozilla::OriginAttributesPattern const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern> >::TupleImpl<mozilla::OriginAttributesPattern const&, , void>(mozilla::OriginAttributesPattern const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<mozilla::Monitor>, StorePtrPassByPtr<bool> >::TupleImpl<mozilla::Monitor*, bool*, void>(mozilla::Monitor*&&, bool*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StorePtrPassByPtr<bool> >::TupleImpl<bool*, , void>(bool*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<unsigned char> >::TupleImpl<nsTString<char> const&, nsTArray<unsigned char>, void>(nsTString<char> const&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<unsigned char> >::TupleImpl<nsTArray<unsigned char>, , void>(nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::TupleImpl<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>, , void>(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>, , void>(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<long> >::TupleImpl<long&, , void>(long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<bool> >::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager> > >::TupleImpl<RefPtr<mozilla::TrackBuffersManager>&, , void>(RefPtr<mozilla::TrackBuffersManager>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >::TupleImpl<already_AddRefed<mozilla::MediaByteBuffer>, mozilla::SourceBufferAttributes const&, void>(already_AddRefed<mozilla::MediaByteBuffer>&&, mozilla::SourceBufferAttributes const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >::TupleImpl<mozilla::SourceBufferAttributes const&, , void>(mozilla::SourceBufferAttributes const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::SourceBufferTask> >::TupleImpl<mozilla::SourceBufferTask*&, , void>(mozilla::SourceBufferTask*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> > >::TupleImpl<mozilla::media::Interval<mozilla::media::TimeUnit>, , void>(mozilla::media::Interval<mozilla::media::TimeUnit>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::MediaRawData> >::TupleImpl<mozilla::MediaRawData*&, , void>(mozilla::MediaRawData*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::TrackInfo::TrackType> >::TupleImpl<mozilla::TrackInfo::TrackType const&, , void>(mozilla::TrackInfo::TrackType const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<mozilla::camera::CaptureEngine&, nsTString<char>&, void>(mozilla::camera::CaptureEngine&, nsTString<char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsTString<char>&, , void>(nsTString<char>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine> >::TupleImpl<mozilla::camera::CaptureEngine&, , void>(mozilla::camera::CaptureEngine&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&, void>(mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<nsTString<char>&, unsigned int const&, void>(nsTString<char>&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::camera::CaptureEngine&, unsigned int&, void>(mozilla::camera::CaptureEngine&, unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >::TupleImpl<mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&, void>(mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >::TupleImpl<nsTString<char>&, mozilla::ipc::PrincipalInfo const&, void>(nsTString<char>&, mozilla::ipc::PrincipalInfo const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >::TupleImpl<mozilla::ipc::PrincipalInfo const&, , void>(mozilla::ipc::PrincipalInfo const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int> >::TupleImpl<mozilla::camera::CaptureEngine&, int const&, void>(mozilla::camera::CaptureEngine&, int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int const&, , void>(int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >::TupleImpl<mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&, void>(mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >::TupleImpl<int const&, mozilla::camera::VideoCaptureCapability&, void>(int const&, mozilla::camera::VideoCaptureCapability&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >::TupleImpl<mozilla::camera::VideoCaptureCapability&, , void>(mozilla::camera::VideoCaptureCapability&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<unsigned int const&, , void>(unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<SPDNotificationType> >::TupleImpl<unsigned int, SPDNotificationType&, void>(unsigned int&&, SPDNotificationType&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<SPDNotificationType> >::TupleImpl<SPDNotificationType&, , void>(SPDNotificationType&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<SPDNotificationType> >::TupleImpl<SPDNotificationType, , void>(SPDNotificationType&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&, void>(char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsTSubstring<char16_t> const&, nsTSubstring<char> const&, void>(nsTSubstring<char16_t> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsTSubstring<char> const&, , void>(nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsCOMPtr<nsIUDPSocket>, nsCOMPtr<nsIEventTarget>, UDPAddressInfo>::TupleImpl<nsCOMPtr<nsIUDPSocket>&, nsCOMPtr<nsIEventTarget>&, UDPAddressInfo const&, void>(nsCOMPtr<nsIUDPSocket>&, nsCOMPtr<nsIEventTarget>&, UDPAddressInfo const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIEventTarget>, UDPAddressInfo>::TupleImpl<nsCOMPtr<nsIEventTarget>&, UDPAddressInfo const&, void>(nsCOMPtr<nsIEventTarget>&, UDPAddressInfo const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int>::TupleImpl<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<gfxSurfaceType>, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool> >::TupleImpl<gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool, void>(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool> >::TupleImpl<mozilla::plugins::NPRemoteWindow const&, bool, void>(mozilla::plugins::NPRemoteWindow const&, bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<bool> >::TupleImpl<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>, , void>(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>, , void>(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&, void>(mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&, void>(nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<nsTString<char16_t> const&, , void>(nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>, , void>(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >::TupleImpl<mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&, void>(mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >::TupleImpl<bool&, mozilla::layers::LayersObserverEpoch const&, void>(bool&, mozilla::layers::LayersObserverEpoch const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >::TupleImpl<mozilla::layers::LayersObserverEpoch const&, , void>(mozilla::layers::LayersObserverEpoch const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>, , void>(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentProcessHost*>::TupleImpl<mozilla::dom::ContentProcessHost*&, , void>(mozilla::dom::ContentProcessHost*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod> >::TupleImpl<mozilla::dom::ContentParent::ShutDownMethod, , void>(mozilla::dom::ContentParent::ShutDownMethod&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, bool>::TupleImpl<int&, bool, void>(int&, bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > > >::TupleImpl<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >, , void>(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> > >::TupleImpl<nsTAutoStringN<char16_t, 64ul>&, , void>(nsTAutoStringN<char16_t, 64ul>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >::TupleImpl<unsigned long&, bool&, void>(unsigned long&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long> >::TupleImpl<unsigned long&, , void>(unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::Element>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom> >::TupleImpl<mozilla::dom::Element*&, int const&, nsAtom*&, void>(mozilla::dom::Element*&, int const&, nsAtom*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom> >::TupleImpl<int const&, nsAtom*&, void>(int const&, nsAtom*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreRefPtrPassByPtr<nsAtom> >::TupleImpl<nsAtom*&, , void>(nsAtom*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreCopyPassByConstLRef<nsresult> >::TupleImpl<nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&, void>(nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<nsresult> >::TupleImpl<nsresult const&, , void>(nsresult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >::TupleImpl<nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&, void>(nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >::TupleImpl<nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&, void>(nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >::TupleImpl<nsTString<char> const&, nsresult const&, void>(nsTString<char> const&, nsresult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<nsresult> >::TupleImpl<nsresult const&, , void>(nsresult const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::TupleImpl<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >, , void>(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType> >::TupleImpl<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType, , void>(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned short> >::TupleImpl<unsigned short&, , void>(unsigned short&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor> >::TupleImpl<mozilla::dom::ServiceWorkerRegistrationDescriptor const&, , void>(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&>::TupleImpl<bool&, mozilla::CopyableErrorResult, void>(bool&, mozilla::CopyableErrorResult&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&>::TupleImpl<mozilla::CopyableErrorResult, , void>(mozilla::CopyableErrorResult&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::SDBRequest> >::TupleImpl<mozilla::dom::SDBRequest*, , void>(mozilla::dom::SDBRequest*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<mozilla::dom::Promise> >::TupleImpl<nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&, void>(nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreRefPtrPassByPtr<mozilla::dom::Promise> >::TupleImpl<RefPtr<mozilla::dom::Promise>&, , void>(RefPtr<mozilla::dom::Promise>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<nsTAutoStringN<char, 64ul>&, , void>(nsTAutoStringN<char, 64ul>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> > >::TupleImpl<char const (&) [10], , void>(char const (&) [10])
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsIPresentationSessionTransport> >::TupleImpl<nsCOMPtr<nsIPresentationSessionTransport>&, , void>(nsCOMPtr<nsIPresentationSessionTransport>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState> >::TupleImpl<mozilla::dom::PresentationTCPSessionTransport::ReadyState, , void>(mozilla::dom::PresentationTCPSessionTransport::ReadyState&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<float> >::TupleImpl<float&, , void>(float&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap> >::TupleImpl<mozilla::layers::KeyboardMap&, , void>(mozilla::layers::KeyboardMap&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByLRef<nsTArray<unsigned int> > >::TupleImpl<unsigned long&, nsTArray<unsigned int> const&, void>(unsigned long&, nsTArray<unsigned int> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByLRef<nsTArray<unsigned int> > >::TupleImpl<nsTArray<unsigned int> const&, , void>(nsTArray<unsigned int> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::TupleImpl<unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&, void>(unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::TupleImpl<nsTArray<mozilla::layers::ScrollableLayerGuid> const&, , void>(nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&, void>(mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >::TupleImpl<mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&, void>(mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<nsINode> >::TupleImpl<nsINode*&, , void>(nsINode*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::a11y::SelData> >::TupleImpl<mozilla::a11y::SelData*&, , void>(mozilla::a11y::SelData*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::a11y::Accessible> >::TupleImpl<mozilla::a11y::Accessible*&, , void>(mozilla::a11y::Accessible*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::Event> >::TupleImpl<mozilla::dom::Event*&, , void>(mozilla::dom::Event*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::PProfilerChild>, , void>(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<nsTString<char> > >::TupleImpl<nsTString<char>*&, , void>(nsTString<char>*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&>::TupleImpl<bool, nsTString<char16_t>&, void>(bool&&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&>::TupleImpl<nsTString<char16_t>&, , void>(nsTString<char16_t>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&>::TupleImpl<bool, nsTString<char16_t> const&, void>(bool&&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<char> >::TupleImpl<char const (&) [19], , void>(char const (&) [19])
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<char> >::TupleImpl<char const (&) [21], , void>(char const (&) [21])
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::ExtensionPolicyService>, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::TupleImpl<mozilla::ExtensionPolicyService*, nsCOMPtr<nsPIDOMWindowInner>&, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul>, void>(mozilla::ExtensionPolicyService*&&, nsCOMPtr<nsPIDOMWindowInner>&, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::TupleImpl<nsCOMPtr<nsPIDOMWindowInner>&, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul>, void>(nsCOMPtr<nsPIDOMWindowInner>&, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::TupleImpl<AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul>, , void>(AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, , void>(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> > >::TupleImpl<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>, , void>(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<nsTArray<unsigned char> > >::TupleImpl<nsTArray<unsigned char>, , void>(nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::TupleImpl<nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&, void>(nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::TupleImpl<int&, nsTSubstring<char> const&, bool&, long&, void>(int&, nsTSubstring<char> const&, bool&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::TupleImpl<nsTSubstring<char> const&, bool&, long&, void>(nsTSubstring<char> const&, bool&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::TupleImpl<bool&, long&, void>(bool&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<4ul, StoreCopyPassByConstLRef<long> >::TupleImpl<long&, , void>(long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<int>, long>::TupleImpl<nsTString<char>, nsTArray<int>, long&, void>(nsTString<char>&&, nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<int>, long>::TupleImpl<nsTArray<int>, long&, void>(nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, long>::TupleImpl<long&, , void>(long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char>, nsTArray<int>, long>::TupleImpl<nsTString<char>, nsTString<char>, nsTArray<int>, long&, void>(nsTString<char>&&, nsTString<char>&&, nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTArray<int>, long>::TupleImpl<nsTString<char>, nsTArray<int>, long&, void>(nsTString<char>&&, nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsTArray<int>, long>::TupleImpl<nsTArray<int>, long&, void>(nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, long>::TupleImpl<long&, , void>(long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int>::TupleImpl<char const*, nsCOMPtr<nsIVariant>&, unsigned int const&, void>(char const*&&, nsCOMPtr<nsIVariant>&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int>::TupleImpl<nsCOMPtr<nsIVariant>&, unsigned int const&, void>(nsCOMPtr<nsIVariant>&, unsigned int const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::TupleImpl<nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant>&, void>(nsTString<char>&&, nsTString<char16_t>&&, nsCOMPtr<nsIVariant>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::TupleImpl<nsTString<char16_t>, nsCOMPtr<nsIVariant>&, void>(nsTString<char16_t>&&, nsCOMPtr<nsIVariant>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsCOMPtr<nsIVariant> >::TupleImpl<nsCOMPtr<nsIVariant>&, , void>(nsCOMPtr<nsIVariant>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<mozilla::dom::HTMLInputElement> >::TupleImpl<RefPtr<mozilla::dom::HTMLInputElement>&, , void>(RefPtr<mozilla::dom::HTMLInputElement>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<nsFoo> >::TupleImpl<RefPtr<nsFoo>&, , void>(RefPtr<nsFoo>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<char> >::TupleImpl<char*&, , void>(char*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<bool> >::TupleImpl<bool*, , void>(bool*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<char>, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<char const (&) [6], int, void>(char const (&) [6], int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<unsigned int> >::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<int, int, void>(int&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<int, int, int, void>(int&&, int&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<int, int, void>(int&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<int, int, int, int, void>(int&&, int&&, int&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<int, int, int, void>(int&&, int&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::TupleImpl<int, int, void>(int&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, StoreCopyPassByConstLRef<int> >::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<int> >::TupleImpl<short&, , void>(short&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<int> >::TupleImpl<int*, , void>(int*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<int> >::TupleImpl<int*, , void>(int*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByPtr<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstPtr<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<int> >::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<int> >::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::TupleImpl<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, , void>(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::TupleImpl<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&, , void>(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByValue<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy&, , void>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByValue<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy, , void>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy&, , void>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy, , void>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy&, , void>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy, , void>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy&, , void>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::TupleImpl<TestThreadUtils::SpyWithISupports*, , void>(TestThreadUtils::SpyWithISupports*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StorePtrPassByPtr<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy*, , void>(TestThreadUtils::Spy*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstPtrPassByConstPtr<TestThreadUtils::Spy> >::TupleImpl<TestThreadUtils::Spy*, , void>(TestThreadUtils::Spy*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mediapipeline_unittest.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TestAgentReceive*, (anonymous namespace)::TestAgentSend*>::TupleImpl<(anonymous namespace)::TestAgentReceive*, (anonymous namespace)::TestAgentSend*, void>((anonymous namespace)::TestAgentReceive*&&, (anonymous namespace)::TestAgentSend*&&)
Unexecuted instantiation: mediapipeline_unittest.cpp:mozilla::detail::TupleImpl<1ul, (anonymous namespace)::TestAgentSend*>::TupleImpl<(anonymous namespace)::TestAgentSend*, , void>((anonymous namespace)::TestAgentSend*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPipelineFilter> >::TupleImpl<nsAutoPtr<mozilla::MediaPipelineFilter>&, , void>(nsAutoPtr<mozilla::MediaPipelineFilter>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, mozilla::Maybe<mozilla::image::WriteState> >::TupleImpl<int, mozilla::Maybe<mozilla::image::WriteState>, void>(int&&, mozilla::Maybe<mozilla::image::WriteState>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > > >::TupleImpl<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >, , void>(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreRefPassByLRef<GMPTestMonitor> >::TupleImpl<GMPTestMonitor&, , void>(GMPTestMonitor&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByConstLRef<nsTString<char> >, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*> >::TupleImpl<nsTString<char>&, GMPVideoDecoderProxy**, GMPVideoHost**, void>(nsTString<char>&, GMPVideoDecoderProxy**&&, GMPVideoHost**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*> >::TupleImpl<GMPVideoDecoderProxy**, GMPVideoHost**, void>(GMPVideoDecoderProxy**&&, GMPVideoHost**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StorePtrPassByPtr<GMPVideoHost*> >::TupleImpl<GMPVideoHost**, , void>(GMPVideoHost**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreConstRefPassByConstLRef<GMPVideoCodec>, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >::TupleImpl<GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*, int, void>(GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >::TupleImpl<nsTArray<unsigned char>&, GMPRemoveTest*, int, void>(nsTArray<unsigned char>&, GMPRemoveTest*&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >::TupleImpl<GMPRemoveTest*, int, void>(GMPRemoveTest*&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<SomeEvent> >::TupleImpl<SomeEvent&, , void>(SomeEvent&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, StoreCopyPassByRRef<RefPtr<RefCounter> > >::TupleImpl<RefPtr<RefCounter>&, , void>(RefPtr<RefCounter>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int>::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int, mozilla::NrIceCandidate*>::TupleImpl<unsigned int, mozilla::NrIceCandidate*, void>(unsigned int&&, mozilla::NrIceCandidate*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NrIceCandidate*>::TupleImpl<mozilla::NrIceCandidate*, , void>(mozilla::NrIceCandidate*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, int>::TupleImpl<unsigned long&, int&, void>(unsigned long&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int>::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long>::TupleImpl<unsigned long, , void>(unsigned long&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl<unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrIceCtx::Controlling>::TupleImpl<mozilla::NrIceCtx::Controlling, , void>(mozilla::NrIceCtx::Controlling&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, int>::TupleImpl<int, int, void>(int&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int>::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, int, unsigned char const*, int>::TupleImpl<int, int, unsigned char const*, int, void>(int&&, int&&, unsigned char const*&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, int, unsigned char const*, int>::TupleImpl<int, unsigned char const*, int, void>(int&&, unsigned char const*&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned char const*, int>::TupleImpl<unsigned char const*, int, void>(unsigned char const*&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, int>::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::IceTestPeer*, (anonymous namespace)::TrickleMode, bool>::TupleImpl<(anonymous namespace)::IceTestPeer*&, (anonymous namespace)::TrickleMode&, bool&, void>((anonymous namespace)::IceTestPeer*&, (anonymous namespace)::TrickleMode&, bool&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<1ul, (anonymous namespace)::TrickleMode, bool>::TupleImpl<(anonymous namespace)::TrickleMode&, bool&, void>((anonymous namespace)::TrickleMode&, bool&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, bool>::TupleImpl<bool&, , void>(bool&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<0ul, int, int, (anonymous namespace)::ConsentStatus>::TupleImpl<int, int, (anonymous namespace)::ConsentStatus&, void>(int&&, int&&, (anonymous namespace)::ConsentStatus&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<1ul, int, (anonymous namespace)::ConsentStatus>::TupleImpl<int, (anonymous namespace)::ConsentStatus&, void>(int&&, (anonymous namespace)::ConsentStatus&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::detail::TupleImpl<2ul, (anonymous namespace)::ConsentStatus>::TupleImpl<(anonymous namespace)::ConsentStatus&, , void>((anonymous namespace)::ConsentStatus&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool>::TupleImpl<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*>::TupleImpl<unsigned long, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*, void>(unsigned long&&, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*>::TupleImpl<std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*, , void>(std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int>::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_tcp_type, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, nr_socket_**>::TupleImpl<nr_socket_tcp_type&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, nr_socket_**, void>(nr_socket_tcp_type&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, nr_socket_**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, nr_socket_**>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, nr_socket_**, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, nr_socket_**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned short, nr_socket_**>::TupleImpl<unsigned short&, nr_socket_**, void>(unsigned short&, nr_socket_**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, nr_socket_**>::TupleImpl<nr_socket_**, , void>(nr_socket_**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*>::TupleImpl<nr_socket_*&, , void>(nr_socket_*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_socket_*>::TupleImpl<nr_socket_*&, nr_socket_*&, void>(nr_socket_*&, nr_socket_*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_socket_*>::TupleImpl<nr_socket_*&, , void>(nr_socket_*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*, unsigned long, int>::TupleImpl<nr_socket_*&, unsigned long&, int&, void>(nr_socket_*&, unsigned long&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long, int>::TupleImpl<unsigned long&, int&, void>(unsigned long&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, int>::TupleImpl<int&, , void>(int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_socket_*, char const*, unsigned long>::TupleImpl<nr_socket_*&, nr_socket_*&, char const*&, unsigned long&, void>(nr_socket_*&, nr_socket_*&, char const*&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_socket_*, char const*, unsigned long>::TupleImpl<nr_socket_*&, char const*&, unsigned long&, void>(nr_socket_*&, char const*&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, char const*, unsigned long>::TupleImpl<char const*&, unsigned long&, void>(char const*&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_socket_*, nr_transport_addr_*, char const*, unsigned long>::TupleImpl<nr_socket_*&, nr_transport_addr_*&, char const*&, unsigned long&, void>(nr_socket_*&, nr_transport_addr_*&, char const*&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_transport_addr_*, char const*, unsigned long>::TupleImpl<nr_transport_addr_*&, char const*&, unsigned long&, void>(nr_transport_addr_*&, char const*&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nr_transport_addr_*, nr_socket_*, char const*, unsigned long>::TupleImpl<nr_transport_addr_*&, nr_socket_*&, char const*&, unsigned long&, void>(nr_transport_addr_*&, nr_socket_*&, char const*&, unsigned long&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool*>::TupleImpl<bool*, , void>(bool*&&)
Unexecuted instantiation: runnable_utils_unittest.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TargetClass*, int>::TupleImpl<(anonymous namespace)::TargetClass*, int, void>((anonymous namespace)::TargetClass*&&, int&&)
Unexecuted instantiation: runnable_utils_unittest.cpp:mozilla::detail::TupleImpl<0ul, RefPtr<(anonymous namespace)::Destructor> >::TupleImpl<RefPtr<(anonymous namespace)::Destructor>&, , void>(RefPtr<(anonymous namespace)::Destructor>&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsAutoPtr<mozilla::MediaPacket>, RefPtr<mozilla::TransportFlow>, mozilla::TransportLayerLoopback*>::TupleImpl<nsAutoPtr<mozilla::MediaPacket>&, RefPtr<mozilla::TransportFlow>&, mozilla::TransportLayerLoopback*&, void>(nsAutoPtr<mozilla::MediaPacket>&, RefPtr<mozilla::TransportFlow>&, mozilla::TransportLayerLoopback*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::TransportFlow>, mozilla::TransportLayerLoopback*>::TupleImpl<RefPtr<mozilla::TransportFlow>&, mozilla::TransportLayerLoopback*&, void>(RefPtr<mozilla::TransportFlow>&, mozilla::TransportLayerLoopback*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::TransportLayerLoopback*>::TupleImpl<mozilla::TransportLayerLoopback*&, , void>(mozilla::TransportLayerLoopback*&)
Unexecuted instantiation: sctp_unittest.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TransportTestPeer*>::TupleImpl<(anonymous namespace)::TransportTestPeer*&, , void>((anonymous namespace)::TransportTestPeer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, char const*, int>::TupleImpl<unsigned long&, char const*&, int&, void>(unsigned long&, char const*&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, char const*, int>::TupleImpl<char const*&, int&, void>(char const*&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, nr_transport_addr_*>::TupleImpl<mozilla::TestNrSocket*, nr_transport_addr_*, void>(mozilla::TestNrSocket*&&, nr_transport_addr_*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_transport_addr_*>::TupleImpl<nr_transport_addr_*, , void>(nr_transport_addr_*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, char const*, int>::TupleImpl<unsigned long, char const*, int, void>(unsigned long&&, char const*&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, char const*, int>::TupleImpl<char const*, int, void>(char const*&&, int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, int>::TupleImpl<int, , void>(int&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrSocketBase*, int>::TupleImpl<mozilla::NrSocketBase*&, int&, void>(mozilla::NrSocketBase*&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, nr_transport_addr_>::TupleImpl<mozilla::TestNrSocket*, nr_transport_addr_, void>(mozilla::TestNrSocket*&&, nr_transport_addr_&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nr_transport_addr_>::TupleImpl<nr_transport_addr_, , void>(nr_transport_addr_&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*>::TupleImpl<mozilla::TestNrSocket*, , void>(mozilla::TestNrSocket*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, mozilla::TestNrSocket*>::TupleImpl<mozilla::TestNrSocket*, mozilla::TestNrSocket*, void>(mozilla::TestNrSocket*&&, mozilla::TestNrSocket*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::TestNrSocket*>::TupleImpl<mozilla::TestNrSocket*, , void>(mozilla::TestNrSocket*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TestNrSocket*, mozilla::NrSocketBase**>::TupleImpl<mozilla::TestNrSocket*, mozilla::NrSocketBase**, void>(mozilla::TestNrSocket*&&, mozilla::NrSocketBase**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::NrSocketBase**>::TupleImpl<mozilla::NrSocketBase**, , void>(mozilla::NrSocketBase**&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::NrSocketBase*>::TupleImpl<mozilla::NrSocketBase*, , void>(mozilla::NrSocketBase*&&)
Unexecuted instantiation: transport_unittests.cpp:mozilla::detail::TupleImpl<0ul, (anonymous namespace)::TransportTestPeer*>::TupleImpl<(anonymous namespace)::TransportTestPeer*&, , void>((anonymous namespace)::TransportTestPeer*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned short*>::TupleImpl<unsigned short*, , void>(unsigned short*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TransportLayerDtls*, mozilla::MediaPacket*>::TupleImpl<mozilla::TransportLayerDtls*&, mozilla::MediaPacket*, void>(mozilla::TransportLayerDtls*&, mozilla::MediaPacket*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::MediaPacket*>::TupleImpl<mozilla::MediaPacket*, , void>(mozilla::MediaPacket*&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<char const*, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, void>(char const*&&, char const*&&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, void>(char const*&&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::TupleImpl<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, int>::TupleImpl<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl<js::NativeObject*&, JSObject*&, js::CrossCompartmentKey::DebuggerObjectKind&, void>(js::NativeObject*&, JSObject*&, js::CrossCompartmentKey::DebuggerObjectKind&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl<JSObject*&, js::CrossCompartmentKey::DebuggerObjectKind&, void>(JSObject*&, js::CrossCompartmentKey::DebuggerObjectKind&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl<js::CrossCompartmentKey::DebuggerObjectKind&, , void>(js::CrossCompartmentKey::DebuggerObjectKind&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>::TupleImpl<js::NativeObject*&, js::LazyScript*&, void>(js::NativeObject*&, js::LazyScript*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, js::LazyScript*>::TupleImpl<js::LazyScript*&, , void>(js::LazyScript*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>::TupleImpl<js::NativeObject*&, JSScript*&, void>(js::NativeObject*&, JSScript*&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSScript*>::TupleImpl<JSScript*&, , void>(JSScript*&)
mozilla::detail::TupleImpl<0ul, js::HelperThread*>::TupleImpl<js::HelperThread*, , void>(js::HelperThread*&&)
Line
Count
Source
145
24
    : Base(std::forward<OtherTailT>(aTail)...), mHead(std::forward<OtherHeadT>(aHead)) { }
mozilla::detail::TupleImpl<0ul, JSObject*>::TupleImpl<JSObject*&, , void>(JSObject*&)
Line
Count
Source
145
188
    : Base(std::forward<OtherTailT>(aTail)...), mHead(std::forward<OtherHeadT>(aHead)) { }
146
147
  // Copy and move constructors.
148
  // We'd like to use '= default' to implement these, but MSVC 2013's support
149
  // for '= default' is incomplete and this doesn't work.
150
  TupleImpl(const TupleImpl& aOther)
151
    : Base(Tail(aOther))
152
0
    , mHead(Head(aOther)) {}
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >::TupleImpl(mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >::TupleImpl(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>::TupleImpl(mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>::TupleImpl(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::TupleImpl(mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::TupleImpl(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, double>::TupleImpl(mozilla::detail::TupleImpl<2ul, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>::TupleImpl(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSScript*>::TupleImpl(mozilla::detail::TupleImpl<1ul, JSScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>::TupleImpl(mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, js::LazyScript*>::TupleImpl(mozilla::detail::TupleImpl<1ul, js::LazyScript*> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl(mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl(mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind> const&)
153
  TupleImpl(TupleImpl&& aOther)
154
    : Base(std::move(Tail(aOther)))
155
0
    , mHead(std::forward<HeadT>(Head(aOther))) {}
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >::TupleImpl(mozilla::detail::TupleImpl<0ul, bool, nsTString<char16_t> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >::TupleImpl(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>::TupleImpl(mozilla::detail::TupleImpl<0ul, bool, mozilla::CopyableErrorResult>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>::TupleImpl(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::Runnable> >::TupleImpl(mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::Runnable> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::ReentrantMonitor*, bool*>::TupleImpl(mozilla::detail::TupleImpl<1ul, mozilla::ReentrantMonitor*, bool*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, bool*>::TupleImpl(mozilla::detail::TupleImpl<2ul, bool*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::layers::TextureDeallocParams>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, mozilla::layers::LayersIPCChannel*>::TupleImpl(mozilla::detail::TupleImpl<0ul, unsigned long, mozilla::layers::LayersIPCChannel*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::LayersIPCChannel*>::TupleImpl(mozilla::detail::TupleImpl<1ul, mozilla::layers::LayersIPCChannel*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, unsigned long*>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, unsigned long*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long*>::TupleImpl(mozilla::detail::TupleImpl<1ul, unsigned long*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::layers::GeckoContentController*>::TupleImpl(mozilla::detail::TupleImpl<1ul, mozilla::layers::GeckoContentController*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::TimeStamp>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::TimeStamp>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::GPUProcessHost*>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::gfx::GPUProcessHost*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::VRManagerChild> >::TupleImpl(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::VRManagerChild> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRManagerParent*>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRManagerParent*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRProcessParent*>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::gfx::VRProcessParent*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::TupleImpl(mozilla::detail::TupleImpl<1ul, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::TimeStamp, mozilla::TimeStamp>::TupleImpl(mozilla::detail::TupleImpl<2ul, mozilla::TimeStamp, mozilla::TimeStamp>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, mozilla::TimeStamp>::TupleImpl(mozilla::detail::TupleImpl<3ul, mozilla::TimeStamp>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::wr::WebRenderError>::TupleImpl(mozilla::detail::TupleImpl<1ul, mozilla::wr::WebRenderError>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char> >::TupleImpl(mozilla::detail::TupleImpl<0ul, nsTString<char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<unsigned char> >::TupleImpl(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<unsigned char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<unsigned char> >::TupleImpl(mozilla::detail::TupleImpl<1ul, nsTArray<unsigned char> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentProcessHost*>::TupleImpl(mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentProcessHost*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, bool>::TupleImpl(mozilla::detail::TupleImpl<0ul, int, bool>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, bool>::TupleImpl(mozilla::detail::TupleImpl<1ul, bool>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<int>, long>::TupleImpl(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTArray<int>, long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<int>, long>::TupleImpl(mozilla::detail::TupleImpl<1ul, nsTArray<int>, long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, long>::TupleImpl(mozilla::detail::TupleImpl<2ul, long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char>, nsTArray<int>, long>::TupleImpl(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char>, nsTArray<int>, long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTArray<int>, long>::TupleImpl(mozilla::detail::TupleImpl<1ul, nsTString<char>, nsTArray<int>, long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsTArray<int>, long>::TupleImpl(mozilla::detail::TupleImpl<2ul, nsTArray<int>, long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, long>::TupleImpl(mozilla::detail::TupleImpl<3ul, long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int>::TupleImpl(mozilla::detail::TupleImpl<0ul, char const*, nsCOMPtr<nsIVariant>, unsigned int>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int>::TupleImpl(mozilla::detail::TupleImpl<1ul, nsCOMPtr<nsIVariant>, unsigned int>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned int>::TupleImpl(mozilla::detail::TupleImpl<2ul, unsigned int>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::TupleImpl(mozilla::detail::TupleImpl<0ul, char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::TupleImpl(mozilla::detail::TupleImpl<1ul, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::TupleImpl(mozilla::detail::TupleImpl<0ul, nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::TupleImpl(mozilla::detail::TupleImpl<1ul, nsTString<char16_t>, nsCOMPtr<nsIVariant> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, nsCOMPtr<nsIVariant> >::TupleImpl(mozilla::detail::TupleImpl<2ul, nsCOMPtr<nsIVariant> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::TupleImpl(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>::TupleImpl(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSScript*>::TupleImpl(mozilla::detail::TupleImpl<1ul, JSScript*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>::TupleImpl(mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, js::LazyScript*>::TupleImpl(mozilla::detail::TupleImpl<1ul, js::LazyScript*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl(mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>::TupleImpl(mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>&&)
156
157
  // Assign from a tuple whose elements are convertible to the elements
158
  // of this tuple.
159
  template <typename... OtherElements,
160
            typename = typename EnableIf<
161
                sizeof...(OtherElements) == sizeof...(TailT) + 1>::Type>
162
  TupleImpl& operator=(const TupleImpl<Index, OtherElements...>& aOther)
163
0
  {
164
0
    typedef TupleImpl<Index, OtherElements...> OtherT;
165
0
    Head(*this) = OtherT::Head(aOther);
166
0
    Tail(*this) = OtherT::Tail(aOther);
167
0
    return *this;
168
0
  }
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool&, nsTString<char16_t>&>& mozilla::detail::TupleImpl<0ul, bool&, nsTString<char16_t>&>::operator=<bool const&, nsTString<char16_t> const&, void>(mozilla::detail::TupleImpl<0ul, bool const&, nsTString<char16_t> const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, nsTString<char16_t>&>& mozilla::detail::TupleImpl<1ul, nsTString<char16_t>&>::operator=<nsTString<char16_t> const&, void>(mozilla::detail::TupleImpl<1ul, nsTString<char16_t> const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, bool&, mozilla::CopyableErrorResult&>& mozilla::detail::TupleImpl<0ul, bool&, mozilla::CopyableErrorResult&>::operator=<bool const&, mozilla::CopyableErrorResult const&, void>(mozilla::detail::TupleImpl<0ul, bool const&, mozilla::CopyableErrorResult const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult&>& mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult&>::operator=<mozilla::CopyableErrorResult const&, void>(mozilla::detail::TupleImpl<1ul, mozilla::CopyableErrorResult const&> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>& mozilla::detail::TupleImpl<0ul, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::operator=<unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(mozilla::detail::TupleImpl<0ul, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>& mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::operator=<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>& mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::operator=<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(mozilla::detail::TupleImpl<2ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
169
  template <typename... OtherElements,
170
            typename = typename EnableIf<
171
                sizeof...(OtherElements) == sizeof...(TailT) + 1>::Type>
172
  TupleImpl& operator=(TupleImpl<Index, OtherElements...>&& aOther)
173
0
  {
174
0
    typedef TupleImpl<Index, OtherElements...> OtherT;
175
0
    Head(*this) = std::move(OtherT::Head(aOther));
176
0
    Tail(*this) = std::move(OtherT::Tail(aOther));
177
0
    return *this;
178
0
  }
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&>& mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&>::operator=<unsigned int, unsigned long, unsigned long, void>(mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&>& mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&>::operator=<unsigned long, unsigned long, void>(mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long&>& mozilla::detail::TupleImpl<2ul, unsigned long&>::operator=<unsigned long, void>(mozilla::detail::TupleImpl<2ul, unsigned long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&, bool&>& mozilla::detail::TupleImpl<0ul, unsigned int&, unsigned long&, unsigned long&, bool&>::operator=<unsigned int, unsigned long, unsigned long, bool, void>(mozilla::detail::TupleImpl<0ul, unsigned int, unsigned long, unsigned long, bool>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&, bool&>& mozilla::detail::TupleImpl<1ul, unsigned long&, unsigned long&, bool&>::operator=<unsigned long, unsigned long, bool, void>(mozilla::detail::TupleImpl<1ul, unsigned long, unsigned long, bool>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, unsigned long&, bool&>& mozilla::detail::TupleImpl<2ul, unsigned long&, bool&>::operator=<unsigned long, bool, void>(mozilla::detail::TupleImpl<2ul, unsigned long, bool>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<3ul, bool&>& mozilla::detail::TupleImpl<3ul, bool&>::operator=<bool, void>(mozilla::detail::TupleImpl<3ul, bool>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, nsresult&, mozilla::Encoding const*&>& mozilla::detail::TupleImpl<0ul, nsresult&, mozilla::Encoding const*&>::operator=<nsresult, mozilla::NotNull<mozilla::Encoding const*>, void>(mozilla::detail::TupleImpl<0ul, nsresult, mozilla::NotNull<mozilla::Encoding const*> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Encoding const*&>& mozilla::detail::TupleImpl<1ul, mozilla::Encoding const*&>::operator=<mozilla::NotNull<mozilla::Encoding const*>, void>(mozilla::detail::TupleImpl<1ul, mozilla::NotNull<mozilla::Encoding const*> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*&, unsigned long&>& mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*&, unsigned long&>::operator=<mozilla::Encoding const*, unsigned long, void>(mozilla::detail::TupleImpl<0ul, mozilla::Encoding const*, unsigned long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, unsigned long&>& mozilla::detail::TupleImpl<1ul, unsigned long&>::operator=<unsigned long, void>(mozilla::detail::TupleImpl<1ul, unsigned long>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>& mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::operator=<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::detail::TupleImpl<0ul, mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>& mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::operator=<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::detail::TupleImpl<1ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface>&>& mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface>&>::operator=<RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::detail::TupleImpl<2ul, RefPtr<mozilla::gfx::SourceSurface> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::detail::TupleImpl<0ul, already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::detail::TupleImpl<1ul, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::detail::TupleImpl<2ul, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int&, mozilla::Maybe<mozilla::image::WriteState>&>& mozilla::detail::TupleImpl<0ul, int&, mozilla::Maybe<mozilla::image::WriteState>&>::operator=<int, mozilla::Maybe<mozilla::image::WriteState>, void>(mozilla::detail::TupleImpl<0ul, int, mozilla::Maybe<mozilla::image::WriteState> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState>&>& mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState>&>::operator=<mozilla::Maybe<mozilla::image::WriteState>, void>(mozilla::detail::TupleImpl<1ul, mozilla::Maybe<mozilla::image::WriteState> >&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>& mozilla::detail::TupleImpl<0ul, RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>::operator=<mozilla::dom::ContentParent*, mozilla::dom::TabParent*, void>(mozilla::detail::TupleImpl<0ul, mozilla::dom::ContentParent*, mozilla::dom::TabParent*>&&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::TabParent>&>& mozilla::detail::TupleImpl<1ul, RefPtr<mozilla::dom::TabParent>&>::operator=<mozilla::dom::TabParent*, void>(mozilla::detail::TupleImpl<1ul, mozilla::dom::TabParent*>&&)
179
180
  // Copy and move assignment operators.
181
  TupleImpl& operator=(const TupleImpl& aOther)
182
0
  {
183
0
    Head(*this) = Head(aOther);
184
0
    Tail(*this) = Tail(aOther);
185
0
    return *this;
186
0
  }
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::operator=(mozilla::detail::TupleImpl<0ul, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::operator=(mozilla::detail::TupleImpl<1ul, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, double>::operator=(mozilla::detail::TupleImpl<2ul, double> const&)
187
  TupleImpl& operator=(TupleImpl&& aOther)
188
  {
189
    Head(*this) = std::move(Head(aOther));
190
    Tail(*this) = std::move(Tail(aOther));
191
    return *this;
192
  }
193
  bool operator==(const TupleImpl& aOther) const
194
0
  {
195
0
    return Head(*this) == Head(aOther) && Tail(*this) == Tail(aOther);
196
0
  }
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*>::operator==(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSScript*> const&) const
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSScript*>::operator==(mozilla::detail::TupleImpl<1ul, JSScript*> const&) const
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*>::operator==(mozilla::detail::TupleImpl<0ul, js::NativeObject*, js::LazyScript*> const&) const
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, js::LazyScript*>::operator==(mozilla::detail::TupleImpl<1ul, js::LazyScript*> const&) const
Unexecuted instantiation: mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::operator==(mozilla::detail::TupleImpl<0ul, js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&) const
Unexecuted instantiation: mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::operator==(mozilla::detail::TupleImpl<1ul, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&) const
Unexecuted instantiation: mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind>::operator==(mozilla::detail::TupleImpl<2ul, js::CrossCompartmentKey::DebuggerObjectKind> const&) const
197
198
  template <typename F>
199
  void ForEach(const F& aFunc) const &
200
  {
201
    aFunc(Head(*this));
202
    Tail(*this).ForEach(aFunc);
203
  }
204
205
  template <typename F>
206
  void ForEach(const F& aFunc) &
207
0
  {
208
0
    aFunc(Head(*this));
209
0
    Tail(*this).ForEach(aFunc);
210
0
  }
Unexecuted instantiation: _ZNR7mozilla6detail9TupleImplILm0EJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS2_INS_10extensions25WebExtensionContentScriptEELm8EEEE7ForEachIZ27ImplCycleCollectionTraverseIJS4_S7_SC_EEvR34nsCycleCollectionTraversalCallbackRNS_5TupleIJDpT_EEEPKcjEUlRT_E_EEvRKSP_
Unexecuted instantiation: _ZNR7mozilla6detail9TupleImplILm1EJ8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayI6RefPtrINS_10extensions25WebExtensionContentScriptEELm8EEEE7ForEachIZ27ImplCycleCollectionTraverseIJS6_INS_22ExtensionPolicyServiceEES4_SA_EEvR34nsCycleCollectionTraversalCallbackRNS_5TupleIJDpT_EEEPKcjEUlRT_E_EEvRKSP_
Unexecuted instantiation: _ZNR7mozilla6detail9TupleImplILm2EJ10AutoTArrayI6RefPtrINS_10extensions25WebExtensionContentScriptEELm8EEEE7ForEachIZ27ImplCycleCollectionTraverseIJS3_INS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerES7_EEvR34nsCycleCollectionTraversalCallbackRNS_5TupleIJDpT_EEEPKcjEUlRT_E_EEvRKSP_
Unexecuted instantiation: _ZNR7mozilla6detail9TupleImplILm0EJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS2_INS_10extensions25WebExtensionContentScriptEELm8EEEE7ForEachIZ25ImplCycleCollectionUnlinkIJS4_S7_SC_EEvRNS_5TupleIJDpT_EEEEUlRT_E_EEvRKSL_
Unexecuted instantiation: _ZNR7mozilla6detail9TupleImplILm1EJ8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayI6RefPtrINS_10extensions25WebExtensionContentScriptEELm8EEEE7ForEachIZ25ImplCycleCollectionUnlinkIJS6_INS_22ExtensionPolicyServiceEES4_SA_EEvRNS_5TupleIJDpT_EEEEUlRT_E_EEvRKSL_
Unexecuted instantiation: _ZNR7mozilla6detail9TupleImplILm2EJ10AutoTArrayI6RefPtrINS_10extensions25WebExtensionContentScriptEELm8EEEE7ForEachIZ25ImplCycleCollectionUnlinkIJS3_INS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerES7_EEvRNS_5TupleIJDpT_EEEEUlRT_E_EEvRKSL_
211
212
  template <typename F>
213
  void ForEach(const F& aFunc) &&
214
  {
215
    aFunc(std::move(Head(*this)));
216
    std::move(Tail(*this)).ForEach(aFunc);
217
  }
218
private:
219
  HeadT mHead;  // The element stored at this index in the tuple.
220
};
221
222
} // namespace detail
223
224
/**
225
 * Tuple is a class that stores zero or more objects, whose types are specified
226
 * as template parameters. It can be thought of as a generalization of Pair,
227
 * (which can be thought of as a 2-tuple).
228
 *
229
 * Tuple allows index-based access to its elements (with the index having to be
230
 * known at compile time) via the non-member function 'Get<N>(tuple)'.
231
 */
232
template<typename... Elements>
233
class Tuple : public detail::TupleImpl<0, Elements...>
234
{
235
  typedef detail::TupleImpl<0, Elements...> Impl;
236
public:
237
  // The constructors and assignment operators here are simple wrappers
238
  // around those in TupleImpl.
239
240
  Tuple() : Impl() { }
241
0
  explicit Tuple(const Elements&... aElements) : Impl(aElements...) { }
Unexecuted instantiation: mozilla::Tuple<unsigned int&, unsigned long&, unsigned long&>::Tuple(unsigned int&, unsigned long&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<unsigned int&, unsigned long&, unsigned long&, bool&>::Tuple(unsigned int&, unsigned long&, unsigned long&, bool&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::TransportFlow> >::Tuple(RefPtr<mozilla::TransportFlow> const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositableHandle>::Tuple(mozilla::layers::CompositableHandle const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::Tuple(mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tuple(RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::gmp::GMPParent> >::Tuple(RefPtr<mozilla::gmp::GMPParent> const&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char> >::Tuple(nsTString<char> const&)
Unexecuted instantiation: mozilla::Tuple<UDPAddressInfo>::Tuple(UDPAddressInfo const&)
Unexecuted instantiation: mozilla::Tuple<char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::Tuple(char const* const&, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > > const&, unsigned int const&)
Unexecuted instantiation: mozilla::Tuple<unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::Tuple(unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
242
  // Here, we can't just use 'typename... OtherElements' because MSVC will give
243
  // a warning "C4520: multiple default constructors specified" (even if no one
244
  // actually instantiates the constructor with an empty parameter pack -
245
  // that's probably a bug) and we compile with warnings-as-errors.
246
  template <typename OtherHead, typename... OtherTail,
247
            typename = typename EnableIf<
248
                detail::CheckConvertibility<
249
                    detail::Group<OtherHead, OtherTail...>,
250
                    detail::Group<Elements...>>::value>::Type>
251
  explicit Tuple(OtherHead&& aHead, OtherTail&&... aTail)
252
212
    : Impl(std::forward<OtherHead>(aHead), std::forward<OtherTail>(aTail)...) { }
Unexecuted instantiation: mozilla::Tuple<unsigned int, unsigned long, unsigned long>::Tuple<unsigned int&, unsigned long&, unsigned long&, void>(unsigned int&, unsigned long&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<unsigned int, unsigned long, unsigned long, bool>::Tuple<unsigned int&, unsigned long&, unsigned long&, bool&, void>(unsigned int&, unsigned long&, unsigned long&, bool&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::ConnectionData> >::Tuple<mozilla::net::ConnectionData*, , void>(mozilla::net::ConnectionData*&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::LookupArgument> >::Tuple<RefPtr<mozilla::net::LookupArgument>&, , void>(RefPtr<mozilla::net::LookupArgument>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::SocketData> >::Tuple<RefPtr<mozilla::net::SocketData>&, , void>(RefPtr<mozilla::net::SocketData>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::HttpData> >::Tuple<RefPtr<mozilla::net::HttpData>&, , void>(RefPtr<mozilla::net::HttpData>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::WebSocketRequest> >::Tuple<RefPtr<mozilla::net::WebSocketRequest>&, , void>(RefPtr<mozilla::net::WebSocketRequest>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::DnsData> >::Tuple<RefPtr<mozilla::net::DnsData>&, , void>(RefPtr<mozilla::net::DnsData>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::RcwnData> >::Tuple<RefPtr<mozilla::net::RcwnData>&, , void>(RefPtr<mozilla::net::RcwnData>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::ConnectionData> >::Tuple<RefPtr<mozilla::net::ConnectionData>&, , void>(RefPtr<mozilla::net::ConnectionData>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<bool&, bool&, nsresult&, nsTString<char>&, void>(bool&, bool&, nsresult&, nsTString<char>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<double> >::Tuple<double&, , void>(double&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<nsILoadContextInfo>, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Tuple<nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&, void>(nsILoadContextInfo*&, bool&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<nsTString<char>&, , void>(nsTString<char>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<unsigned long const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Tuple<nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&, void>(nsresult const&, nsresult const&, unsigned long const&, unsigned int const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::TimeStamp const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Tuple<nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&, void>(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::TimeStamp const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const> >::Tuple<nsresult const&, , void>(nsresult const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsresult const>, StoreCopyPassByConstLRef<mozilla::net::ResourceTimingStruct const>, StoreCopyPassByConstLRef<mozilla::net::nsHttpHeaderArray const> >::Tuple<nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&, void>(nsresult const&, mozilla::net::ResourceTimingStruct const&, mozilla::net::nsHttpHeaderArray const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool> >::Tuple<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Tuple<nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&, void>(nsTSubstring<char> const&, nsTSubstring<char> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >::Tuple<nsresult&, , void>(nsresult&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Tuple<nsTString<char> const&, nsTString<char> const&, nsTString<char> const&, void>(nsTString<char> const&, nsTString<char> const&, nsTString<char> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsresult> >::Tuple<nsresult const&, , void>(nsresult const&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild> >::Tuple<RefPtr<mozilla::net::HttpChannelChild>, , void>(RefPtr<mozilla::net::HttpChannelChild>&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::net::HttpChannelChild> >::Tuple<RefPtr<mozilla::net::HttpChannelChild>&, , void>(RefPtr<mozilla::net::HttpChannelChild>&)
Unexecuted instantiation: mozilla::Tuple<nsAutoPtr<mozilla::MediaPacket> >::Tuple<nsAutoPtr<mozilla::MediaPacket>&, , void>(nsAutoPtr<mozilla::MediaPacket>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>, , void>(mozilla::ipc::Endpoint<mozilla::ipc::PBackgroundParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::Tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<IPC::Message> >::Tuple<IPC::Message*&, , void>(IPC::Message*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long> >::Tuple<unsigned long, , void>(unsigned long&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozIStorageError> >::Tuple<mozIStorageError*&, , void>(mozIStorageError*&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::storage::ResultSet> >::Tuple<already_AddRefed<mozilla::storage::ResultSet>, , void>(already_AddRefed<mozilla::storage::ResultSet>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> const> >::Tuple<nsTLiteralString<char> const&, , void>(nsTLiteralString<char> const&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::WebrtcGmpVideoEncoder>, GMPVideoCodec, int, unsigned int, RefPtr<mozilla::GmpInitDoneRunnable> >::Tuple<RefPtr<mozilla::WebrtcGmpVideoEncoder>, GMPVideoCodec&, int&, unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(RefPtr<mozilla::WebrtcGmpVideoEncoder>&&, GMPVideoCodec&, int&, unsigned int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::WebrtcGmpVideoEncoder>, webrtc::VideoFrame, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > >::Tuple<RefPtr<mozilla::WebrtcGmpVideoEncoder>, webrtc::VideoFrame const&, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > const&, void>(RefPtr<mozilla::WebrtcGmpVideoEncoder>&&, webrtc::VideoFrame const&, std::__1::vector<webrtc::FrameType, std::__1::allocator<webrtc::FrameType> > const&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::WebrtcGmpVideoEncoder> >::Tuple<RefPtr<mozilla::WebrtcGmpVideoEncoder>, , void>(RefPtr<mozilla::WebrtcGmpVideoEncoder>&&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::WebrtcGmpVideoEncoder>, unsigned int, unsigned int>::Tuple<RefPtr<mozilla::WebrtcGmpVideoEncoder>, unsigned int&, unsigned int&, void>(RefPtr<mozilla::WebrtcGmpVideoEncoder>&&, unsigned int&, unsigned int&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::WebrtcGmpVideoDecoder>, webrtc::VideoCodec const*, int, RefPtr<mozilla::GmpInitDoneRunnable> >::Tuple<RefPtr<mozilla::WebrtcGmpVideoDecoder>, webrtc::VideoCodec const*&, int&, RefPtr<mozilla::GmpInitDoneRunnable>&, void>(RefPtr<mozilla::WebrtcGmpVideoDecoder>&&, webrtc::VideoCodec const*&, int&, RefPtr<mozilla::GmpInitDoneRunnable>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::WebrtcGmpVideoDecoder> >::Tuple<RefPtr<mozilla::WebrtcGmpVideoDecoder>, , void>(RefPtr<mozilla::WebrtcGmpVideoDecoder>&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::layers::Image>, StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >, StoreCopyPassByConstLRef<bool> >::Tuple<mozilla::layers::Image*, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&, void>(mozilla::layers::Image*&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, bool&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::TransportFlow>, RefPtr<mozilla::TransportFlow>, nsAutoPtr<mozilla::MediaPipelineFilter> >::Tuple<RefPtr<mozilla::TransportFlow>&, RefPtr<mozilla::TransportFlow>&, nsAutoPtr<mozilla::MediaPipelineFilter>&, void>(RefPtr<mozilla::TransportFlow>&, RefPtr<mozilla::TransportFlow>&, nsAutoPtr<mozilla::MediaPipelineFilter>&)
Unexecuted instantiation: mozilla::Tuple<unsigned long>::Tuple<unsigned long&, , void>(unsigned long&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, , void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::WebrtcGlobalChild*, int, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::Tuple<mozilla::dom::WebrtcGlobalChild*&, int const&, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&, void>(mozilla::dom::WebrtcGlobalChild*&, int const&, nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::WebrtcGlobalChild*, int, char const*>::Tuple<mozilla::dom::WebrtcGlobalChild*&, int const&, char const*, void>(mozilla::dom::WebrtcGlobalChild*&, int const&, char const*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::WebrtcGlobalChild*, int, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > > >::Tuple<mozilla::dom::WebrtcGlobalChild*&, int const&, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&, void>(mozilla::dom::WebrtcGlobalChild*&, int const&, nsAutoPtr<std::__1::deque<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >&)
Unexecuted instantiation: mozilla::Tuple<nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> > >::Tuple<nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&, , void>(nsAutoPtr<mozilla::Vector<nsAutoPtr<mozilla::RTCStatsQuery>, 0ul, mozilla::MallocAllocPolicy> >&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::Tuple<nsCOMPtr<nsIWeakReference>, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple<nsCOMPtr<nsIWeakReference>&, unsigned short&, 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&, void>(nsCOMPtr<nsIWeakReference>&, unsigned short&, 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: Unified_cpp_src_peerconnection0.cpp:mozilla::Tuple<mozilla::dom::PCObserverStateType, (anonymous namespace)::WrappableJSErrorResult, JS::Realm*>::Tuple<mozilla::dom::PCObserverStateType, (anonymous namespace)::WrappableJSErrorResult&, JS::Realm*, void>(mozilla::dom::PCObserverStateType&&, (anonymous namespace)::WrappableJSErrorResult&, JS::Realm*&&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long>::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned long&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Tuple<std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, , void>(std::__1::set<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::less<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Tuple<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&, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, void>(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&, unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::PeerConnectionMedia>, nsAutoPtr<mozilla::PacketDumper>, RefPtr<mozilla::TransportFlow>, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*>::Tuple<RefPtr<mozilla::PeerConnectionMedia>&, nsAutoPtr<mozilla::PacketDumper>&, RefPtr<mozilla::TransportFlow>&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*, mozilla::TransportLayerDtls*, mozilla::TransportLayerSrtp*, void>(RefPtr<mozilla::PeerConnectionMedia>&, nsAutoPtr<mozilla::PacketDumper>&, RefPtr<mozilla::TransportFlow>&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool&, mozilla::TransportLayerIce*&&, mozilla::TransportLayerDtls*&&, mozilla::TransportLayerSrtp*&&)
Unexecuted instantiation: mozilla::Tuple<bool, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Tuple<bool, bool, bool, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, void>(bool&&, bool&&, bool&&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::Tuple<bool>::Tuple<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple<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> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(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> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::WebrtcGlobalChild*, int, char const*>::Tuple<mozilla::dom::WebrtcGlobalChild*, int const&, char const*, void>(mozilla::dom::WebrtcGlobalChild*&&, int const&, char const*&&)
Unexecuted instantiation: mozilla::Tuple<nsAutoPtr<mozilla::RTCStatsQuery> >::Tuple<nsAutoPtr<mozilla::RTCStatsQuery>&, , void>(nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::nr_udp_message> >::Tuple<RefPtr<mozilla::nr_udp_message>&, , void>(RefPtr<mozilla::nr_udp_message>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::TCPSocketChild*>::Tuple<mozilla::dom::TCPSocketChild*, , void>(mozilla::dom::TCPSocketChild*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::NrSocketIpc::NrSocketIpcState>::Tuple<mozilla::NrSocketIpc::NrSocketIpcState&, , void>(mozilla::NrSocketIpc::NrSocketIpcState&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::nr_tcp_message> >::Tuple<RefPtr<mozilla::nr_tcp_message>&, , void>(RefPtr<mozilla::nr_tcp_message>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::NrSocketIpc::NrSocketIpcState>::Tuple<mozilla::NrSocketIpc::NrSocketIpcState, , void>(mozilla::NrSocketIpc::NrSocketIpcState&&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, unsigned short, nsTString<char>, unsigned short, nsTString<char> >::Tuple<nsTString<char>&, unsigned short, nsTString<char>&, unsigned short, nsTString<char>, void>(nsTString<char>&, unsigned short&&, nsTString<char>&, unsigned short&&, nsTString<char>&&)
Unexecuted instantiation: mozilla::Tuple<nsAutoPtr<std::__1::deque<mozilla::TransportLayer*, std::__1::allocator<mozilla::TransportLayer*> > > >::Tuple<nsAutoPtr<std::__1::deque<mozilla::TransportLayer*, std::__1::allocator<mozilla::TransportLayer*> > >&, , void>(nsAutoPtr<std::__1::deque<mozilla::TransportLayer*, std::__1::allocator<mozilla::TransportLayer*> > >&)
Unexecuted instantiation: mozilla::Tuple<nsTArray<mozilla::NrIceStunAddr> >::Tuple<nsTArray<mozilla::NrIceStunAddr>, , void>(nsTArray<mozilla::NrIceStunAddr>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >::Tuple<mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> >, , void>(mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> >&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch>, StoreCopyPassByConstLRef<int> >::Tuple<mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&, void>(mozilla::layers::LayersId&, mozilla::layers::LayersObserverEpoch&, bool&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >::Tuple<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, , void>(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<mozilla::layers::FocusTarget> >::Tuple<mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&, void>(mozilla::layers::LayersId&, mozilla::layers::LayersId&, mozilla::layers::FocusTarget const&)
Unexecuted instantiation: mozilla::Tuple<already_AddRefed<mozilla::Runnable> >::Tuple<already_AddRefed<mozilla::Runnable>, , void>(already_AddRefed<mozilla::Runnable>&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController> >::Tuple<mozilla::layers::AsyncPanZoomController*, , void>(mozilla::layers::AsyncPanZoomController*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> >, StoreRefPtrPassByPtr<mozilla::layers::OverscrollHandoffChain const>, StoreRefPtrPassByPtr<mozilla::layers::AsyncPanZoomController const> >::Tuple<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&, void>(mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, RefPtr<mozilla::layers::OverscrollHandoffChain const>&, RefPtr<mozilla::layers::AsyncPanZoomController const>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::Tuple<mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid, unsigned long, void>(mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, mozilla::layers::ScrollableLayerGuid&&, unsigned long&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool> >::Tuple<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::Element> >::Tuple<nsCOMPtr<mozilla::dom::Element>&, , void>(nsCOMPtr<mozilla::dom::Element>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::Tuple<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior, void>(mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float>&, mozilla::layers::ZoomToRectBehavior&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::TapType>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<unsigned long> >::Tuple<mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&, void>(mozilla::layers::GeckoContentController::TapType&, mozilla::gfx::PointTyped<mozilla::LayoutDevicePixel, float> const&, unsigned short&, mozilla::layers::ScrollableLayerGuid const&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::PinchGestureInput::PinchGestureType>, StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float> >, StoreCopyPassByConstLRef<unsigned short> >::Tuple<mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&, void>(mozilla::PinchGestureInput::PinchGestureType&, mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::CoordTyped<mozilla::LayoutDevicePixel, float>&, unsigned short&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::GeckoContentController::APZStateChange>, StoreCopyPassByConstLRef<int> >::Tuple<mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::GeckoContentController::APZStateChange&, int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long> >::Tuple<unsigned long const&, , void>(unsigned long const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid> >::Tuple<mozilla::layers::ScrollableLayerGuid const&, , void>(mozilla::layers::ScrollableLayerGuid const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>::Tuple<mozilla::layers::TextureDeallocParams&, mozilla::ReentrantMonitor*, bool*, void>(mozilla::layers::TextureDeallocParams&, mozilla::ReentrantMonitor*&&, bool*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::TextureDeallocParams>::Tuple<mozilla::layers::TextureDeallocParams&, , void>(mozilla::layers::TextureDeallocParams&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap> >::Tuple<mozilla::layers::KeyboardMap const&, , void>(mozilla::layers::KeyboardMap const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::Tuple<mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<float> >::Tuple<float const&, , void>(float const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool> >::Tuple<bool const&, , void>(bool const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<base::FileDescriptor>, StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreCopyPassByConstLRef<unsigned int> >::Tuple<base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&, void>(base::FileDescriptor&, base::FileDescriptor&, mozilla::layers::LayersId&, unsigned int&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::LayersId>::Tuple<mozilla::layers::LayersId&, , void>(mozilla::layers::LayersId&)
Unexecuted instantiation: mozilla::Tuple<mozilla::TimeStamp>::Tuple<mozilla::TimeStamp&, , void>(mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PCompositorManagerParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::TimeStamp> >::Tuple<mozilla::TimeStamp&, , void>(mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::layers::ImageContainer> >::Tuple<RefPtr<mozilla::layers::ImageContainer>&, , void>(RefPtr<mozilla::layers::ImageContainer>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::SynchronousTask*, mozilla::layers::ImageClient*, mozilla::layers::ImageContainer*>::Tuple<mozilla::layers::SynchronousTask*, mozilla::layers::ImageClient*&, mozilla::layers::ImageContainer*&, void>(mozilla::layers::SynchronousTask*&&, mozilla::layers::ImageClient*&, mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild> > >::Tuple<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeChild>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::SynchronousTask*>::Tuple<mozilla::layers::SynchronousTask*, , void>(mozilla::layers::SynchronousTask*&&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::layers::ImageBridgeParent> >::Tuple<RefPtr<mozilla::layers::ImageBridgeParent>&, , void>(RefPtr<mozilla::layers::ImageBridgeParent>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::SynchronousTask*, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType, mozilla::layers::ImageContainer*>::Tuple<mozilla::layers::SynchronousTask*, RefPtr<mozilla::layers::ImageClient>*, mozilla::layers::CompositableType&, mozilla::layers::ImageContainer*&, void>(mozilla::layers::SynchronousTask*&&, RefPtr<mozilla::layers::ImageClient>*&&, mozilla::layers::CompositableType&, mozilla::layers::ImageContainer*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::SynchronousTask*, mozilla::layers::CanvasClient::CanvasClientType, mozilla::layers::TextureFlags, RefPtr<mozilla::layers::CanvasClient>*>::Tuple<mozilla::layers::SynchronousTask*, mozilla::layers::CanvasClient::CanvasClientType&, mozilla::layers::TextureFlags&, RefPtr<mozilla::layers::CanvasClient>*, void>(mozilla::layers::SynchronousTask*&&, mozilla::layers::CanvasClient::CanvasClientType&, mozilla::layers::TextureFlags&, RefPtr<mozilla::layers::CanvasClient>*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::SynchronousTask*, mozilla::ipc::Shmem*, bool*>::Tuple<mozilla::layers::SynchronousTask*, mozilla::ipc::Shmem*, bool*, void>(mozilla::layers::SynchronousTask*&&, mozilla::ipc::Shmem*&&, bool*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PImageBridgeParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<float>, StoreCopyPassByConstLRef<bool> >::Tuple<float&, float&, bool&, void>(float&, float&, bool&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild> > >::Tuple<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerChild>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>, , void>(mozilla::ipc::Endpoint<mozilla::layers::PUiCompositorControllerParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<int> >::Tuple<int&, , void>(int&)
Unexecuted instantiation: mozilla::Tuple<int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Tuple<int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, double&, void>(int&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, double&)
Unexecuted instantiation: mozilla::Tuple<mozilla::gfx::GPUProcessHost*>::Tuple<mozilla::gfx::GPUProcessHost*, , void>(mozilla::gfx::GPUProcessHost*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild> > >::Tuple<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>, , void>(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeChild>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>, , void>(mozilla::ipc::Endpoint<mozilla::gfx::PVsyncBridgeParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::SurfaceDescriptor>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> >, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> > >::Tuple<mozilla::layers::SurfaceDescriptor const&, unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, void>(mozilla::layers::SurfaceDescriptor const&, unsigned long&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&, mozilla::gfx::RectTyped<mozilla::gfx::UnknownUnits, float> const&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<vr::IVRSystem>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Tuple<vr::IVRSystem*&, unsigned int&, double&, double, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(vr::IVRSystem*&, unsigned int&, double&, double&&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Tuple<mozilla::gfx::VRManagerPromise const&, , void>(mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<vr::IVRSystem>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<mozilla::gfx::VRManagerPromise> >::Tuple<vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&, void>(vr::IVRSystem*&, unsigned int&, double&, double&, unsigned long&, mozilla::gfx::VRManagerPromise const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::TimeStamp> >::Tuple<mozilla::TimeStamp, , void>(mozilla::TimeStamp&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>, , void>(mozilla::ipc::Endpoint<mozilla::gfx::PVRGPUParent>&&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::gfx::VRManagerChild> >::Tuple<RefPtr<mozilla::gfx::VRManagerChild>&, , void>(RefPtr<mozilla::gfx::VRManagerChild>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int> >::Tuple<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>, , void>(mozilla::ipc::Endpoint<mozilla::gfx::PVRManagerParent>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::gfx::VRManagerParent*>::Tuple<mozilla::gfx::VRManagerParent*, , void>(mozilla::gfx::VRManagerParent*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::gfx::VRProcessParent*>::Tuple<mozilla::gfx::VRProcessParent*, , void>(mozilla::gfx::VRProcessParent*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::wr::WrWindowId> >::Tuple<mozilla::wr::WrWindowId&, , void>(mozilla::wr::WrWindowId&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::Tuple<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo&, mozilla::TimeStamp const&, mozilla::TimeStamp&, void>(mozilla::layers::CompositorBridgeParent*&&, mozilla::wr::WrPipelineInfo&, mozilla::TimeStamp const&, mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::wr::RenderTextureHost> >::Tuple<RefPtr<mozilla::wr::RenderTextureHost>&, , void>(RefPtr<mozilla::wr::RenderTextureHost>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositorBridgeParent*>::Tuple<mozilla::layers::CompositorBridgeParent*&, , void>(mozilla::layers::CompositorBridgeParent*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::Tuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::Tuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<nsIObserver> >::Tuple<int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&, void>(int&, int&, int&, nsTSubstring<char16_t> const&, nsTSubstring<char16_t> const&, nsIObserver*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsIObserver> >::Tuple<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, int&, int&, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, int&, int&, nsIObserver*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Tuple<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, unsigned int&, double&, double&, double&, unsigned int&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsIWidget::TouchPointerState>, StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<double>, StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<nsIObserver> >::Tuple<unsigned int&, nsIWidget::TouchPointerState, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, double&, unsigned int&, nsIObserver*&, void>(unsigned int&, nsIWidget::TouchPointerState&&, mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, double&, unsigned int&, nsIObserver*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreCopyPassByConstLRef<bool>, StoreRefPtrPassByPtr<nsIObserver> >::Tuple<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, bool&, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, bool&, nsIObserver*&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<nsIObserver> >::Tuple<nsIObserver*&, , void>(nsIObserver*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> > >::Tuple<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, , void>(mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::HTMLMediaElement> >::Tuple<mozilla::dom::HTMLMediaElement*&, , void>(mozilla::dom::HTMLMediaElement*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<nsTString<char>, , void>(nsTString<char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::MediaStreamTrack> >::Tuple<RefPtr<mozilla::dom::MediaStreamTrack>&, , void>(RefPtr<mozilla::dom::MediaStreamTrack>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char16_t> const> >::Tuple<nsTString<char16_t> const&, , void>(nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::MediaSegment::Type>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int> >::Tuple<mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type, mozilla::MediaStream*&, int&, void>(mozilla::MediaStreamGraph*&, int&, mozilla::MediaSegment::Type&&, mozilla::MediaStream*&, int&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<mozilla::MediaStreamGraph>, StoreRefPtrPassByPtr<mozilla::MediaStream>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Tuple<mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&, void>(mozilla::MediaStreamGraph*&, mozilla::MediaStream*&, int&, int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::TimedMetadata> >::Tuple<mozilla::TimedMetadata, , void>(mozilla::TimedMetadata&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::MediaDecoder::PlayState> >::Tuple<mozilla::MediaDecoder::PlayState&, , void>(mozilla::MediaDecoder::PlayState&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::Tuple<nsMainThreadPtrHandle<nsIPrincipal>&, , void>(nsMainThreadPtrHandle<nsIPrincipal>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<already_AddRefed<mozilla::layers::KnowsCompositor> > >::Tuple<already_AddRefed<mozilla::layers::KnowsCompositor>, , void>(already_AddRefed<mozilla::layers::KnowsCompositor>&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::Maybe<mozilla::media::TimeUnit> > > >::Tuple<mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*, , void>(mozilla::Mirror<mozilla::Maybe<mozilla::media::TimeUnit> >::Impl*&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeIntervals> > >::Tuple<mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*, , void>(mozilla::Mirror<mozilla::media::TimeIntervals>::Impl*&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::media::TimeUnit> > >::Tuple<mozilla::Mirror<mozilla::media::TimeUnit>::Impl*, , void>(mozilla::Mirror<mozilla::media::TimeUnit>::Impl*&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<bool> > >::Tuple<mozilla::Mirror<bool>::Impl*, , void>(mozilla::Mirror<bool>::Impl*&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::CDMProxy> >::Tuple<mozilla::CDMProxy*&, , void>(mozilla::CDMProxy*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<bool> >::Tuple<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaPlaybackEvent::EventType> >::Tuple<mozilla::MediaPlaybackEvent::EventType&, , void>(mozilla::MediaPlaybackEvent::EventType&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaDecoderOwner::NextFrameStatus> >::Tuple<mozilla::MediaDecoderOwner::NextFrameStatus&, , void>(mozilla::MediaDecoderOwner::NextFrameStatus&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<RefPtr<mozilla::AudioData> > >::Tuple<RefPtr<mozilla::AudioData>&, , void>(RefPtr<mozilla::AudioData>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<RefPtr<mozilla::VideoData> > >::Tuple<RefPtr<mozilla::VideoData>&, , void>(RefPtr<mozilla::VideoData>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::media::TimeUnit> > >::Tuple<mozilla::Maybe<mozilla::media::TimeUnit>&, , void>(mozilla::Maybe<mozilla::media::TimeUnit>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> > >, StoreCopyPassByRRef<mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > > >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::Tuple<mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >, mozilla::MediaDecoderEventVisibility, void>(mozilla::UniquePtr<mozilla::MediaInfo, mozilla::DefaultDelete<mozilla::MediaInfo> >&&, mozilla::UniquePtr<nsDataHashtable<nsCStringHashKey, nsTString<char> >, mozilla::DefaultDelete<nsDataHashtable<nsCStringHashKey, nsTString<char> > > >&&, mozilla::MediaDecoderEventVisibility&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<mozilla::MediaDecoder::PlayState> > >::Tuple<mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*, , void>(mozilla::Mirror<mozilla::MediaDecoder::PlayState>::Impl*&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<double> > >::Tuple<mozilla::Mirror<double>::Impl*, , void>(mozilla::Mirror<double>::Impl*&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::AbstractMirror<nsMainThreadPtrHandle<nsIPrincipal> > > >::Tuple<mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*, , void>(mozilla::Mirror<nsMainThreadPtrHandle<nsIPrincipal> >::Impl*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::media::TimeUnit> >::Tuple<mozilla::media::TimeUnit&, , void>(mozilla::media::TimeUnit&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaDecoder> >::Tuple<mozilla::MediaDecoder*&, , void>(mozilla::MediaDecoder*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaPlaybackEvent> >::Tuple<mozilla::MediaPlaybackEvent&, , void>(mozilla::MediaPlaybackEvent&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::VideoDecodeMode> >::Tuple<mozilla::VideoDecodeMode&, , void>(mozilla::VideoDecodeMode&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::SeekTarget> >::Tuple<mozilla::SeekTarget const&, , void>(mozilla::SeekTarget const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaResult> >::Tuple<mozilla::MediaResult const&, , void>(mozilla::MediaResult const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::DecoderDoctorEvent> >::Tuple<mozilla::DecoderDoctorEvent&, , void>(mozilla::DecoderDoctorEvent&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::SourceListener> >::Tuple<RefPtr<mozilla::SourceListener>&, , void>(RefPtr<mozilla::SourceListener>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::MediaRecorder::Session::EncoderListener> >::Tuple<RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&, , void>(RefPtr<mozilla::dom::MediaRecorder::Session::EncoderListener>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::media::TimeIntervals> >::Tuple<mozilla::media::TimeIntervals&, , void>(mozilla::media::TimeIntervals&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::TrackInfo::TrackType> >::Tuple<mozilla::TrackInfo::TrackType&, , void>(mozilla::TrackInfo::TrackType&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsMainThreadPtrHandle<nsIPrincipal> > >::Tuple<nsMainThreadPtrHandle<nsIPrincipal> const&, , void>(nsMainThreadPtrHandle<nsIPrincipal> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::media::TimeUnit> >::Tuple<mozilla::media::TimeUnit const&, , void>(mozilla::media::TimeUnit const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::SeekTarget> >::Tuple<mozilla::SeekTarget, , void>(mozilla::SeekTarget&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::MediaData::Type> >::Tuple<mozilla::MediaData::Type&, , void>(mozilla::MediaData::Type&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int> > >::Tuple<mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&, , void>(mozilla::EnumSet<mozilla::TrackInfo::TrackType, unsigned int>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<long> >::Tuple<long&, , void>(long&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<long> >::Tuple<long, , void>(long&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::AudioSegment> >::Tuple<mozilla::AudioSegment, , void>(mozilla::AudioSegment&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaEncoder::EncoderListener> >::Tuple<RefPtr<mozilla::MediaEncoder::EncoderListener>&, , void>(RefPtr<mozilla::MediaEncoder::EncoderListener>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::VideoSegment> >::Tuple<mozilla::VideoSegment, , void>(mozilla::VideoSegment&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<unsigned int&, nsresult&, nsTString<char> const&, void>(unsigned int&, nsresult&, nsTString<char> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyMessageType>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Tuple<NS_ConvertUTF8toUTF16, mozilla::dom::MediaKeyMessageType, nsTArray<unsigned char>, void>(NS_ConvertUTF8toUTF16&&, mozilla::dom::MediaKeyMessageType&&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >::Tuple<NS_ConvertUTF8toUTF16, , void>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const> >::Tuple<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&), unsigned int&, unsigned int&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::ChromiumCDMChild::*)(unsigned int, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Tuple<bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char>, void>(bool (mozilla::gmp::ChromiumCDMChild::*&)(unsigned int, nsTString<char> const&), unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&)>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTString<char> const> >::Tuple<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int&, unsigned int, unsigned int&, nsTString<char>, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&, unsigned int const&, unsigned int const&, nsTString<char> const&), unsigned int&, unsigned int&&, unsigned int&, nsTString<char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<unsigned int const>, StoreCopyPassByConstLRef<nsTArray<unsigned char> const> >::Tuple<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char>, unsigned int, nsTArray<unsigned char>&, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, unsigned int const&, nsTArray<unsigned char> const&), nsTString<char>&&, unsigned int&&, nsTArray<unsigned char>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<nsTArray<mozilla::gmp::CDMKeyInformation> const> >::Tuple<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>, nsTArray<mozilla::gmp::CDMKeyInformation>&, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, nsTArray<mozilla::gmp::CDMKeyInformation> const&), nsTString<char>&&, nsTArray<mozilla::gmp::CDMKeyInformation>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&, double const&)>, StoreCopyPassByConstLRef<nsTString<char> const>, StoreCopyPassByConstLRef<double const> >::Tuple<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>, double&, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&, double const&), nsTString<char>&&, double&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Tuple<unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>, void>(unsigned int&, unsigned int&, unsigned int&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Tuple<unsigned int&, unsigned int, nsTSubstring<char16_t> const&, void>(unsigned int&, unsigned int&&, nsTSubstring<char16_t> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Tuple<NS_ConvertUTF16toUTF8, unsigned int&, nsTArray<unsigned char>, void>(NS_ConvertUTF16toUTF8&&, unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::gmp::GMPParent> >::Tuple<RefPtr<mozilla::gmp::GMPParent>&, , void>(RefPtr<mozilla::gmp::GMPParent>&)
Unexecuted instantiation: mozilla::Tuple<unsigned int, nsTString<char>, nsTString<char16_t> >::Tuple<unsigned int&, nsTString<char>&, nsTString<char16_t>&, void>(unsigned int&, nsTString<char>&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<NS_ConvertUTF8toUTF16> >::Tuple<NS_ConvertUTF8toUTF16, , void>(NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<nsTString<char16_t> > >::Tuple<nsTString<char16_t>&, , void>(nsTString<char16_t>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::Tuple<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>, , void>(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>, , void>(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<long> >::Tuple<long&, , void>(long&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<bool> >::Tuple<bool&, , void>(bool&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<RefPtr<mozilla::TrackBuffersManager> > >::Tuple<RefPtr<mozilla::TrackBuffersManager>&, , void>(RefPtr<mozilla::TrackBuffersManager>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<int> >::Tuple<int&, , void>(int&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::SourceBufferTask> >::Tuple<mozilla::SourceBufferTask*&, , void>(mozilla::SourceBufferTask*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::media::Interval<mozilla::media::TimeUnit> > >::Tuple<mozilla::media::Interval<mozilla::media::TimeUnit>, , void>(mozilla::media::Interval<mozilla::media::TimeUnit>&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::MediaRawData> >::Tuple<mozilla::MediaRawData*&, , void>(mozilla::MediaRawData*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::TrackInfo::TrackType> >::Tuple<mozilla::TrackInfo::TrackType const&, , void>(mozilla::TrackInfo::TrackType const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine> >::Tuple<mozilla::camera::CaptureEngine&, , void>(mozilla::camera::CaptureEngine&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >::Tuple<mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&, void>(mozilla::camera::CaptureEngine&, nsTString<char>&, unsigned int const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> >, StoreConstRefPassByConstLRef<mozilla::ipc::PrincipalInfo> >::Tuple<mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&, void>(mozilla::camera::CaptureEngine&, nsTString<char>&, mozilla::ipc::PrincipalInfo const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<mozilla::camera::VideoCaptureCapability> >::Tuple<mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&, void>(mozilla::camera::CaptureEngine&, int const&, mozilla::camera::VideoCaptureCapability&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int> >::Tuple<unsigned int const&, , void>(unsigned int const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<SPDNotificationType> >::Tuple<SPDNotificationType, , void>(SPDNotificationType&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&, void>(char const*&, nsTSubstring<char16_t> const&, nsTSubstring<char> const&)
Unexecuted instantiation: mozilla::Tuple<nsCOMPtr<nsIUDPSocket>, nsCOMPtr<nsIEventTarget>, UDPAddressInfo>::Tuple<nsCOMPtr<nsIUDPSocket>&, nsCOMPtr<nsIEventTarget>&, UDPAddressInfo const&, void>(nsCOMPtr<nsIUDPSocket>&, nsCOMPtr<nsIEventTarget>&, UDPAddressInfo const&)
Unexecuted instantiation: mozilla::Tuple<unsigned int>::Tuple<unsigned int&, , void>(unsigned int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<gfxSurfaceType>, StoreCopyPassByConstLRef<mozilla::plugins::NPRemoteWindow>, StoreCopyPassByConstLRef<bool> >::Tuple<gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool, void>(gfxSurfaceType const&, mozilla::plugins::NPRemoteWindow const&, bool&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild> > >::Tuple<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>, , void>(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerChild>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>, , void>(mozilla::ipc::Endpoint<mozilla::plugins::PFunctionBrokerParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Tuple<mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&, void>(mozilla::dom::IdType<mozilla::dom::TabParent>&, nsTAutoStringN<char, 64ul>&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>, , void>(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::IdType<mozilla::dom::TabParent> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<mozilla::layers::LayersObserverEpoch> >::Tuple<mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&, void>(mozilla::dom::IdType<mozilla::dom::TabParent>&, bool&, mozilla::layers::LayersObserverEpoch const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild> > >::Tuple<mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>, , void>(mozilla::ipc::Endpoint<mozilla::PProcessHangMonitorChild>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::ContentProcessHost*>::Tuple<mozilla::dom::ContentProcessHost*&, , void>(mozilla::dom::ContentProcessHost*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::ContentParent::ShutDownMethod> >::Tuple<mozilla::dom::ContentParent::ShutDownMethod, , void>(mozilla::dom::ContentParent::ShutDownMethod&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> > > >::Tuple<mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >, , void>(mozilla::UniquePtr<mozilla::dom::U2FResult, mozilla::DefaultDelete<mozilla::dom::U2FResult> >&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char16_t> > >::Tuple<nsTAutoStringN<char16_t, 64ul>&, , void>(nsTAutoStringN<char16_t, 64ul>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long> >::Tuple<unsigned long&, , void>(unsigned long&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::Element>, StoreCopyPassByConstLRef<int>, StoreRefPtrPassByPtr<nsAtom> >::Tuple<mozilla::dom::Element*&, int const&, nsAtom*&, void>(mozilla::dom::Element*&, int const&, nsAtom*&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreRefPtrPassByPtr<nsIOutputStream>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<nsresult> >::Tuple<nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&, void>(nsCOMPtr<nsIWebBrowserPersistDocument>&, nsCOMPtr<nsIOutputStream>&, nsTString<char> const&, nsresult const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> > > >::Tuple<mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >, , void>(mozilla::UniquePtr<nsWebBrowserPersist::WalkData, mozilla::DefaultDelete<nsWebBrowserPersist::WalkData> >&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType> >::Tuple<mozilla::dom::XMLHttpRequestMainThread::ProgressEventType, , void>(mozilla::dom::XMLHttpRequestMainThread::ProgressEventType&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned short> >::Tuple<unsigned short&, , void>(unsigned short&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::ServiceWorkerRegistrationDescriptor> >::Tuple<mozilla::dom::ServiceWorkerRegistrationDescriptor const&, , void>(mozilla::dom::ServiceWorkerRegistrationDescriptor const&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::SDBRequest> >::Tuple<mozilla::dom::SDBRequest*, , void>(mozilla::dom::SDBRequest*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<nsTAutoStringN<char, 64ul>&, , void>(nsTAutoStringN<char, 64ul>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<char const (&) [10], , void>(char const (&) [10])
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<nsIPresentationSessionTransport> >::Tuple<nsCOMPtr<nsIPresentationSessionTransport>&, , void>(nsCOMPtr<nsIPresentationSessionTransport>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::dom::PresentationTCPSessionTransport::ReadyState> >::Tuple<mozilla::dom::PresentationTCPSessionTransport::ReadyState, , void>(mozilla::dom::PresentationTCPSessionTransport::ReadyState&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<float> >::Tuple<float&, , void>(float&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::KeyboardMap> >::Tuple<mozilla::layers::KeyboardMap&, , void>(mozilla::layers::KeyboardMap&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::RectTyped<mozilla::CSSPixel, float> >, StoreCopyPassByConstLRef<unsigned int> >::Tuple<mozilla::layers::ScrollableLayerGuid, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&, void>(mozilla::layers::ScrollableLayerGuid&&, mozilla::gfx::RectTyped<mozilla::CSSPixel, float> const&, unsigned int const&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<nsINode> >::Tuple<nsINode*&, , void>(nsINode*&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::a11y::SelData> >::Tuple<mozilla::a11y::SelData*&, , void>(mozilla::a11y::SelData*&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::a11y::Accessible> >::Tuple<mozilla::a11y::Accessible*&, , void>(mozilla::a11y::Accessible*&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::dom::Event> >::Tuple<mozilla::dom::Event*&, , void>(mozilla::dom::Event*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::PProfilerChild> > >::Tuple<mozilla::ipc::Endpoint<mozilla::PProfilerChild>, , void>(mozilla::ipc::Endpoint<mozilla::PProfilerChild>&&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<nsTString<char> > >::Tuple<nsTString<char>*&, , void>(nsTString<char>*&)
Unexecuted instantiation: mozilla::Tuple<StoreConstPtrPassByConstPtr<char> >::Tuple<char const (&) [19], , void>(char const (&) [19])
Unexecuted instantiation: mozilla::Tuple<StoreConstPtrPassByConstPtr<char> >::Tuple<char const (&) [21], , void>(char const (&) [21])
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::ExtensionPolicyService>, nsCOMPtr<nsPIDOMWindowInner>, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul> >::Tuple<mozilla::ExtensionPolicyService*, nsCOMPtr<nsPIDOMWindowInner>&, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul>, void>(mozilla::ExtensionPolicyService*&&, nsCOMPtr<nsPIDOMWindowInner>&, AutoTArray<RefPtr<mozilla::extensions::WebExtensionContentScript>, 8ul>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild> > >::Tuple<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>, , void>(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterChild>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent> > >::Tuple<mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>, , void>(mozilla::ipc::Endpoint<mozilla::extensions::PStreamFilterParent>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<nsTArray<unsigned char> > >::Tuple<nsTArray<unsigned char>, , void>(nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<bool>, StoreCopyPassByConstLRef<long> >::Tuple<nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&, void>(nsTSubstring<char> const&, int&, nsTSubstring<char> const&, bool&, long&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTArray<int>, long>::Tuple<nsTString<char>, nsTArray<int>, long&, void>(nsTString<char>&&, nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long&, void>(nsTString<char>&&, nsTString<char>&&, nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::Tuple<char const*, nsCOMPtr<nsIVariant>, unsigned int>::Tuple<char const*, nsCOMPtr<nsIVariant>&, unsigned int const&, void>(char const*&&, nsCOMPtr<nsIVariant>&, unsigned int const&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::Tuple<nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant>&, void>(nsTString<char>&&, nsTString<char16_t>&&, nsCOMPtr<nsIVariant>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::HTMLInputElement> >::Tuple<RefPtr<mozilla::dom::HTMLInputElement>&, , void>(RefPtr<mozilla::dom::HTMLInputElement>&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<nsFoo> >::Tuple<RefPtr<nsFoo>&, , void>(RefPtr<nsFoo>&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<char> >::Tuple<char*&, , void>(char*&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<bool> >::Tuple<bool*, , void>(bool*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<int> >::Tuple<int, , void>(int&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Tuple<int, int, int, void>(int&&, int&&, int&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Tuple<int, int, int, int, void>(int&&, int&&, int&&, int&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<int> >::Tuple<short&, , void>(short&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<int> >::Tuple<int*, , void>(int*&&)
Unexecuted instantiation: mozilla::Tuple<StoreConstPtrPassByConstPtr<int> >::Tuple<int*, , void>(int*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByPtr<int> >::Tuple<int&, , void>(int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstPtr<int> >::Tuple<int&, , void>(int&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPassByLRef<int> >::Tuple<int&, , void>(int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<int> >::Tuple<int, , void>(int&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::Tuple<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >, , void>(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPassByLRef<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> > > >::Tuple<mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&, , void>(mozilla::UniquePtr<int, mozilla::DefaultDelete<int> >&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByValue<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy&, , void>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByValue<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy, , void>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy&, , void>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy, , void>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy&, , void>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy, , void>(TestThreadUtils::Spy&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPassByLRef<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy&, , void>(TestThreadUtils::Spy&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<TestThreadUtils::SpyWithISupports> >::Tuple<TestThreadUtils::SpyWithISupports*, , void>(TestThreadUtils::SpyWithISupports*&&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy*, , void>(TestThreadUtils::Spy*&&)
Unexecuted instantiation: mozilla::Tuple<StoreConstPtrPassByConstPtr<TestThreadUtils::Spy> >::Tuple<TestThreadUtils::Spy*, , void>(TestThreadUtils::Spy*&&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple<unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(unsigned short&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::Tuple<nsAutoPtr<mozilla::MediaPipelineFilter> >::Tuple<nsAutoPtr<mozilla::MediaPipelineFilter>&, , void>(nsAutoPtr<mozilla::MediaPipelineFilter>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> > > >::Tuple<mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >, , void>(mozilla::UniquePtr<CDMStorageTest::NodeInfo, mozilla::DefaultDelete<CDMStorageTest::NodeInfo> >&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPassByLRef<GMPTestMonitor> >::Tuple<GMPTestMonitor&, , void>(GMPTestMonitor&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StorePtrPassByPtr<GMPVideoDecoderProxy*>, StorePtrPassByPtr<GMPVideoHost*> >::Tuple<nsTString<char>&, GMPVideoDecoderProxy**, GMPVideoHost**, void>(nsTString<char>&, GMPVideoDecoderProxy**&&, GMPVideoHost**&&)
Unexecuted instantiation: mozilla::Tuple<StoreConstRefPassByConstLRef<GMPVideoCodec>, StoreConstRefPassByConstLRef<nsTArray<unsigned char> >, StorePtrPassByPtr<GMPVideoDecoderCallbackProxy>, StoreCopyPassByConstLRef<int> >::Tuple<GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*, int, void>(GMPVideoCodec&, nsTArray<unsigned char>&, GMPRemoveTest*&&, int&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<SomeEvent> >::Tuple<SomeEvent&, , void>(SomeEvent&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<RefPtr<RefCounter> > >::Tuple<RefPtr<RefCounter>&, , void>(RefPtr<RefCounter>&)
Unexecuted instantiation: mozilla::Tuple<int>::Tuple<int&, , void>(int&)
Unexecuted instantiation: mozilla::Tuple<unsigned long>::Tuple<unsigned long, , void>(unsigned long&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::NrIceCtx::Controlling>::Tuple<mozilla::NrIceCtx::Controlling, , void>(mozilla::NrIceCtx::Controlling&&)
Unexecuted instantiation: mozilla::Tuple<int, int, unsigned char const*, int>::Tuple<int, int, unsigned char const*, int, void>(int&&, int&&, unsigned char const*&&, int&&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::Tuple<(anonymous namespace)::IceTestPeer*, (anonymous namespace)::TrickleMode, bool>::Tuple<(anonymous namespace)::IceTestPeer*&, (anonymous namespace)::TrickleMode&, bool&, void>((anonymous namespace)::IceTestPeer*&, (anonymous namespace)::TrickleMode&, bool&)
Unexecuted instantiation: ice_unittest.cpp:mozilla::Tuple<int, int, (anonymous namespace)::ConsentStatus>::Tuple<int, int, (anonymous namespace)::ConsentStatus&, void>(int&&, int&&, (anonymous namespace)::ConsentStatus&)
Unexecuted instantiation: mozilla::Tuple<bool>::Tuple<bool, , void>(bool&&)
Unexecuted instantiation: mozilla::Tuple<int>::Tuple<int, , void>(int&&)
Unexecuted instantiation: mozilla::Tuple<nr_socket_tcp_type, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, unsigned short, nr_socket_**>::Tuple<nr_socket_tcp_type&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, nr_socket_**, void>(nr_socket_tcp_type&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned short&, nr_socket_**&&)
Unexecuted instantiation: mozilla::Tuple<nr_socket_*>::Tuple<nr_socket_*&, , void>(nr_socket_*&)
Unexecuted instantiation: mozilla::Tuple<nr_socket_*, unsigned long, int>::Tuple<nr_socket_*&, unsigned long&, int&, void>(nr_socket_*&, unsigned long&, int&)
Unexecuted instantiation: mozilla::Tuple<nr_socket_*, nr_socket_*, char const*, unsigned long>::Tuple<nr_socket_*&, nr_socket_*&, char const*&, unsigned long&, void>(nr_socket_*&, nr_socket_*&, char const*&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<nr_socket_*, nr_transport_addr_*, char const*, unsigned long>::Tuple<nr_socket_*&, nr_transport_addr_*&, char const*&, unsigned long&, void>(nr_socket_*&, nr_transport_addr_*&, char const*&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<nr_transport_addr_*, nr_socket_*, char const*, unsigned long>::Tuple<nr_transport_addr_*&, nr_socket_*&, char const*&, unsigned long&, void>(nr_transport_addr_*&, nr_socket_*&, char const*&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<bool*>::Tuple<bool*, , void>(bool*&&)
Unexecuted instantiation: runnable_utils_unittest.cpp:mozilla::Tuple<RefPtr<(anonymous namespace)::Destructor> >::Tuple<RefPtr<(anonymous namespace)::Destructor>&, , void>(RefPtr<(anonymous namespace)::Destructor>&)
Unexecuted instantiation: mozilla::Tuple<nsAutoPtr<mozilla::MediaPacket>, RefPtr<mozilla::TransportFlow>, mozilla::TransportLayerLoopback*>::Tuple<nsAutoPtr<mozilla::MediaPacket>&, RefPtr<mozilla::TransportFlow>&, mozilla::TransportLayerLoopback*&, void>(nsAutoPtr<mozilla::MediaPacket>&, RefPtr<mozilla::TransportFlow>&, mozilla::TransportLayerLoopback*&)
Unexecuted instantiation: sctp_unittest.cpp:mozilla::Tuple<(anonymous namespace)::TransportTestPeer*>::Tuple<(anonymous namespace)::TransportTestPeer*&, , void>((anonymous namespace)::TransportTestPeer*&)
Unexecuted instantiation: mozilla::Tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, char const*, int>::Tuple<unsigned long&, char const*&, int&, void>(unsigned long&, char const*&, int&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, char const*, int>::Tuple<unsigned long, char const*, int, void>(unsigned long&&, char const*&&, int&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::TestNrSocket*>::Tuple<mozilla::TestNrSocket*, , void>(mozilla::TestNrSocket*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::NrSocketBase*>::Tuple<mozilla::NrSocketBase*, , void>(mozilla::NrSocketBase*&&)
Unexecuted instantiation: transport_unittests.cpp:mozilla::Tuple<(anonymous namespace)::TransportTestPeer*>::Tuple<(anonymous namespace)::TransportTestPeer*&, , void>((anonymous namespace)::TransportTestPeer*&)
Unexecuted instantiation: mozilla::Tuple<unsigned short*>::Tuple<unsigned short*, , void>(unsigned short*&&)
Unexecuted instantiation: mozilla::Tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Tuple<std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, , void>(std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::Tuple<char const*, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > > >::Tuple<char const*, char const*, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >, void>(char const*&&, char const*&&, std::__1::vector<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::allocator<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > >&&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Tuple<js::NativeObject*&, JSObject*&, js::CrossCompartmentKey::DebuggerObjectKind&, void>(js::NativeObject*&, JSObject*&, js::CrossCompartmentKey::DebuggerObjectKind&)
mozilla::Tuple<js::HelperThread*>::Tuple<js::HelperThread*, , void>(js::HelperThread*&&)
Line
Count
Source
252
24
    : Impl(std::forward<OtherHead>(aHead), std::forward<OtherTail>(aTail)...) { }
mozilla::Tuple<JSObject*>::Tuple<JSObject*&, , void>(JSObject*&)
Line
Count
Source
252
188
    : Impl(std::forward<OtherHead>(aHead), std::forward<OtherTail>(aTail)...) { }
253
0
  Tuple(const Tuple& aOther) : Impl(aOther) { }
Unexecuted instantiation: mozilla::Tuple<int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double>::Tuple(mozilla::Tuple<int, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, double> const&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple(mozilla::Tuple<unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > > const&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Tuple(mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind> const&)
254
0
  Tuple(Tuple&& aOther) : Impl(std::move(aOther)) { }
Unexecuted instantiation: mozilla::Tuple<mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >::Tuple(mozilla::Tuple<mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >&&)
Unexecuted instantiation: mozilla::Tuple<already_AddRefed<mozilla::Runnable> >::Tuple(mozilla::Tuple<already_AddRefed<mozilla::Runnable> >&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>::Tuple(mozilla::Tuple<mozilla::layers::TextureDeallocParams, mozilla::ReentrantMonitor*, bool*>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::TextureDeallocParams>::Tuple(mozilla::Tuple<mozilla::layers::TextureDeallocParams>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::LayersId>::Tuple(mozilla::Tuple<mozilla::layers::LayersId>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::TimeStamp>::Tuple(mozilla::Tuple<mozilla::TimeStamp>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::gfx::GPUProcessHost*>::Tuple(mozilla::Tuple<mozilla::gfx::GPUProcessHost*>&&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::gfx::VRManagerChild> >::Tuple(mozilla::Tuple<RefPtr<mozilla::gfx::VRManagerChild> >&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::gfx::VRManagerParent*>::Tuple(mozilla::Tuple<mozilla::gfx::VRManagerParent*>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::gfx::VRProcessParent*>::Tuple(mozilla::Tuple<mozilla::gfx::VRProcessParent*>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>::Tuple(mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo, mozilla::TimeStamp, mozilla::TimeStamp>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositorBridgeParent*>::Tuple(mozilla::Tuple<mozilla::layers::CompositorBridgeParent*>&&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char> >::Tuple(mozilla::Tuple<nsTString<char> >&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::Tuple(mozilla::Tuple<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::ContentProcessHost*>::Tuple(mozilla::Tuple<mozilla::dom::ContentProcessHost*>&&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTArray<int>, long>::Tuple(mozilla::Tuple<nsTString<char>, nsTArray<int>, long>&&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>::Tuple(mozilla::Tuple<nsTString<char>, nsTString<char>, nsTArray<int>, long>&&)
Unexecuted instantiation: mozilla::Tuple<char const*, nsCOMPtr<nsIVariant>, unsigned int>::Tuple(mozilla::Tuple<char const*, nsCOMPtr<nsIVariant>, unsigned int>&&)
Unexecuted instantiation: mozilla::Tuple<char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>::Tuple(mozilla::Tuple<char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >, unsigned int>&&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >::Tuple(mozilla::Tuple<nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant> >&&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple(mozilla::Tuple<unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >&&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>::Tuple(mozilla::Tuple<js::NativeObject*, JSObject*, js::CrossCompartmentKey::DebuggerObjectKind>&&)
255
256
  template <typename... OtherElements,
257
            typename = typename EnableIf<
258
                sizeof...(OtherElements) == sizeof...(Elements)>::Type>
259
  Tuple& operator=(const Tuple<OtherElements...>& aOther)
260
0
  {
261
0
    static_cast<Impl&>(*this) = aOther;
262
0
    return *this;
263
0
  }
264
  template <typename... OtherElements,
265
            typename = typename EnableIf<
266
                sizeof...(OtherElements) == sizeof...(Elements)>::Type>
267
  Tuple& operator=(Tuple<OtherElements...>&& aOther)
268
0
  {
269
0
    static_cast<Impl&>(*this) = std::move(aOther);
270
0
    return *this;
271
0
  }
Unexecuted instantiation: mozilla::Tuple<unsigned int&, unsigned long&, unsigned long&>& mozilla::Tuple<unsigned int&, unsigned long&, unsigned long&>::operator=<unsigned int, unsigned long, unsigned long, void>(mozilla::Tuple<unsigned int, unsigned long, unsigned long>&&)
Unexecuted instantiation: mozilla::Tuple<unsigned int&, unsigned long&, unsigned long&, bool&>& mozilla::Tuple<unsigned int&, unsigned long&, unsigned long&, bool&>::operator=<unsigned int, unsigned long, unsigned long, bool, void>(mozilla::Tuple<unsigned int, unsigned long, unsigned long, bool>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>& mozilla::Tuple<mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&>::operator=<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface>, void>(mozilla::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >&&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::Tuple<RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::Tuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
272
  Tuple& operator=(const Tuple& aOther)
273
0
  {
274
0
    static_cast<Impl&>(*this) = aOther;
275
0
    return *this;
276
0
  }
277
  Tuple& operator=(Tuple&& aOther)
278
  {
279
    static_cast<Impl&>(*this) = std::move(aOther);
280
    return *this;
281
  }
282
  bool operator==(const Tuple& aOther) const
283
0
  {
284
0
    return static_cast<const Impl&>(*this) == static_cast<const Impl&>(aOther);
285
0
  }
286
};
287
288
/**
289
 * Specialization of Tuple for two elements.
290
 * This is created to support construction and assignment from a Pair or std::pair.
291
 */
292
template <typename A, typename B>
293
class Tuple<A, B> : public detail::TupleImpl<0, A, B>
294
{
295
  typedef detail::TupleImpl<0, A, B> Impl;
296
297
public:
298
  // The constructors and assignment operators here are simple wrappers
299
  // around those in TupleImpl.
300
301
  Tuple() : Impl() { }
302
0
  explicit Tuple(const A& aA, const B& aB) : Impl(aA, aB) { }
Unexecuted instantiation: mozilla::Tuple<nsresult&, mozilla::Encoding const*&>::Tuple(nsresult&, mozilla::Encoding const*&)
Unexecuted instantiation: mozilla::Tuple<bool&, nsTString<char16_t>&>::Tuple(bool&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::Tuple<bool&, mozilla::CopyableErrorResult&>::Tuple(bool&, mozilla::CopyableErrorResult&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Encoding const*&, unsigned long&>::Tuple(mozilla::Encoding const*&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&>::Tuple(mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tuple(mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Tuple(RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<int&, mozilla::Maybe<mozilla::image::WriteState>&>::Tuple(int&, mozilla::Maybe<mozilla::image::WriteState>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>::Tuple(RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&)
303
  template <typename AArg, typename BArg,
304
            typename = typename EnableIf<
305
                detail::CheckConvertibility<
306
                    detail::Group<AArg, BArg>,
307
                    detail::Group<A, B>>::value>::Type>
308
  explicit Tuple(AArg&& aA, BArg&& aB)
309
0
    : Impl(std::forward<AArg>(aA), std::forward<BArg>(aB)) { }
Unexecuted instantiation: mozilla::Tuple<nsresult, mozilla::NotNull<mozilla::Encoding const*> >::Tuple<nsresult&, mozilla::NotNull<mozilla::Encoding const*>, void>(nsresult&, mozilla::NotNull<mozilla::Encoding const*>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<long const>, StoreCopyPassByConstLRef<long const> >::Tuple<long const&, long const&, void>(long const&, long const&)
Unexecuted instantiation: mozilla::Tuple<socket*, socket*>::Tuple<socket*&, socket*&, void>(socket*&, socket*&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<mozilla::ipc::MessageChannel>, StoreCopyPassByConstLRef<mozilla::ipc::Side> >::Tuple<mozilla::ipc::MessageChannel*, mozilla::ipc::Side&, void>(mozilla::ipc::MessageChannel*&&, mozilla::ipc::Side&)
Unexecuted instantiation: mozilla::Tuple<bool, nsTString<char16_t> >::Tuple<bool, nsTString<char16_t>, void>(bool&&, nsTString<char16_t>&&)
Unexecuted instantiation: mozilla::Tuple<bool, mozilla::CopyableErrorResult>::Tuple<bool, mozilla::CopyableErrorResult, void>(bool&&, mozilla::CopyableErrorResult&&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<nsJARInputThunk>, StoreCopyPassByConstLRef<bool> >::Tuple<RefPtr<nsJARInputThunk>&, bool, void>(RefPtr<nsJARInputThunk>&, bool&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsresult>, StoreCopyPassByConstLRef<bool> >::Tuple<nsresult&, bool, void>(nsresult&, bool&&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::WebrtcGmpVideoDecoder>, nsAutoPtr<mozilla::GMPDecodeData> >::Tuple<RefPtr<mozilla::WebrtcGmpVideoDecoder>, nsAutoPtr<mozilla::GMPDecodeData>&, void>(RefPtr<mozilla::WebrtcGmpVideoDecoder>&&, nsAutoPtr<mozilla::GMPDecodeData>&)
Unexecuted instantiation: mozilla::Tuple<nsresult, nsAutoPtr<mozilla::RTCStatsQuery> >::Tuple<nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&, void>(nsresult&, nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::Tuple<already_AddRefed<nsDOMDataChannel>, RefPtr<mozilla::dom::PeerConnectionObserver> >::Tuple<already_AddRefed<nsDOMDataChannel>, RefPtr<mozilla::dom::PeerConnectionObserver>&, void>(already_AddRefed<nsDOMDataChannel>&&, RefPtr<mozilla::dom::PeerConnectionObserver>&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, mozilla::JsepOfferOptions>::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, mozilla::JsepOfferOptions const&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, mozilla::JsepOfferOptions const&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, nsAutoPtr<mozilla::RTCStatsQuery> >::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, nsAutoPtr<mozilla::RTCStatsQuery>&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, nsAutoPtr<mozilla::RTCStatsQuery>&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&&)
Unexecuted instantiation: mozilla::Tuple<bool, bool>::Tuple<bool, bool, void>(bool&&, bool&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::NrIceCtx*, mozilla::NrIceCtx::GatheringState>::Tuple<mozilla::NrIceCtx*&, mozilla::NrIceCtx::GatheringState&, void>(mozilla::NrIceCtx*&, mozilla::NrIceCtx::GatheringState&)
Unexecuted instantiation: mozilla::Tuple<mozilla::NrIceCtx*, mozilla::NrIceCtx::ConnectionState>::Tuple<mozilla::NrIceCtx*&, mozilla::NrIceCtx::ConnectionState&, void>(mozilla::NrIceCtx*&, mozilla::NrIceCtx::ConnectionState&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, bool>::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, bool&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, bool&)
Unexecuted instantiation: mozilla::Tuple<nsIUDPSocketChild*, nsCOMPtr<nsIEventTarget> >::Tuple<nsIUDPSocketChild*, nsCOMPtr<nsIEventTarget>&, void>(nsIUDPSocketChild*&&, nsCOMPtr<nsIEventTarget>&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, unsigned short>::Tuple<nsTString<char>&, unsigned short, void>(nsTString<char>&, unsigned short&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::net::NetAddr, nsAutoPtr<mozilla::MediaPacket> >::Tuple<mozilla::net::NetAddr&, nsAutoPtr<mozilla::MediaPacket>&, void>(mozilla::net::NetAddr&, nsAutoPtr<mozilla::MediaPacket>&)
Unexecuted instantiation: mozilla::Tuple<unsigned int, unsigned int>::Tuple<unsigned int&, unsigned int&, void>(unsigned int&, unsigned int&)
Unexecuted instantiation: mozilla::Tuple<nsAutoPtr<nsTArray<unsigned char> >, unsigned int>::Tuple<nsAutoPtr<nsTArray<unsigned char> >, unsigned int&, void>(nsAutoPtr<nsTArray<unsigned char> >&&, unsigned int&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Encoding const*, unsigned long>::Tuple<mozilla::Encoding const*&, unsigned long&, void>(mozilla::Encoding const*&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::Maybe<mozilla::layers::ZoomConstraints> > >::Tuple<mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::Maybe<mozilla::layers::ZoomConstraints> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::LayersId>, StoreRefPtrPassByPtr<mozilla::layers::APZCTreeManager> >::Tuple<mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager>, void>(mozilla::layers::LayersId&, RefPtr<mozilla::layers::APZCTreeManager>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::FrameMetrics>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float> > >::Tuple<mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&, void>(mozilla::layers::FrameMetrics&, mozilla::gfx::PointTyped<mozilla::ParentLayerPixel, float>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTString<char16_t> > >::Tuple<unsigned long const&, nsTString<char16_t> const&, void>(unsigned long const&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, mozilla::layers::LayersIPCChannel*>::Tuple<unsigned long&, mozilla::layers::LayersIPCChannel*&, void>(unsigned long&, mozilla::layers::LayersIPCChannel*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >::Tuple<unsigned long const&, bool const&, void>(unsigned long const&, bool const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Tuple<unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&, void>(unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<unsigned int> > >::Tuple<unsigned long const&, nsTArray<unsigned int>, void>(unsigned long const&, nsTArray<unsigned int>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >::Tuple<mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> > >::Tuple<mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&, void>(mozilla::layers::ScrollableLayerGuid const&, mozilla::gfx::PointTyped<mozilla::ScreenPixel, float> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<unsigned int> >::Tuple<unsigned long&, unsigned int&, void>(unsigned long&, unsigned int&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, unsigned long*>::Tuple<mozilla::layers::CompositorBridgeParent*, unsigned long*, void>(mozilla::layers::CompositorBridgeParent*&&, unsigned long*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Tuple<int&, int&, void>(int&, int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Tuple<unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&, void>(unsigned long const&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>::Tuple<mozilla::layers::LayersId&, mozilla::layers::GeckoContentController*&, void>(mozilla::layers::LayersId&, mozilla::layers::GeckoContentController*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::SynchronousTask*, mozilla::layers::AsyncCanvasRenderer*>::Tuple<mozilla::layers::SynchronousTask*, mozilla::layers::AsyncCanvasRenderer*&, void>(mozilla::layers::SynchronousTask*&&, mozilla::layers::AsyncCanvasRenderer*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::SynchronousTask*, mozilla::layers::AllocShmemParams*>::Tuple<mozilla::layers::SynchronousTask*, mozilla::layers::AllocShmemParams*, void>(mozilla::layers::SynchronousTask*&&, mozilla::layers::AllocShmemParams*&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreRefPtrPassByPtr<mozilla::dom::VREventObserver> >::Tuple<unsigned int, mozilla::dom::VREventObserver*&, void>(unsigned int&&, mozilla::dom::VREventObserver*&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::wr::MemoryReport>, StoreRefPtrPassByPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private> >::Tuple<mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&, void>(mozilla::wr::MemoryReport&, RefPtr<mozilla::MozPromise<mozilla::wr::MemoryReport, bool, true>::Private>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::wr::WrWindowId>, StoreCopyPassByRRef<mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> > > >::Tuple<mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >, void>(mozilla::wr::WrWindowId&, mozilla::UniquePtr<mozilla::wr::RendererEvent, mozilla::DefaultDelete<mozilla::wr::RendererEvent> >&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>::Tuple<mozilla::layers::CompositorBridgeParent*&, mozilla::wr::WebRenderError&, void>(mozilla::layers::CompositorBridgeParent*&, mozilla::wr::WebRenderError&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, void>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tuple<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, void>(RefPtr<mozilla::gfx::SourceSurface>&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Tuple<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, void>(RefPtr<mozilla::gfx::SourceSurface>&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<int, mozilla::Maybe<mozilla::image::WriteState> >::Tuple<int&, mozilla::Maybe<mozilla::image::WriteState>, void>(int&, mozilla::Maybe<mozilla::image::WriteState>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel> >, StoreRefPtrPassByPtr<nsIObserver> >::Tuple<mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>, nsIObserver*&, void>(mozilla::gfx::IntPointTyped<mozilla::LayoutDevicePixel>&&, nsIObserver*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::ContentParent*, mozilla::dom::TabParent*>::Tuple<decltype(nullptr), decltype(nullptr), void>(decltype(nullptr)&&, decltype(nullptr)&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::dom::ContentParent*, mozilla::dom::TabParent*>::Tuple<mozilla::dom::ContentParent*, mozilla::dom::TabParent*&, void>(mozilla::dom::ContentParent*&&, mozilla::dom::TabParent*&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<mozilla::dom::Blob>, StoreConstPtrPassByConstPtr<char> >::Tuple<decltype(nullptr), decltype(nullptr), void>(decltype(nullptr)&&, decltype(nullptr)&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::SeekJob, mozilla::SeekJob>::Tuple<mozilla::SeekJob, mozilla::SeekJob, void>(mozilla::SeekJob&&, mozilla::SeekJob&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::Tuple<mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility, void>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::Tuple<mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&, void>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<nsAutoPtr<mozilla::MediaInfo> >, StoreCopyPassByRRef<mozilla::MediaDecoderEventVisibility> >::Tuple<nsAutoPtr<mozilla::MediaInfo>, mozilla::MediaDecoderEventVisibility&, void>(nsAutoPtr<mozilla::MediaInfo>&&, mozilla::MediaDecoderEventVisibility&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<nsTArray<unsigned char> >, StoreCopyPassByRRef<nsTString<char16_t> > >::Tuple<nsTArray<unsigned char>&, nsTString<char16_t>&, void>(nsTArray<unsigned char>&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::Tuple<void const*, RefPtr<mozilla::AudioDataListener> >::Tuple<void const*&, RefPtr<mozilla::AudioDataListener>, void>(void const*&, RefPtr<mozilla::AudioDataListener>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Maybe<void const*>, RefPtr<mozilla::AudioDataListener> >::Tuple<mozilla::Maybe<void const*>&, RefPtr<mozilla::AudioDataListener>, void>(mozilla::Maybe<void const*>&, RefPtr<mozilla::AudioDataListener>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16> >::Tuple<unsigned int&, NS_ConvertUTF8toUTF16, void>(unsigned int&, NS_ConvertUTF8toUTF16&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<bool> >::Tuple<unsigned int&, bool&, void>(unsigned int&, bool&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<mozilla::dom::MediaKeyStatus> >::Tuple<unsigned int&, mozilla::dom::MediaKeyStatus, void>(unsigned int&, mozilla::dom::MediaKeyStatus&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<NS_ConvertUTF8toUTF16>, StoreCopyPassByConstLRef<long> >::Tuple<NS_ConvertUTF8toUTF16, long, void>(NS_ConvertUTF8toUTF16&&, long&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(unsigned int const&)>, StoreCopyPassByConstLRef<unsigned int const> >::Tuple<bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(unsigned int const&), unsigned int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<bool (mozilla::gmp::PChromiumCDMChild::*)(nsTString<char> const&)>, StoreCopyPassByConstLRef<nsTString<char> const> >::Tuple<bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char>, void>(bool (mozilla::gmp::PChromiumCDMChild::*&)(nsTString<char> const&), nsTString<char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTArray<unsigned char> > >::Tuple<unsigned int&, nsTArray<unsigned char>, void>(unsigned int&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<unsigned int> >::Tuple<NS_ConvertUTF16toUTF8, unsigned int&, void>(NS_ConvertUTF16toUTF8&&, unsigned int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<unsigned int&, NS_ConvertUTF16toUTF8, void>(unsigned int&, NS_ConvertUTF16toUTF8&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char> >, StoreCopyPassByConstLRef<mozilla::OriginAttributesPattern> >::Tuple<NS_ConvertUTF16toUTF8, mozilla::OriginAttributesPattern const&, void>(NS_ConvertUTF16toUTF8&&, mozilla::OriginAttributesPattern const&)
Unexecuted instantiation: mozilla::Tuple<StorePtrPassByPtr<mozilla::Monitor>, StorePtrPassByPtr<bool> >::Tuple<mozilla::Monitor*, bool*, void>(mozilla::Monitor*&&, bool*&&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTArray<unsigned char> >::Tuple<nsTString<char> const&, nsTArray<unsigned char>, void>(nsTString<char> const&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByRRef<already_AddRefed<mozilla::MediaByteBuffer> >, StoreCopyPassByRRef<mozilla::SourceBufferAttributes> >::Tuple<already_AddRefed<mozilla::MediaByteBuffer>, mozilla::SourceBufferAttributes const&, void>(already_AddRefed<mozilla::MediaByteBuffer>&&, mozilla::SourceBufferAttributes const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<nsTString<char> > >::Tuple<mozilla::camera::CaptureEngine&, nsTString<char>&, void>(mozilla::camera::CaptureEngine&, nsTString<char>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<unsigned int> >::Tuple<mozilla::camera::CaptureEngine&, unsigned int&, void>(mozilla::camera::CaptureEngine&, unsigned int&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::camera::CaptureEngine>, StoreCopyPassByConstLRef<int> >::Tuple<mozilla::camera::CaptureEngine&, int const&, void>(mozilla::camera::CaptureEngine&, int const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned int>, StoreCopyPassByConstLRef<SPDNotificationType> >::Tuple<unsigned int, SPDNotificationType&, void>(unsigned int&&, SPDNotificationType&)
Unexecuted instantiation: mozilla::Tuple<int, bool>::Tuple<int&, bool, void>(int&, bool&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByConstLRef<bool> >::Tuple<unsigned long&, bool&, void>(unsigned long&, bool&)
Unexecuted instantiation: mozilla::Tuple<StoreRefPtrPassByPtr<nsIWebBrowserPersistDocument>, StoreCopyPassByConstLRef<nsresult> >::Tuple<nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&, void>(nsCOMPtr<nsIWebBrowserPersistDocument>&, nsresult const&)
Unexecuted instantiation: mozilla::Tuple<bool const&, mozilla::CopyableErrorResult const&>::Tuple<bool&, mozilla::CopyableErrorResult, void>(bool&, mozilla::CopyableErrorResult&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<nsTString<char16_t> >, StoreRefPtrPassByPtr<mozilla::dom::Promise> >::Tuple<nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&, void>(nsTString<char16_t>&, RefPtr<mozilla::dom::Promise>&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByLRef<nsTArray<unsigned int> > >::Tuple<unsigned long&, nsTArray<unsigned int> const&, void>(unsigned long&, nsTArray<unsigned int> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<unsigned long>, StoreCopyPassByRRef<nsTArray<mozilla::layers::ScrollableLayerGuid> > >::Tuple<unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&, void>(unsigned long&, nsTArray<mozilla::layers::ScrollableLayerGuid> const&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<mozilla::layers::ScrollableLayerGuid>, StoreCopyPassByConstLRef<mozilla::layers::AsyncDragMetrics> >::Tuple<mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&, void>(mozilla::layers::ScrollableLayerGuid&, mozilla::layers::AsyncDragMetrics const&)
Unexecuted instantiation: mozilla::Tuple<bool const&, nsTString<char16_t> const&>::Tuple<bool, nsTString<char16_t>&, void>(bool&&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::Tuple<bool const&, nsTString<char16_t> const&>::Tuple<bool, nsTString<char16_t> const&, void>(bool&&, nsTString<char16_t> const&)
Unexecuted instantiation: mozilla::Tuple<StoreConstPtrPassByConstPtr<char>, StoreCopyPassByConstLRef<unsigned int> >::Tuple<char const (&) [6], int, void>(char const (&) [6], int&&)
Unexecuted instantiation: mozilla::Tuple<StoreCopyPassByConstLRef<int>, StoreCopyPassByConstLRef<int> >::Tuple<int, int, void>(int&&, int&&)
Unexecuted instantiation: mediapipeline_unittest.cpp:mozilla::Tuple<(anonymous namespace)::TestAgentReceive*, (anonymous namespace)::TestAgentSend*>::Tuple<(anonymous namespace)::TestAgentReceive*, (anonymous namespace)::TestAgentSend*, void>((anonymous namespace)::TestAgentReceive*&&, (anonymous namespace)::TestAgentSend*&&)
Unexecuted instantiation: mozilla::Tuple<int, mozilla::Maybe<mozilla::image::WriteState> >::Tuple<int, mozilla::Maybe<mozilla::image::WriteState>, void>(int&&, mozilla::Maybe<mozilla::image::WriteState>&&)
Unexecuted instantiation: mozilla::Tuple<unsigned int, mozilla::NrIceCandidate*>::Tuple<unsigned int, mozilla::NrIceCandidate*, void>(unsigned int&&, mozilla::NrIceCandidate*&&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, int>::Tuple<unsigned long&, int&, void>(unsigned long&, int&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Tuple<unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, void>(unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)
Unexecuted instantiation: mozilla::Tuple<int, int>::Tuple<int, int, void>(int&&, int&&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*>::Tuple<unsigned long, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*, void>(unsigned long&&, std::__1::vector<mozilla::NrIceCandidatePair, std::__1::allocator<mozilla::NrIceCandidatePair> >*&&)
Unexecuted instantiation: mozilla::Tuple<nr_socket_*, nr_socket_*>::Tuple<nr_socket_*&, nr_socket_*&, void>(nr_socket_*&, nr_socket_*&)
Unexecuted instantiation: runnable_utils_unittest.cpp:mozilla::Tuple<(anonymous namespace)::TargetClass*, int>::Tuple<(anonymous namespace)::TargetClass*, int, void>((anonymous namespace)::TargetClass*&&, int&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::TestNrSocket*, nr_transport_addr_*>::Tuple<mozilla::TestNrSocket*, nr_transport_addr_*, void>(mozilla::TestNrSocket*&&, nr_transport_addr_*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::NrSocketBase*, int>::Tuple<mozilla::NrSocketBase*&, int&, void>(mozilla::NrSocketBase*&, int&)
Unexecuted instantiation: mozilla::Tuple<mozilla::TestNrSocket*, nr_transport_addr_>::Tuple<mozilla::TestNrSocket*, nr_transport_addr_, void>(mozilla::TestNrSocket*&&, nr_transport_addr_&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::TestNrSocket*, mozilla::TestNrSocket*>::Tuple<mozilla::TestNrSocket*, mozilla::TestNrSocket*, void>(mozilla::TestNrSocket*&&, mozilla::TestNrSocket*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::TestNrSocket*, mozilla::NrSocketBase**>::Tuple<mozilla::TestNrSocket*, mozilla::NrSocketBase**, void>(mozilla::TestNrSocket*&&, mozilla::NrSocketBase**&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::TransportLayerDtls*, mozilla::MediaPacket*>::Tuple<mozilla::TransportLayerDtls*&, mozilla::MediaPacket*, void>(mozilla::TransportLayerDtls*&, mozilla::MediaPacket*&&)
Unexecuted instantiation: mozilla::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, int>::Tuple<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int&, void>(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, int&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, js::LazyScript*>::Tuple<js::NativeObject*&, js::LazyScript*&, void>(js::NativeObject*&, js::LazyScript*&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, JSScript*>::Tuple<js::NativeObject*&, JSScript*&, void>(js::NativeObject*&, JSScript*&)
310
0
  Tuple(const Tuple& aOther) : Impl(aOther) { }
Unexecuted instantiation: mozilla::Tuple<bool, nsTString<char16_t> >::Tuple(mozilla::Tuple<bool, nsTString<char16_t> > const&)
Unexecuted instantiation: mozilla::Tuple<bool, mozilla::CopyableErrorResult>::Tuple(mozilla::Tuple<bool, mozilla::CopyableErrorResult> const&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, JSScript*>::Tuple(mozilla::Tuple<js::NativeObject*, JSScript*> const&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, js::LazyScript*>::Tuple(mozilla::Tuple<js::NativeObject*, js::LazyScript*> const&)
311
0
  Tuple(Tuple&& aOther) : Impl(std::move(aOther)) { }
Unexecuted instantiation: mozilla::Tuple<bool, nsTString<char16_t> >::Tuple(mozilla::Tuple<bool, nsTString<char16_t> >&&)
Unexecuted instantiation: mozilla::Tuple<bool, mozilla::CopyableErrorResult>::Tuple(mozilla::Tuple<bool, mozilla::CopyableErrorResult>&&)
Unexecuted instantiation: mozilla::Tuple<unsigned long, mozilla::layers::LayersIPCChannel*>::Tuple(mozilla::Tuple<unsigned long, mozilla::layers::LayersIPCChannel*>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, unsigned long*>::Tuple(mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, unsigned long*>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>::Tuple(mozilla::Tuple<mozilla::layers::LayersId, mozilla::layers::GeckoContentController*>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>::Tuple(mozilla::Tuple<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WebRenderError>&&)
Unexecuted instantiation: mozilla::Tuple<nsTString<char>, nsTArray<unsigned char> >::Tuple(mozilla::Tuple<nsTString<char>, nsTArray<unsigned char> >&&)
Unexecuted instantiation: mozilla::Tuple<int, bool>::Tuple(mozilla::Tuple<int, bool>&&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, JSScript*>::Tuple(mozilla::Tuple<js::NativeObject*, JSScript*>&&)
Unexecuted instantiation: mozilla::Tuple<js::NativeObject*, js::LazyScript*>::Tuple(mozilla::Tuple<js::NativeObject*, js::LazyScript*>&&)
312
  explicit Tuple(const Pair<A, B>& aOther)
313
    : Impl(aOther.first(), aOther.second()) { }
314
  explicit Tuple(Pair<A, B>&& aOther) : Impl(std::forward<A>(aOther.first()),
315
                                    std::forward<B>(aOther.second())) { }
316
  explicit Tuple(const std::pair<A, B>& aOther)
317
    : Impl(aOther.first, aOther.second) { }
318
  explicit Tuple(std::pair<A, B>&& aOther) : Impl(std::forward<A>(aOther.first),
319
                                    std::forward<B>(aOther.second)) { }
320
321
  template <typename AArg, typename BArg>
322
  Tuple& operator=(const Tuple<AArg, BArg>& aOther)
323
0
  {
324
0
    static_cast<Impl&>(*this) = aOther;
325
0
    return *this;
326
0
  }
Unexecuted instantiation: mozilla::Tuple<bool&, nsTString<char16_t>&>& mozilla::Tuple<bool&, nsTString<char16_t>&>::operator=<bool const&, nsTString<char16_t> const&>(mozilla::Tuple<bool const&, nsTString<char16_t> const&> const&)
Unexecuted instantiation: mozilla::Tuple<bool&, mozilla::CopyableErrorResult&>& mozilla::Tuple<bool&, mozilla::CopyableErrorResult&>::operator=<bool const&, mozilla::CopyableErrorResult const&>(mozilla::Tuple<bool const&, mozilla::CopyableErrorResult const&> const&)
327
  template <typename AArg, typename BArg>
328
  Tuple& operator=(Tuple<AArg, BArg>&& aOther)
329
0
  {
330
0
    static_cast<Impl&>(*this) = std::move(aOther);
331
0
    return *this;
332
0
  }
Unexecuted instantiation: mozilla::Tuple<nsresult&, mozilla::Encoding const*&>& mozilla::Tuple<nsresult&, mozilla::Encoding const*&>::operator=<nsresult, mozilla::NotNull<mozilla::Encoding const*> >(mozilla::Tuple<nsresult, mozilla::NotNull<mozilla::Encoding const*> >&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Encoding const*&, unsigned long&>& mozilla::Tuple<mozilla::Encoding const*&, unsigned long&>::operator=<mozilla::Encoding const*, unsigned long>(mozilla::Tuple<mozilla::Encoding const*, unsigned long>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::Tuple<mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >(mozilla::Tuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>& mozilla::Tuple<RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::operator=<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >(mozilla::Tuple<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >&&)
Unexecuted instantiation: mozilla::Tuple<int&, mozilla::Maybe<mozilla::image::WriteState>&>& mozilla::Tuple<int&, mozilla::Maybe<mozilla::image::WriteState>&>::operator=<int, mozilla::Maybe<mozilla::image::WriteState> >(mozilla::Tuple<int, mozilla::Maybe<mozilla::image::WriteState> >&&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>& mozilla::Tuple<RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&>::operator=<mozilla::dom::ContentParent*, mozilla::dom::TabParent*>(mozilla::Tuple<mozilla::dom::ContentParent*, mozilla::dom::TabParent*>&&)
333
  Tuple& operator=(const Tuple& aOther)
334
  {
335
    static_cast<Impl&>(*this) = aOther;
336
    return *this;
337
  }
338
  Tuple& operator=(Tuple&& aOther)
339
  {
340
    static_cast<Impl&>(*this) = std::move(aOther);
341
    return *this;
342
  }
343
  template <typename AArg, typename BArg>
344
  Tuple& operator=(const Pair<AArg, BArg>& aOther)
345
  {
346
    Impl::Head(*this) = aOther.first();
347
    Impl::Tail(*this).Head(*this) = aOther.second();
348
    return *this;
349
  }
350
  template <typename AArg, typename BArg>
351
  Tuple& operator=(Pair<AArg, BArg>&& aOther)
352
0
  {
353
0
    Impl::Head(*this) = std::forward<AArg>(aOther.first());
354
0
    Impl::Tail(*this).Head(*this) = std::forward<BArg>(aOther.second());
355
0
    return *this;
356
0
  }
357
  template <typename AArg, typename BArg>
358
  Tuple& operator=(const std::pair<AArg, BArg>& aOther)
359
  {
360
    Impl::Head(*this) = aOther.first;
361
    Impl::Tail(*this).Head(*this) = aOther.second;
362
    return *this;
363
  }
364
  template <typename AArg, typename BArg>
365
  Tuple& operator=(std::pair<AArg, BArg>&& aOther)
366
  {
367
    Impl::Head(*this) = std::forward<AArg>(aOther.first);
368
    Impl::Tail(*this).Head(*this) = std::forward<BArg>(aOther.second);
369
    return *this;
370
  }
371
};
372
373
/**
374
 * Specialization of Tuple for zero arguments.
375
 * This is necessary because if the primary template were instantiated with
376
 * an empty parameter pack, the 'Tuple(Elements...)' constructors would
377
 * become illegal overloads of the default constructor.
378
 */
379
template <>
380
class Tuple<> {};
381
382
namespace detail {
383
384
/*
385
 * Helper functions for implementing Get<N>(tuple).
386
 * These functions take a TupleImpl<Index, Elements...>, with Index being
387
 * explicitly specified, and Elements being deduced. By passing a Tuple
388
 * object as argument, template argument deduction will do its magic and
389
 * cast the tuple to the base class which stores the element at Index.
390
 */
391
392
// Const reference version.
393
template<std::size_t Index, typename... Elements>
394
auto TupleGetHelper(TupleImpl<Index, Elements...>& aTuple)
395
    -> decltype(TupleImpl<Index, Elements...>::Head(aTuple))
396
212
{
397
212
  return TupleImpl<Index, Elements...>::Head(aTuple);
398
212
}
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefIbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3net14ConnectionDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3net14LookupArgumentEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3net10SocketDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3net8HttpDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3net16WebSocketRequestEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3net7DnsDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3net8RcwnDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIbES3_S2_I8nsresultES2_I9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIbES2_I8nsresultES2_I9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefI8nsresultES2_I9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefI9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIdEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrI18nsILoadContextInfoE24StoreCopyPassByConstLRefIbES5_I9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIbES2_I9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefI9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIK8nsresultES5_S2_IKmES2_IKjES2_IK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSF_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIK8nsresultES2_IKmES2_IKjES2_IK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSF_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIKmES2_IKjES2_IK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIKjES2_IK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefIK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIK8nsresultES2_IKNS_3net20ResourceTimingStructEES2_IKNS_9TimeStampEES2_IKNS6_17nsHttpHeaderArrayEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSH_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIKNS_3net20ResourceTimingStructEES2_IKNS_9TimeStampEES2_IKNS3_17nsHttpHeaderArrayEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIKNS_9TimeStampEES2_IKNS_3net17nsHttpHeaderArrayEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIKNS_3net17nsHttpHeaderArrayEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIKlES4_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIKlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIK8nsresultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIK8nsresultES2_IKNS_3net20ResourceTimingStructEES2_IKNS6_17nsHttpHeaderArrayEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIKNS_3net20ResourceTimingStructEES2_IKNS3_17nsHttpHeaderArrayEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIKNS_3net17nsHttpHeaderArrayEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIK9nsTStringIcEES6_S6_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIK9nsTStringIcEES6_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI8nsresultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3net16HttpChannelChildEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJP6socketS3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP6socketEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsAutoPtrINS_11MediaPacketEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS3_17PBackgroundParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINSt3__16vectorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSF_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrINS_3ipc14MessageChannelEE24StoreCopyPassByConstLRefINS3_4SideEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_3ipc4SideEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrIN3IPC7MessageEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrI15nsJARInputThunkE24StoreCopyPassByConstLRefIbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI8nsresultES2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefImEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrI16mozIStorageErrorEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_7storage9ResultSetEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_21WebrtcGmpVideoEncoderEE13GMPVideoCodecijS2_INS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ13GMPVideoCodecij6RefPtrINS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJij6RefPtrINS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJj6RefPtrINS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ6RefPtrINS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEN6webrtc10VideoFrameENSt3__16vectorINS5_9FrameTypeENS7_9allocatorIS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJN6webrtc10VideoFrameENSt3__16vectorINS2_9FrameTypeENS4_9allocatorIS6_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNSt3__16vectorIN6webrtc9FrameTypeENS2_9allocatorIS5_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEjjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJjjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_21WebrtcGmpVideoDecoderEEPKN6webrtc10VideoCodecEiS2_INS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPKN6webrtc10VideoCodecEi6RefPtrINS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJi6RefPtrINS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ6RefPtrINS_19GmpInitDoneRunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_21WebrtcGmpVideoDecoderEE9nsAutoPtrINS_13GMPDecodeDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ9nsAutoPtrINS_13GMPDecodeDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_21WebrtcGmpVideoDecoderEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_6layers5ImageEE24StoreCopyPassByConstLRefINS_3gfx12IntSizeTypedINS7_12UnknownUnitsEEEES6_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_3gfx12IntSizeTypedINS3_12UnknownUnitsEEEES2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_13TransportFlowEES4_9nsAutoPtrINS_19MediaPipelineFilterEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ6RefPtrINS_13TransportFlowEE9nsAutoPtrINS_19MediaPipelineFilterEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ9nsAutoPtrINS_19MediaPipelineFilterEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_3dom17WebrtcGlobalChildEi9nsAutoPtrINS_6VectorIS5_INS_13RTCStatsQueryEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJi9nsAutoPtrINS_6VectorIS2_INS_13RTCStatsQueryEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ9nsAutoPtrINS_6VectorIS2_INS_13RTCStatsQueryEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_3dom17WebrtcGlobalChildEiPKcEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJiPKcEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJPKcEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_3dom17WebrtcGlobalChildEi9nsAutoPtrINSt3__15dequeINS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEENSB_ISD_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSI_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJi9nsAutoPtrINSt3__15dequeINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSF_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ9nsAutoPtrINSt3__15dequeINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSF_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ8nsresult9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsAutoPtrINS_6VectorIS2_INS_13RTCStatsQueryEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ16already_AddRefedI16nsDOMDataChannelE6RefPtrINS_3dom22PeerConnectionObserverEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ6RefPtrINS_3dom22PeerConnectionObserverEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_16JsepOfferOptionsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_16JsepOfferOptionsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEiS8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJiNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ8nsCOMPtrI16nsIWeakReferenceEtNSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEESB_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJtNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:_ZN7mozilla6detail14TupleGetHelperILm0EJNS_3dom19PCObserverStateTypeEN12_GLOBAL__N_122WrappableJSErrorResultEPN2JS5RealmEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:_ZN7mozilla6detail14TupleGetHelperILm1EJN12_GLOBAL__N_122WrappableJSErrorResultEPN2JS5RealmEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJPN2JS5RealmEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE8nsresult9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ8nsresult9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_S8_mEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_mEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__13setINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_4lessIS9_EENS7_IS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSF_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_S8_mS8_S8_NS2_6vectorIS8_NS6_IS8_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_mS8_S8_NS2_6vectorIS8_NS6_IS8_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEmS8_S8_NS2_6vectorIS8_NS6_IS8_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJmNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_NS2_6vectorIS8_NS6_IS8_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_NS2_6vectorIS8_NS6_IS8_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm5EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_6vectorIS8_NS6_IS8_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm6EJNSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES2_INS_13TransportFlowEENSt3__112basic_stringIcNSA_11char_traitsIcEENSA_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSO_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ9nsAutoPtrINS_12PacketDumperEE6RefPtrINS_13TransportFlowEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSM_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ6RefPtrINS_13TransportFlowEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSJ_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSG_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm5EJPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm6EJPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm7EJPNS_18TransportLayerSrtpEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJbbbNSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJbbNSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJbNSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJNSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJbbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_8NrIceCtxENS2_14GatheringStateEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_8NrIceCtx14GatheringStateEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_8NrIceCtxENS2_15ConnectionStateEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_8NrIceCtx15ConnectionStateEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES8_tS8_tS8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtS8_tS8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJtNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtS8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtS8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJtNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm5EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtS8_tS8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJtNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtS8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtS8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJtNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_13TransportFlowEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJP17nsIUDPSocketChild8nsCOMPtrI14nsIEventTargetEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ8nsCOMPtrI14nsIEventTargetEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_14nr_udp_messageEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsTStringIcEtEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJtEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_3net7NetAddrE9nsAutoPtrINS_11MediaPacketEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ9nsAutoPtrINS_11MediaPacketEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_3dom14TCPSocketChildEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_11NrSocketIpc16NrSocketIpcStateEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJjjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_14nr_tcp_messageEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsTStringIcEtS3_tS3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJt9nsTStringIcEtS3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ9nsTStringIcEtS3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJt9nsTStringIcEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ9nsTStringIcEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsAutoPtrI8nsTArrayIhEEjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsAutoPtrINSt3__15dequeIPNS_14TransportLayerENS3_9allocatorIS6_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ8nsTArrayINS_13NrIceStunAddrEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_9UniquePtrINS_6layers11PaintThreadENS_13DefaultDeleteIS4_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES2_INS3_19LayersObserverEpochEES2_IiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_6layers19LayersObserverEpochEES2_IiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_16ParentLayerPixelEfEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES2_INS_5MaybeINS3_15ZoomConstraintsEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_5MaybeINS_6layers15ZoomConstraintsEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES5_S2_INS3_11FocusTargetEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES2_INS3_11FocusTargetEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefINS_6layers11FocusTargetEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEE20StoreRefPtrPassByPtrINS3_15APZCTreeManagerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ20StoreRefPtrPassByPtrINS_6layers15APZCTreeManagerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ16already_AddRefedINS_8RunnableEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_6layers22AsyncPanZoomControllerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_16ParentLayerPixelEfEEE20StoreRefPtrPassByPtrIKNS_6layers22OverscrollHandoffChainEES8_IKNS9_22AsyncPanZoomControllerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSH_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ20StoreRefPtrPassByPtrIKNS_6layers22OverscrollHandoffChainEES2_IKNS3_22AsyncPanZoomControllerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ20StoreRefPtrPassByPtrIKNS_6layers22AsyncPanZoomControllerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers22GeckoContentController7TapTypeEES2_INS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEES2_ItES2_INS3_19ScrollableLayerGuidEES2_ImEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSH_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEES2_ItES2_INS_6layers19ScrollableLayerGuidEES2_ImEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefItES2_INS_6layers19ScrollableLayerGuidEES2_ImEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES2_ImEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefImEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers12FrameMetricsEES2_INS_3gfx10PointTypedINS_16ParentLayerPixelEfEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_16ParentLayerPixelEfEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3dom7ElementEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES2_INS_3gfx9RectTypedINS_8CSSPixelEfEEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_3gfx9RectTypedINS_8CSSPixelEfEEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_17PinchGestureInput16PinchGestureTypeEES2_INS_6layers19ScrollableLayerGuidEES2_INS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEES2_ItEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSG_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES2_INS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEES2_ItEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefINS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEES2_ItEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefItEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES2_INS3_22GeckoContentController14APZStateChangeEES2_IiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_6layers22GeckoContentController14APZStateChangeEES2_IiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefImES2_I9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_6layers20TextureDeallocParamsEPNS_16ReentrantMonitorEPbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_16ReentrantMonitorEPbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJPbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_6layers20TextureDeallocParamsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJmPNS_6layers16LayersIPCChannelEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_6layers16LayersIPCChannelEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers11KeyboardMapEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefImES2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByRRefI8nsTArrayINS_6layers19ScrollableLayerGuidEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ19StoreCopyPassByRRefI8nsTArrayINS_6layers19ScrollableLayerGuidEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIfEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByRRefI8nsTArrayIjEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ19StoreCopyPassByRRefI8nsTArrayIjEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES2_INS3_16AsyncDragMetricsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_6layers16AsyncDragMetricsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES2_INS_3gfx10PointTypedINS_11ScreenPixelEfEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_11ScreenPixelEfEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIN4base14FileDescriptorEES5_S2_INS_6layers8LayersIdEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIN4base14FileDescriptorEES2_INS_6layers8LayersIdEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefImES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers22CompositorBridgeParentEPmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIiES3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefImES2_I8nsTArrayINS_6layers19ScrollableLayerGuidEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI8nsTArrayINS_6layers19ScrollableLayerGuidEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_6layers8LayersIdEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_6layers8LayersIdEPNS2_22GeckoContentControllerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_6layers22GeckoContentControllerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_9TimeStampEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers24PCompositorManagerParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_9TimeStampEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_6layers14ImageContainerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers15SynchronousTaskEPNS2_19AsyncCanvasRendererEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_6layers19AsyncCanvasRendererEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers15SynchronousTaskEPNS2_11ImageClientEPNS2_14ImageContainerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_6layers11ImageClientEPNS2_14ImageContainerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJPNS_6layers14ImageContainerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers17PImageBridgeChildEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers15SynchronousTaskEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_6layers17ImageBridgeParentEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers15SynchronousTaskEP6RefPtrINS2_11ImageClientEENS2_16CompositableTypeEPNS2_14ImageContainerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP6RefPtrINS_6layers11ImageClientEENS3_16CompositableTypeEPNS3_14ImageContainerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNS_6layers16CompositableTypeEPNS2_14ImageContainerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJPNS_6layers14ImageContainerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers15SynchronousTaskENS2_12CanvasClient16CanvasClientTypeENS2_12TextureFlagsEP6RefPtrIS5_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_6layers12CanvasClient16CanvasClientTypeENS2_12TextureFlagsEP6RefPtrIS3_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNS_6layers12TextureFlagsEP6RefPtrINS2_12CanvasClientEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJP6RefPtrINS_6layers12CanvasClientEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers15SynchronousTaskEPNS2_16AllocShmemParamsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_6layers16AllocShmemParamsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers15SynchronousTaskEPNS_3ipc5ShmemEPbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_3ipc5ShmemEPbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_6layers18CompositableHandleEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers18PImageBridgeParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIfES3_S2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIfES2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers28PUiCompositorControllerChildEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers29PUiCompositorControllerParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJiNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEdEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEdEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJdEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_3gfx14GPUProcessHostEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3gfx17PVsyncBridgeChildEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3gfx18PVsyncBridgeParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6layers17SurfaceDescriptorEES2_ImES2_INS_3gfx9RectTypedINS7_12UnknownUnitsEfEEESB_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefImES2_INS_3gfx9RectTypedINS4_12UnknownUnitsEfEEES8_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefINS_3gfx9RectTypedINS3_12UnknownUnitsEfEEES7_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefINS_3gfx9RectTypedINS3_12UnknownUnitsEfEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrIN2vr9IVRSystemEE24StoreCopyPassByConstLRefIjES6_IdES8_S6_ImES6_INS_3gfx16VRManagerPromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIjES2_IdES4_S2_ImES2_INS_3gfx16VRManagerPromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIdES3_S2_ImES2_INS_3gfx16VRManagerPromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIdES2_ImES2_INS_3gfx16VRManagerPromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefImES2_INS_3gfx16VRManagerPromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm5EJ24StoreCopyPassByConstLRefINS_3gfx16VRManagerPromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3gfx16VRManagerPromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3gfx12PVRGPUParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_3gfx14VRManagerChildEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjE20StoreRefPtrPassByPtrINS_3dom15VREventObserverEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ20StoreRefPtrPassByPtrINS_3dom15VREventObserverEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3gfx16PVRManagerParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_3gfx15VRManagerParentEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_3gfx15VRProcessParentEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_2wr12MemoryReportEE20StoreRefPtrPassByPtrINS_10MozPromiseIS4_bLb1EE7PrivateEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ20StoreRefPtrPassByPtrINS_10MozPromiseINS_2wr12MemoryReportEbLb1EE7PrivateEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_2wr10WrWindowIdEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_2wr10WrWindowIdEE19StoreCopyPassByRRefINS_9UniquePtrINS3_13RendererEventENS_13DefaultDeleteIS8_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ19StoreCopyPassByRRefINS_9UniquePtrINS_2wr13RendererEventENS_13DefaultDeleteIS5_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers22CompositorBridgeParentENS_2wr14WrPipelineInfoENS_9TimeStampES7_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_2wr14WrPipelineInfoENS_9TimeStampES4_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNS_9TimeStampES2_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJNS_9TimeStampEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_2wr17RenderTextureHostEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers22CompositorBridgeParentEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_6layers22CompositorBridgeParentENS_2wr14WebRenderErrorEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_2wr14WebRenderErrorEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ6RefPtrINS_3gfx13SourceSurfaceEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIiES3_S2_IjES2_I9nsTStringIDsEES7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiES2_IjES2_I9nsTStringIDsEES7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIjES2_I9nsTStringIDsEES6_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefI9nsTStringIDsEES5_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefI9nsTStringIDsEE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm5EJ20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES2_IiES8_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiES3_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIiE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES2_IjES2_IdES9_S9_S8_S8_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIjES2_IdES4_S4_S3_S3_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIdES3_S3_S2_IjES4_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIdES3_S2_IjES4_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefIdES2_IjES4_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm5EJ24StoreCopyPassByConstLRefIjES3_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm6EJ24StoreCopyPassByConstLRefIjE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm7EJ20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES2_IN9nsIWidget17TouchPointerStateEES2_INS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES2_IdES3_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSH_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIN9nsIWidget17TouchPointerStateEES2_INS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES2_IdES2_IjE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSH_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES2_IdES2_IjE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIdES2_IjE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefIjE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES2_IbE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIbE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_13TimedMetadataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3dom4BlobEE27StoreConstPtrPassByConstPtrIcEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ27StoreConstPtrPassByConstPtrIcEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3gfx12IntSizeTypedINS3_12UnknownUnitsEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3dom16HTMLMediaElementEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3dom16MediaStreamTrackEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIK9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE24StoreCopyPassByConstLRefIiES5_INS_12MediaSegment4TypeEE20StoreRefPtrPassByPtrINS_11MediaStreamEES6_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiES2_INS_12MediaSegment4TypeEE20StoreRefPtrPassByPtrINS_11MediaStreamEES3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefINS_12MediaSegment4TypeEE20StoreRefPtrPassByPtrINS_11MediaStreamEES2_IiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ20StoreRefPtrPassByPtrINS_11MediaStreamEE24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE20StoreRefPtrPassByPtrINS_11MediaStreamEE24StoreCopyPassByConstLRefIiES9_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ20StoreRefPtrPassByPtrINS_11MediaStreamEE24StoreCopyPassByConstLRefIiES6_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIiES3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_12MediaDecoder9PlayStateEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI21nsMainThreadPtrHandleI12nsIPrincipalEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI16already_AddRefedINS_6layers15KnowsCompositorEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5MaybeINS_5media8TimeUnitEEEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5media13TimeIntervalsEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5media8TimeUnitEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorIbEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_8CDMProxyEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_18MediaPlaybackEvent9EventTypeEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_17MediaDecoderOwner15NextFrameStatusEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI6RefPtrINS_9AudioDataEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI6RefPtrINS_9VideoDataEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_7SeekJobENS_24MediaDecoderStateMachine11StateObject15EventVisibilityEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_24MediaDecoderStateMachine11StateObject15EventVisibilityEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_7SeekJobES2_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_7SeekJobEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_5MaybeINS_5media8TimeUnitEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_9UniquePtrINS_9MediaInfoENS_13DefaultDeleteIS4_EEEEES2_INS3_I15nsDataHashtableI16nsCStringHashKey9nsTStringIcEENS5_ISD_EEEEES2_INS_27MediaDecoderEventVisibilityEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSK_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ19StoreCopyPassByRRefINS_9UniquePtrI15nsDataHashtableI16nsCStringHashKey9nsTStringIcEENS_13DefaultDeleteIS8_EEEEES2_INS_27MediaDecoderEventVisibilityEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSG_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ19StoreCopyPassByRRefINS_27MediaDecoderEventVisibilityEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_12MediaDecoder9PlayStateEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorIdEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorI21nsMainThreadPtrHandleI12nsIPrincipalEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_5media8TimeUnitEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_12MediaDecoderEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_18MediaPlaybackEventEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_15VideoDecodeModeEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_10SeekTargetEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_11MediaResultEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI9nsAutoPtrINS_9MediaInfoEEES2_INS_27MediaDecoderEventVisibilityEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ19StoreCopyPassByRRefINS_27MediaDecoderEventVisibilityEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_18DecoderDoctorEventEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_14SourceListenerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3dom13MediaRecorder7Session15EncoderListenerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_5media13TimeIntervalsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI8nsTArrayIhEES2_I9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ19StoreCopyPassByRRefI9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_9TrackInfo9TrackTypeEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPKv6RefPtrINS_17AudioDataListenerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ6RefPtrINS_17AudioDataListenerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_5MaybeIPKvEE6RefPtrINS_17AudioDataListenerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_5media8TimeUnitEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_9MediaData4TypeEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_7EnumSetINS_9TrackInfo9TrackTypeEjEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_12AudioSegmentEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_12MediaEncoder15EncoderListenerEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_12VideoSegmentEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES2_I21NS_ConvertUTF8toUTF16EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES2_I8nsresultES2_I9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI8nsresultES2_I9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefI9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16ES2_INS_3dom19MediaKeyMessageTypeEES2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_3dom19MediaKeyMessageTypeEES2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefI8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES2_INS_3dom14MediaKeyStatusEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_3dom14MediaKeyStatusEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16ES2_IlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS6_EES2_IS5_ESA_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIKjES4_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIKjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp16ChromiumCDMChildEFbjRK9nsTStringIcEEES2_IKjES2_IS7_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSG_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIKjES2_IK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjEES2_IS5_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIKjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS6_S6_RK9nsTStringIcEEES2_IS5_ESE_SE_S2_IS9_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSH_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIKjES4_S4_S2_IK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIKjES4_S2_IK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKjRK8nsTArrayIhEEES2_IS7_ES2_IS9_ES2_ISD_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSM_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIK9nsTStringIcEES2_IKjES2_IK8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIKjES2_IK8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIK8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERK8nsTArrayINS3_17CDMKeyInformationEEEES2_IS7_ES2_ISC_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSK_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIK9nsTStringIcEES2_IK8nsTArrayINS_3gmp17CDMKeyInformationEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIK8nsTArrayINS_3gmp17CDMKeyInformationEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKdEES2_IS7_ES2_IS9_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSH_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIK9nsTStringIcEES2_IKdEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIKdEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcEEES2_IS7_EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIK9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES3_S3_S3_S2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIjES3_S3_S2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefIjES3_S2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIjES2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefI8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES3_S2_I9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIjES2_I9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_IjES2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIjES2_I8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES2_I9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3gmp9GMPParentEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJj9nsTStringIcES2_IDsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ9nsTStringIcES2_IDsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ9nsTStringIDsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI21NS_ConvertUTF8toUTF16EEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_3gmp9GMPParentEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_INS_23OriginAttributesPatternEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_23OriginAttributesPatternEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrINS_7MonitorEES2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ17StorePtrPassByPtrIbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsTStringIcEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsTStringIcE8nsTArrayIhEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ8nsTArrayIhEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_3ipc8EndpointINS_3dom25PVideoDecoderManagerChildEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3dom26PVideoDecoderManagerParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefIlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI6RefPtrINS_19TrackBuffersManagerEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI16already_AddRefedINS_15MediaByteBufferEEES2_INS_22SourceBufferAttributesEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ19StoreCopyPassByRRefINS_22SourceBufferAttributesEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_16SourceBufferTaskEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_5media8IntervalINS3_8TimeUnitEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_12MediaRawDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_9TrackInfo9TrackTypeEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES2_I9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES2_I9nsTStringIcEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES2_IjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES2_I9nsTStringIcEE28StoreConstRefPassByConstLRefINS_3ipc13PrincipalInfoEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEE28StoreConstRefPassByConstLRefINS_3ipc13PrincipalInfoEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ28StoreConstRefPassByConstLRefINS_3ipc13PrincipalInfoEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES2_IiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES2_IiES2_INS3_22VideoCaptureCapabilityEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiES2_INS_6camera22VideoCaptureCapabilityEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefINS_6camera22VideoCaptureCapabilityEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIjES2_I19SPDNotificationTypeEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI19SPDNotificationTypeEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI19SPDNotificationTypeEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_IS3_IDsEES5_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI9nsTStringIDsEES2_IS3_IcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ8nsCOMPtrI12nsIUDPSocketES2_I14nsIEventTargetE14UDPAddressInfoEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ8nsCOMPtrI14nsIEventTargetE14UDPAddressInfoEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ14UDPAddressInfoEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ14UDPAddressInfoEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI14gfxSurfaceTypeES2_INS_7plugins14NPRemoteWindowEES2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefINS_7plugins14NPRemoteWindowEES2_IbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_7plugins20PFunctionBrokerChildEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_7plugins21PFunctionBrokerParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3dom6IdTypeINS3_9TabParentEEEES2_I9nsTStringIcEES2_IS8_IDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_IS3_IDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_25PProcessHangMonitorParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3dom6IdTypeINS3_9TabParentEEEES2_IbES2_INS_6layers19LayersObserverEpochEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIbES2_INS_6layers19LayersObserverEpochEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefINS_6layers19LayersObserverEpochEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_24PProcessHangMonitorChildEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_3dom18ContentProcessHostEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3dom13ContentParent14ShutDownMethodEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJibEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_9UniquePtrINS_3dom9U2FResultENS_13DefaultDeleteIS5_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIDsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3dom7ElementEE24StoreCopyPassByConstLRefIiES2_I6nsAtomEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiE20StoreRefPtrPassByPtrI6nsAtomEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ20StoreRefPtrPassByPtrI6nsAtomEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrI28nsIWebBrowserPersistDocumentE24StoreCopyPassByConstLRefI8nsresultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefI8nsresultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrI28nsIWebBrowserPersistDocumentES2_I15nsIOutputStreamE24StoreCopyPassByConstLRefI9nsTStringIcEES7_I8nsresultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ20StoreRefPtrPassByPtrI15nsIOutputStreamE24StoreCopyPassByConstLRefI9nsTStringIcEES5_I8nsresultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_I8nsresultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefI8nsresultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_9UniquePtrIN19nsWebBrowserPersist8WalkDataENS_13DefaultDeleteIS5_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3dom24XMLHttpRequestMainThread17ProgressEventTypeEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNS_19CopyableErrorResultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJbNS_19CopyableErrorResultEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefItEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3dom35ServiceWorkerRegistrationDescriptorEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3dom10SDBRequestEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIDsEE20StoreRefPtrPassByPtrINS_3dom7PromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ20StoreRefPtrPassByPtrINS_3dom7PromiseEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrI31nsIPresentationSessionTransportEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefINS_3dom31PresentationTCPSessionTransport10ReadyStateEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByLRefI8nsTArrayIjEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ19StoreCopyPassByLRefI8nsTArrayIjEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrI7nsINodeEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_4a11y7SelDataEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_4a11y10AccessibleEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_3dom5EventEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_14PProfilerChildEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrI9nsTStringIcEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ27StoreConstPtrPassByConstPtrIcEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS2_INS_10extensions25WebExtensionContentScriptEELm8EEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayI6RefPtrINS_10extensions25WebExtensionContentScriptEELm8EEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ10AutoTArrayI6RefPtrINS_10extensions25WebExtensionContentScriptEELm8EEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_10extensions18PStreamFilterChildEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_10extensions19PStreamFilterParentEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI8nsTArrayIhEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_IiES5_S2_IbES2_IlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiES2_I9nsTStringIcEES2_IbES2_IlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ24StoreCopyPassByConstLRefI9nsTStringIcEES2_IbES2_IlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJ24StoreCopyPassByConstLRefIbES2_IlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm4EJ24StoreCopyPassByConstLRefIlEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsTStringIcE8nsTArrayIiElEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ8nsTArrayIiElEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJlEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsTStringIcES3_8nsTArrayIiElEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ9nsTStringIcE8nsTArrayIiElEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ8nsTArrayIiElEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJlEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsTStringIcES2_IDsE8nsCOMPtrI10nsIVariantEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ9nsTStringIDsE8nsCOMPtrI10nsIVariantEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ8nsCOMPtrI10nsIVariantEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrINS_3dom16HTMLInputElementEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrI5nsFooEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrIcEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrIbEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ27StoreConstPtrPassByConstPtrIcE24StoreCopyPassByConstLRefIjEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIiES3_S3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiES3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIiES3_S3_S3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ24StoreCopyPassByConstLRefIiES3_S3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ27StoreConstPtrPassByConstPtrIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ18StoreCopyPassByPtrIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ23StoreCopyPassByConstPtrIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ18StoreRefPassByLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ18StoreRefPassByLRefINS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreCopyPassByValueIN15TestThreadUtils3SpyEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefIN15TestThreadUtils3SpyEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefIN15TestThreadUtils3SpyEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ18StoreRefPassByLRefIN15TestThreadUtils3SpyEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ20StoreRefPtrPassByPtrIN15TestThreadUtils16SpyWithISupportsEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ17StorePtrPassByPtrIN15TestThreadUtils3SpyEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ27StoreConstPtrPassByConstPtrIN15TestThreadUtils3SpyEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: mediapipeline_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm0EJPN12_GLOBAL__N_116TestAgentReceiveEPNS2_13TestAgentSendEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: mediapipeline_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm1EJPN12_GLOBAL__N_113TestAgentSendEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsAutoPtrINS_19MediaPipelineFilterEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefINS_9UniquePtrIN14CDMStorageTest8NodeInfoENS_13DefaultDeleteIS5_EEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ18StoreRefPassByLRefI14GMPTestMonitorEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEE17StorePtrPassByPtrIP20GMPVideoDecoderProxyES6_IP12GMPVideoHostEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ17StorePtrPassByPtrIP20GMPVideoDecoderProxyES2_IP12GMPVideoHostEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ17StorePtrPassByPtrIP12GMPVideoHostEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ28StoreConstRefPassByConstLRefI13GMPVideoCodecES2_I8nsTArrayIhEE17StorePtrPassByPtrI28GMPVideoDecoderCallbackProxyE24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ28StoreConstRefPassByConstLRefI8nsTArrayIhEE17StorePtrPassByPtrI28GMPVideoDecoderCallbackProxyE24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJ17StorePtrPassByPtrI28GMPVideoDecoderCallbackProxyE24StoreCopyPassByConstLRefIiEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI9SomeEventEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ19StoreCopyPassByRRefI6RefPtrI10RefCounterEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJjPNS_14NrIceCandidateEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_14NrIceCandidateEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJmiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJmNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNS_8NrIceCtx11ControllingEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJiiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJiiPKhiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJiPKhiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJPKhiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm0EJPN12_GLOBAL__N_111IceTestPeerENS2_11TrickleModeEbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm1EJN12_GLOBAL__N_111TrickleModeEbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm0EJiiN12_GLOBAL__N_113ConsentStatusEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm1EJiN12_GLOBAL__N_113ConsentStatusEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm2EJN12_GLOBAL__N_113ConsentStatusEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJmPNSt3__16vectorINS_18NrIceCandidatePairENS2_9allocatorIS4_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNSt3__16vectorINS_18NrIceCandidatePairENS2_9allocatorIS4_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ18nr_socket_tcp_typeNSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEtPP10nr_socket_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtPP10nr_socket_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJtPP10nr_socket_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm3EJPP10nr_socket_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJP10nr_socket_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJP10nr_socket_S3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP10nr_socket_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJP10nr_socket_miEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJmiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJP10nr_socket_S3_PKcmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP10nr_socket_PKcmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJPKcmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJP10nr_socket_P18nr_transport_addr_PKcmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP18nr_transport_addr_PKcmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJP18nr_transport_addr_P10nr_socket_PKcmEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS9_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPbEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: runnable_utils_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm0EJPN12_GLOBAL__N_111TargetClassEiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: runnable_utils_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm0EJ6RefPtrIN12_GLOBAL__N_110DestructorEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJ9nsAutoPtrINS_11MediaPacketEE6RefPtrINS_13TransportFlowEEPNS_22TransportLayerLoopbackEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSB_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ6RefPtrINS_13TransportFlowEEPNS_22TransportLayerLoopbackEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJPNS_22TransportLayerLoopbackEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: sctp_unittest.cpp:_ZN7mozilla6detail14TupleGetHelperILm0EJPN12_GLOBAL__N_117TransportTestPeerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJmPKciEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPKciEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_12TestNrSocketEP18nr_transport_addr_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP18nr_transport_addr_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_12NrSocketBaseEiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_12TestNrSocketE18nr_transport_addr_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ18nr_transport_addr_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_12TestNrSocketEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_12TestNrSocketES3_EEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_12TestNrSocketEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_12TestNrSocketEPPNS_12NrSocketBaseEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPPNS_12NrSocketBaseEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_12NrSocketBaseEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: transport_unittests.cpp:_ZN7mozilla6detail14TupleGetHelperILm0EJPN12_GLOBAL__N_117TransportTestPeerEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPtEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS4_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPNS_18TransportLayerDtlsEPNS_11MediaPacketEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS7_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPNS_11MediaPacketEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPKcS3_NSt3__16vectorINS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS9_ISB_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSF_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPKcNSt3__16vectorINS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEENS9_ISB_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSF_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJNSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSD_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEiEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP8JSScriptEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPN2js10LazyScriptEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP8JSObjectN2js19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPN2js12NativeObjectEP8JSScriptEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPN2js12NativeObjectEPNS2_10LazyScriptEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPN2js12NativeObjectEP8JSObjectNS2_19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJSA_EEE
_ZN7mozilla6detail14TupleGetHelperILm0EJPN2js12HelperThreadEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS6_EEE
Line
Count
Source
396
24
{
397
24
  return TupleImpl<Index, Elements...>::Head(aTuple);
398
24
}
_ZN7mozilla6detail14TupleGetHelperILm0EJP8JSObjectEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERNS0_9TupleImplIXT_EJS5_EEE
Line
Count
Source
396
188
{
397
188
  return TupleImpl<Index, Elements...>::Head(aTuple);
398
188
}
399
400
// Non-const reference version.
401
template<std::size_t Index, typename... Elements>
402
auto TupleGetHelper(const TupleImpl<Index, Elements...>& aTuple)
403
    -> decltype(TupleImpl<Index, Elements...>::Head(aTuple))
404
0
{
405
0
  return TupleImpl<Index, Elements...>::Head(aTuple);
406
0
}
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEdEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJiNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEdEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJb9nsTStringIDsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ9nsTStringIDsEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ8nsCOMPtrI10nsIVariantEjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPKc8nsCOMPtrI10nsIVariantEjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJ8nsTArrayINS_4PairI9nsTStringIcE8nsCOMPtrI10nsIVariantEEEEjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJSC_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPKc8nsTArrayINS_4PairI9nsTStringIcE8nsCOMPtrI10nsIVariantEEEEjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJSE_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJjEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS3_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPN2js12NativeObjectEP8JSScriptEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP8JSScriptEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS5_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPN2js12NativeObjectEPNS2_10LazyScriptEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJPN2js10LazyScriptEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS6_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm0EJPN2js12NativeObjectEP8JSObjectNS2_19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJSA_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm1EJP8JSObjectN2js19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS8_EEE
Unexecuted instantiation: _ZN7mozilla6detail14TupleGetHelperILm2EJN2js19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr9TupleImplIXT_EDpT0_EE4Headfp_EERKNS0_9TupleImplIXT_EJS6_EEE
407
408
} // namespace detail
409
410
/**
411
 * Index-based access to an element of a tuple.
412
 * The syntax is Get<Index>(tuple). The index is zero-based.
413
 *
414
 * Example:
415
 *
416
 * Tuple<int, float, char> t;
417
 * ...
418
 * float f = Get<1>(t);
419
 */
420
421
// Non-const reference version.
422
template<std::size_t Index, typename... Elements>
423
auto Get(Tuple<Elements...>& aTuple)
424
    -> decltype(detail::TupleGetHelper<Index>(aTuple))
425
212
{
426
212
  return detail::TupleGetHelper<Index>(aTuple);
427
212
}
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefIbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3net14ConnectionDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3net14LookupArgumentEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3net10SocketDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3net8HttpDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3net16WebSocketRequestEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3net7DnsDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3net8RcwnDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIbES2_S1_I8nsresultES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIbES2_S1_I8nsresultES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIbES2_S1_I8nsresultES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIbES2_S1_I8nsresultES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIdEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrI18nsILoadContextInfoE24StoreCopyPassByConstLRefIbES4_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ20StoreRefPtrPassByPtrI18nsILoadContextInfoE24StoreCopyPassByConstLRefIbES4_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ20StoreRefPtrPassByPtrI18nsILoadContextInfoE24StoreCopyPassByConstLRefIbES4_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIK8nsresultES4_S1_IKmES1_IKjES1_IK9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIK8nsresultES4_S1_IKmES1_IKjES1_IK9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIK8nsresultES4_S1_IKmES1_IKjES1_IK9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIK8nsresultES4_S1_IKmES1_IKjES1_IK9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ24StoreCopyPassByConstLRefIK8nsresultES4_S1_IKmES1_IKjES1_IK9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIK8nsresultES1_IKNS_3net20ResourceTimingStructEES1_IKNS_9TimeStampEES1_IKNS5_17nsHttpHeaderArrayEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIK8nsresultES1_IKNS_3net20ResourceTimingStructEES1_IKNS_9TimeStampEES1_IKNS5_17nsHttpHeaderArrayEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIK8nsresultES1_IKNS_3net20ResourceTimingStructEES1_IKNS_9TimeStampEES1_IKNS5_17nsHttpHeaderArrayEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIK8nsresultES1_IKNS_3net20ResourceTimingStructEES1_IKNS_9TimeStampEES1_IKNS5_17nsHttpHeaderArrayEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIKlES3_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIKlES3_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIK8nsresultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIK8nsresultES1_IKNS_3net20ResourceTimingStructEES1_IKNS5_17nsHttpHeaderArrayEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIK8nsresultES1_IKNS_3net20ResourceTimingStructEES1_IKNS5_17nsHttpHeaderArrayEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIK8nsresultES1_IKNS_3net20ResourceTimingStructEES1_IKNS5_17nsHttpHeaderArrayEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIK9nsTStringIcEES5_S5_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIK9nsTStringIcEES5_S5_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIK9nsTStringIcEES5_S5_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI8nsresultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3net16HttpChannelChildEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJP6socketS2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJP6socketS2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsAutoPtrINS_11MediaPacketEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS2_17PBackgroundParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINSt3__16vectorINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS7_IS9_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrINS_3ipc14MessageChannelEE24StoreCopyPassByConstLRefINS2_4SideEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ17StorePtrPassByPtrINS_3ipc14MessageChannelEE24StoreCopyPassByConstLRefINS2_4SideEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrIN3IPC7MessageEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrI15nsJARInputThunkE24StoreCopyPassByConstLRefIbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ20StoreRefPtrPassByPtrI15nsJARInputThunkE24StoreCopyPassByConstLRefIbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI8nsresultES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI8nsresultES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefImEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrI16mozIStorageErrorEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_7storage9ResultSetEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIK9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_21WebrtcGmpVideoEncoderEE13GMPVideoCodecijS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ6RefPtrINS_21WebrtcGmpVideoEncoderEE13GMPVideoCodecijS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ6RefPtrINS_21WebrtcGmpVideoEncoderEE13GMPVideoCodecijS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ6RefPtrINS_21WebrtcGmpVideoEncoderEE13GMPVideoCodecijS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ6RefPtrINS_21WebrtcGmpVideoEncoderEE13GMPVideoCodecijS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEN6webrtc10VideoFrameENSt3__16vectorINS4_9FrameTypeENS6_9allocatorIS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEN6webrtc10VideoFrameENSt3__16vectorINS4_9FrameTypeENS6_9allocatorIS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEN6webrtc10VideoFrameENSt3__16vectorINS4_9FrameTypeENS6_9allocatorIS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEjjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEjjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ6RefPtrINS_21WebrtcGmpVideoEncoderEEjjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_21WebrtcGmpVideoDecoderEEPKN6webrtc10VideoCodecEiS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ6RefPtrINS_21WebrtcGmpVideoDecoderEEPKN6webrtc10VideoCodecEiS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ6RefPtrINS_21WebrtcGmpVideoDecoderEEPKN6webrtc10VideoCodecEiS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ6RefPtrINS_21WebrtcGmpVideoDecoderEEPKN6webrtc10VideoCodecEiS1_INS_19GmpInitDoneRunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_21WebrtcGmpVideoDecoderEE9nsAutoPtrINS_13GMPDecodeDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ6RefPtrINS_21WebrtcGmpVideoDecoderEE9nsAutoPtrINS_13GMPDecodeDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_21WebrtcGmpVideoDecoderEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_6layers5ImageEE24StoreCopyPassByConstLRefINS_3gfx12IntSizeTypedINS6_12UnknownUnitsEEEES5_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ20StoreRefPtrPassByPtrINS_6layers5ImageEE24StoreCopyPassByConstLRefINS_3gfx12IntSizeTypedINS6_12UnknownUnitsEEEES5_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ20StoreRefPtrPassByPtrINS_6layers5ImageEE24StoreCopyPassByConstLRefINS_3gfx12IntSizeTypedINS6_12UnknownUnitsEEEES5_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_13TransportFlowEES3_9nsAutoPtrINS_19MediaPipelineFilterEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ6RefPtrINS_13TransportFlowEES3_9nsAutoPtrINS_19MediaPipelineFilterEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ6RefPtrINS_13TransportFlowEES3_9nsAutoPtrINS_19MediaPipelineFilterEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_3dom17WebrtcGlobalChildEi9nsAutoPtrINS_6VectorIS4_INS_13RTCStatsQueryEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_3dom17WebrtcGlobalChildEi9nsAutoPtrINS_6VectorIS4_INS_13RTCStatsQueryEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPNS_3dom17WebrtcGlobalChildEi9nsAutoPtrINS_6VectorIS4_INS_13RTCStatsQueryEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_3dom17WebrtcGlobalChildEiPKcEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_3dom17WebrtcGlobalChildEiPKcEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPNS_3dom17WebrtcGlobalChildEiPKcEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_3dom17WebrtcGlobalChildEi9nsAutoPtrINSt3__15dequeINS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENSA_ISC_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_3dom17WebrtcGlobalChildEi9nsAutoPtrINSt3__15dequeINS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENSA_ISC_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPNS_3dom17WebrtcGlobalChildEi9nsAutoPtrINSt3__15dequeINS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEENSA_ISC_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ8nsresult9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ8nsresult9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsAutoPtrINS_6VectorIS1_INS_13RTCStatsQueryEELm0ENS_17MallocAllocPolicyEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ16already_AddRefedI16nsDOMDataChannelE6RefPtrINS_3dom22PeerConnectionObserverEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ16already_AddRefedI16nsDOMDataChannelE6RefPtrINS_3dom22PeerConnectionObserverEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_16JsepOfferOptionsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_16JsepOfferOptionsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ8nsCOMPtrI16nsIWeakReferenceEtNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEESA_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ8nsCOMPtrI16nsIWeakReferenceEtNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEESA_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ8nsCOMPtrI16nsIWeakReferenceEtNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEESA_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ8nsCOMPtrI16nsIWeakReferenceEtNSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEESA_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:_ZN7mozilla3GetILm0EJNS_3dom19PCObserverStateTypeEN12_GLOBAL__N_122WrappableJSErrorResultEPN2JS5RealmEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:_ZN7mozilla3GetILm1EJNS_3dom19PCObserverStateTypeEN12_GLOBAL__N_122WrappableJSErrorResultEPN2JS5RealmEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: Unified_cpp_src_peerconnection0.cpp:_ZN7mozilla3GetILm2EJNS_3dom19PCObserverStateTypeEN12_GLOBAL__N_122WrappableJSErrorResultEPN2JS5RealmEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE8nsresult9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE8nsresult9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE8nsresult9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__13setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIS8_EENS6_IS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mS7_S7_NS1_6vectorIS7_NS5_IS7_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mS7_S7_NS1_6vectorIS7_NS5_IS7_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mS7_S7_NS1_6vectorIS7_NS5_IS7_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mS7_S7_NS1_6vectorIS7_NS5_IS7_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mS7_S7_NS1_6vectorIS7_NS5_IS7_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm5EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mS7_S7_NS1_6vectorIS7_NS5_IS7_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm6EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_S7_mS7_S7_NS1_6vectorIS7_NS5_IS7_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES1_INS_13TransportFlowEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES1_INS_13TransportFlowEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES1_INS_13TransportFlowEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES1_INS_13TransportFlowEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES1_INS_13TransportFlowEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm5EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES1_INS_13TransportFlowEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm6EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES1_INS_13TransportFlowEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm7EJ6RefPtrINS_19PeerConnectionMediaEE9nsAutoPtrINS_12PacketDumperEES1_INS_13TransportFlowEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEbPNS_17TransportLayerIceEPNS_18TransportLayerDtlsEPNS_18TransportLayerSrtpEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJbbbNSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJbbbNSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJbbbNSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJbbbNSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJbbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJbbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_8NrIceCtxENS1_14GatheringStateEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_8NrIceCtxENS1_14GatheringStateEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_8NrIceCtxENS1_15ConnectionStateEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_8NrIceCtxENS1_15ConnectionStateEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_tS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_tS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_tS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_tS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_tS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm5EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_tS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEtS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEtS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEtS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEtS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEtS7_tS7_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_13TransportFlowEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsAutoPtrINS_13RTCStatsQueryEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJP17nsIUDPSocketChild8nsCOMPtrI14nsIEventTargetEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJP17nsIUDPSocketChild8nsCOMPtrI14nsIEventTargetEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_14nr_udp_messageEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsTStringIcEtEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ9nsTStringIcEtEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_3net7NetAddrE9nsAutoPtrINS_11MediaPacketEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNS_3net7NetAddrE9nsAutoPtrINS_11MediaPacketEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_3dom14TCPSocketChildEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_11NrSocketIpc16NrSocketIpcStateEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJjjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJjjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_14nr_tcp_messageEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsTStringIcEtS2_tS2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ9nsTStringIcEtS2_tS2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ9nsTStringIcEtS2_tS2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ9nsTStringIcEtS2_tS2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ9nsTStringIcEtS2_tS2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsAutoPtrI8nsTArrayIhEEjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ9nsAutoPtrI8nsTArrayIhEEjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsAutoPtrINSt3__15dequeIPNS_14TransportLayerENS2_9allocatorIS5_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ8nsTArrayINS_13NrIceStunAddrEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_9UniquePtrINS_6layers11PaintThreadENS_13DefaultDeleteIS3_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES1_INS2_19LayersObserverEpochEES1_IiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES1_INS2_19LayersObserverEpochEES1_IiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES1_INS2_19LayersObserverEpochEES1_IiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_16ParentLayerPixelEfEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS_5MaybeINS2_15ZoomConstraintsEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS_5MaybeINS2_15ZoomConstraintsEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES4_S1_INS2_11FocusTargetEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES4_S1_INS2_11FocusTargetEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEES4_S1_INS2_11FocusTargetEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEE20StoreRefPtrPassByPtrINS2_15APZCTreeManagerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers8LayersIdEE20StoreRefPtrPassByPtrINS2_15APZCTreeManagerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ16already_AddRefedINS_8RunnableEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_6layers22AsyncPanZoomControllerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_16ParentLayerPixelEfEEE20StoreRefPtrPassByPtrIKNS_6layers22OverscrollHandoffChainEES7_IKNS8_22AsyncPanZoomControllerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_16ParentLayerPixelEfEEE20StoreRefPtrPassByPtrIKNS_6layers22OverscrollHandoffChainEES7_IKNS8_22AsyncPanZoomControllerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_3gfx10PointTypedINS_16ParentLayerPixelEfEEE20StoreRefPtrPassByPtrIKNS_6layers22OverscrollHandoffChainEES7_IKNS8_22AsyncPanZoomControllerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers22GeckoContentController7TapTypeEES1_INS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEES1_ItES1_INS2_19ScrollableLayerGuidEES1_ImEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers22GeckoContentController7TapTypeEES1_INS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEES1_ItES1_INS2_19ScrollableLayerGuidEES1_ImEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6layers22GeckoContentController7TapTypeEES1_INS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEES1_ItES1_INS2_19ScrollableLayerGuidEES1_ImEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefINS_6layers22GeckoContentController7TapTypeEES1_INS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEES1_ItES1_INS2_19ScrollableLayerGuidEES1_ImEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ24StoreCopyPassByConstLRefINS_6layers22GeckoContentController7TapTypeEES1_INS_3gfx10PointTypedINS_17LayoutDevicePixelEfEEES1_ItES1_INS2_19ScrollableLayerGuidEES1_ImEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers12FrameMetricsEES1_INS_3gfx10PointTypedINS_16ParentLayerPixelEfEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers12FrameMetricsEES1_INS_3gfx10PointTypedINS_16ParentLayerPixelEfEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3dom7ElementEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS_3gfx9RectTypedINS_8CSSPixelEfEEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS_3gfx9RectTypedINS_8CSSPixelEfEEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS_3gfx9RectTypedINS_8CSSPixelEfEEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_17PinchGestureInput16PinchGestureTypeEES1_INS_6layers19ScrollableLayerGuidEES1_INS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEES1_ItEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_17PinchGestureInput16PinchGestureTypeEES1_INS_6layers19ScrollableLayerGuidEES1_INS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEES1_ItEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_17PinchGestureInput16PinchGestureTypeEES1_INS_6layers19ScrollableLayerGuidEES1_INS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEES1_ItEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefINS_17PinchGestureInput16PinchGestureTypeEES1_INS_6layers19ScrollableLayerGuidEES1_INS_3gfx10CoordTypedINS_17LayoutDevicePixelEfEEES1_ItEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS2_22GeckoContentController14APZStateChangeEES1_IiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS2_22GeckoContentController14APZStateChangeEES1_IiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS2_22GeckoContentController14APZStateChangeEES1_IiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefImES1_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefImES1_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_6layers20TextureDeallocParamsEPNS_16ReentrantMonitorEPbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNS_6layers20TextureDeallocParamsEPNS_16ReentrantMonitorEPbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJNS_6layers20TextureDeallocParamsEPNS_16ReentrantMonitorEPbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_6layers20TextureDeallocParamsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJmPNS_6layers16LayersIPCChannelEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJmPNS_6layers16LayersIPCChannelEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers11KeyboardMapEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefImES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefImES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByRRefI8nsTArrayINS_6layers19ScrollableLayerGuidEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByRRefI8nsTArrayINS_6layers19ScrollableLayerGuidEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIfEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByRRefI8nsTArrayIjEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByRRefI8nsTArrayIjEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS2_16AsyncDragMetricsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS2_16AsyncDragMetricsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS_3gfx10PointTypedINS_11ScreenPixelEfEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers19ScrollableLayerGuidEES1_INS_3gfx10PointTypedINS_11ScreenPixelEfEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIN4base14FileDescriptorEES4_S1_INS_6layers8LayersIdEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIN4base14FileDescriptorEES4_S1_INS_6layers8LayersIdEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIN4base14FileDescriptorEES4_S1_INS_6layers8LayersIdEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIN4base14FileDescriptorEES4_S1_INS_6layers8LayersIdEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefImES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefImES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers22CompositorBridgeParentEPmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers22CompositorBridgeParentEPmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIiES2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIiES2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefImES1_I8nsTArrayINS_6layers19ScrollableLayerGuidEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefImES1_I8nsTArrayINS_6layers19ScrollableLayerGuidEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_6layers8LayersIdEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_6layers8LayersIdEPNS1_22GeckoContentControllerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNS_6layers8LayersIdEPNS1_22GeckoContentControllerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_9TimeStampEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers24PCompositorManagerParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_9TimeStampEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_6layers14ImageContainerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers15SynchronousTaskEPNS1_19AsyncCanvasRendererEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers15SynchronousTaskEPNS1_19AsyncCanvasRendererEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers15SynchronousTaskEPNS1_11ImageClientEPNS1_14ImageContainerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers15SynchronousTaskEPNS1_11ImageClientEPNS1_14ImageContainerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPNS_6layers15SynchronousTaskEPNS1_11ImageClientEPNS1_14ImageContainerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers17PImageBridgeChildEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers15SynchronousTaskEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_6layers17ImageBridgeParentEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers15SynchronousTaskEP6RefPtrINS1_11ImageClientEENS1_16CompositableTypeEPNS1_14ImageContainerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers15SynchronousTaskEP6RefPtrINS1_11ImageClientEENS1_16CompositableTypeEPNS1_14ImageContainerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPNS_6layers15SynchronousTaskEP6RefPtrINS1_11ImageClientEENS1_16CompositableTypeEPNS1_14ImageContainerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJPNS_6layers15SynchronousTaskEP6RefPtrINS1_11ImageClientEENS1_16CompositableTypeEPNS1_14ImageContainerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers15SynchronousTaskENS1_12CanvasClient16CanvasClientTypeENS1_12TextureFlagsEP6RefPtrIS4_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers15SynchronousTaskENS1_12CanvasClient16CanvasClientTypeENS1_12TextureFlagsEP6RefPtrIS4_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPNS_6layers15SynchronousTaskENS1_12CanvasClient16CanvasClientTypeENS1_12TextureFlagsEP6RefPtrIS4_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJPNS_6layers15SynchronousTaskENS1_12CanvasClient16CanvasClientTypeENS1_12TextureFlagsEP6RefPtrIS4_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers15SynchronousTaskEPNS1_16AllocShmemParamsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers15SynchronousTaskEPNS1_16AllocShmemParamsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers15SynchronousTaskEPNS_3ipc5ShmemEPbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers15SynchronousTaskEPNS_3ipc5ShmemEPbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPNS_6layers15SynchronousTaskEPNS_3ipc5ShmemEPbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_6layers18CompositableHandleEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers18PImageBridgeParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIfES2_S1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIfES2_S1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIfES2_S1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers28PUiCompositorControllerChildEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_6layers29PUiCompositorControllerParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJiNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEdEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJiNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEdEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJiNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEdEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_3gfx14GPUProcessHostEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3gfx17PVsyncBridgeChildEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3gfx18PVsyncBridgeParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6layers17SurfaceDescriptorEES1_ImES1_INS_3gfx9RectTypedINS6_12UnknownUnitsEfEEESA_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6layers17SurfaceDescriptorEES1_ImES1_INS_3gfx9RectTypedINS6_12UnknownUnitsEfEEESA_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6layers17SurfaceDescriptorEES1_ImES1_INS_3gfx9RectTypedINS6_12UnknownUnitsEfEEESA_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefINS_6layers17SurfaceDescriptorEES1_ImES1_INS_3gfx9RectTypedINS6_12UnknownUnitsEfEEESA_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrIN2vr9IVRSystemEE24StoreCopyPassByConstLRefIjES5_IdES7_S5_ImES5_INS_3gfx16VRManagerPromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ17StorePtrPassByPtrIN2vr9IVRSystemEE24StoreCopyPassByConstLRefIjES5_IdES7_S5_ImES5_INS_3gfx16VRManagerPromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ17StorePtrPassByPtrIN2vr9IVRSystemEE24StoreCopyPassByConstLRefIjES5_IdES7_S5_ImES5_INS_3gfx16VRManagerPromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ17StorePtrPassByPtrIN2vr9IVRSystemEE24StoreCopyPassByConstLRefIjES5_IdES7_S5_ImES5_INS_3gfx16VRManagerPromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ17StorePtrPassByPtrIN2vr9IVRSystemEE24StoreCopyPassByConstLRefIjES5_IdES7_S5_ImES5_INS_3gfx16VRManagerPromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm5EJ17StorePtrPassByPtrIN2vr9IVRSystemEE24StoreCopyPassByConstLRefIjES5_IdES7_S5_ImES5_INS_3gfx16VRManagerPromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3gfx16VRManagerPromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3gfx12PVRGPUParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_3gfx14VRManagerChildEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjE20StoreRefPtrPassByPtrINS_3dom15VREventObserverEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjE20StoreRefPtrPassByPtrINS_3dom15VREventObserverEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3gfx16PVRManagerParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_3gfx15VRManagerParentEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_3gfx15VRProcessParentEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_2wr12MemoryReportEE20StoreRefPtrPassByPtrINS_10MozPromiseIS3_bLb1EE7PrivateEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_2wr12MemoryReportEE20StoreRefPtrPassByPtrINS_10MozPromiseIS3_bLb1EE7PrivateEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_2wr10WrWindowIdEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_2wr10WrWindowIdEE19StoreCopyPassByRRefINS_9UniquePtrINS2_13RendererEventENS_13DefaultDeleteIS7_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_2wr10WrWindowIdEE19StoreCopyPassByRRefINS_9UniquePtrINS2_13RendererEventENS_13DefaultDeleteIS7_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers22CompositorBridgeParentENS_2wr14WrPipelineInfoENS_9TimeStampES6_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers22CompositorBridgeParentENS_2wr14WrPipelineInfoENS_9TimeStampES6_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPNS_6layers22CompositorBridgeParentENS_2wr14WrPipelineInfoENS_9TimeStampES6_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJPNS_6layers22CompositorBridgeParentENS_2wr14WrPipelineInfoENS_9TimeStampES6_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_2wr17RenderTextureHostEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers22CompositorBridgeParentEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_6layers22CompositorBridgeParentENS_2wr14WebRenderErrorEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_6layers22CompositorBridgeParentENS_2wr14WebRenderErrorEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJNS_5image13ImgDrawResultENS_3gfx12IntSizeTypedINS3_12UnknownUnitsEEE6RefPtrINS3_13SourceSurfaceEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIiES2_S1_IjES1_I9nsTStringIDsEES6_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIiES2_S1_IjES1_I9nsTStringIDsEES6_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIiES2_S1_IjES1_I9nsTStringIDsEES6_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIiES2_S1_IjES1_I9nsTStringIDsEES6_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ24StoreCopyPassByConstLRefIiES2_S1_IjES1_I9nsTStringIDsEES6_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm5EJ24StoreCopyPassByConstLRefIiES2_S1_IjES1_I9nsTStringIDsEES6_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IiES7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IiES7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IiES7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IiES7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IjES1_IdES8_S8_S7_S7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IjES1_IdES8_S8_S7_S7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IjES1_IdES8_S8_S7_S7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IjES1_IdES8_S8_S7_S7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IjES1_IdES8_S8_S7_S7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm5EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IjES1_IdES8_S8_S7_S7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm6EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IjES1_IdES8_S8_S7_S7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm7EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IjES1_IdES8_S8_S7_S7_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES1_IN9nsIWidget17TouchPointerStateEES1_INS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IdES2_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES1_IN9nsIWidget17TouchPointerStateEES1_INS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IdES2_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIjES1_IN9nsIWidget17TouchPointerStateEES1_INS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IdES2_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIjES1_IN9nsIWidget17TouchPointerStateEES1_INS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IdES2_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ24StoreCopyPassByConstLRefIjES1_IN9nsIWidget17TouchPointerStateEES1_INS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IdES2_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm5EJ24StoreCopyPassByConstLRefIjES1_IN9nsIWidget17TouchPointerStateEES1_INS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IdES2_20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IbE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IbE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_3gfx13IntPointTypedINS_17LayoutDevicePixelEEEES1_IbE20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrI11nsIObserverEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_13TimedMetadataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3dom4BlobEE27StoreConstPtrPassByConstPtrIcEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ20StoreRefPtrPassByPtrINS_3dom4BlobEE27StoreConstPtrPassByConstPtrIcEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3gfx12IntSizeTypedINS2_12UnknownUnitsEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3dom16HTMLMediaElementEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3dom16MediaStreamTrackEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIK9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE24StoreCopyPassByConstLRefIiES4_INS_12MediaSegment4TypeEE20StoreRefPtrPassByPtrINS_11MediaStreamEES5_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE24StoreCopyPassByConstLRefIiES4_INS_12MediaSegment4TypeEE20StoreRefPtrPassByPtrINS_11MediaStreamEES5_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE24StoreCopyPassByConstLRefIiES4_INS_12MediaSegment4TypeEE20StoreRefPtrPassByPtrINS_11MediaStreamEES5_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE24StoreCopyPassByConstLRefIiES4_INS_12MediaSegment4TypeEE20StoreRefPtrPassByPtrINS_11MediaStreamEES5_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE24StoreCopyPassByConstLRefIiES4_INS_12MediaSegment4TypeEE20StoreRefPtrPassByPtrINS_11MediaStreamEES5_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE20StoreRefPtrPassByPtrINS_11MediaStreamEE24StoreCopyPassByConstLRefIiES8_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE20StoreRefPtrPassByPtrINS_11MediaStreamEE24StoreCopyPassByConstLRefIiES8_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE20StoreRefPtrPassByPtrINS_11MediaStreamEE24StoreCopyPassByConstLRefIiES8_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ17StorePtrPassByPtrINS_16MediaStreamGraphEE20StoreRefPtrPassByPtrINS_11MediaStreamEE24StoreCopyPassByConstLRefIiES8_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_12MediaDecoder9PlayStateEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI21nsMainThreadPtrHandleI12nsIPrincipalEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI16already_AddRefedINS_6layers15KnowsCompositorEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5MaybeINS_5media8TimeUnitEEEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5media13TimeIntervalsEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_5media8TimeUnitEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorIbEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_8CDMProxyEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_18MediaPlaybackEvent9EventTypeEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_17MediaDecoderOwner15NextFrameStatusEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI6RefPtrINS_9AudioDataEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI6RefPtrINS_9VideoDataEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_7SeekJobENS_24MediaDecoderStateMachine11StateObject15EventVisibilityEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNS_7SeekJobENS_24MediaDecoderStateMachine11StateObject15EventVisibilityEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_7SeekJobES1_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNS_7SeekJobES1_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_5MaybeINS_5media8TimeUnitEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_9UniquePtrINS_9MediaInfoENS_13DefaultDeleteIS3_EEEEES1_INS2_I15nsDataHashtableI16nsCStringHashKey9nsTStringIcEENS4_ISC_EEEEES1_INS_27MediaDecoderEventVisibilityEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ19StoreCopyPassByRRefINS_9UniquePtrINS_9MediaInfoENS_13DefaultDeleteIS3_EEEEES1_INS2_I15nsDataHashtableI16nsCStringHashKey9nsTStringIcEENS4_ISC_EEEEES1_INS_27MediaDecoderEventVisibilityEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ19StoreCopyPassByRRefINS_9UniquePtrINS_9MediaInfoENS_13DefaultDeleteIS3_EEEEES1_INS2_I15nsDataHashtableI16nsCStringHashKey9nsTStringIcEENS4_ISC_EEEEES1_INS_27MediaDecoderEventVisibilityEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorINS_12MediaDecoder9PlayStateEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorIdEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_14AbstractMirrorI21nsMainThreadPtrHandleI12nsIPrincipalEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_5media8TimeUnitEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_12MediaDecoderEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_18MediaPlaybackEventEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_15VideoDecodeModeEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_10SeekTargetEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_11MediaResultEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI9nsAutoPtrINS_9MediaInfoEEES1_INS_27MediaDecoderEventVisibilityEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ19StoreCopyPassByRRefI9nsAutoPtrINS_9MediaInfoEEES1_INS_27MediaDecoderEventVisibilityEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_18DecoderDoctorEventEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_14SourceListenerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3dom13MediaRecorder7Session15EncoderListenerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_5media13TimeIntervalsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI8nsTArrayIhEES1_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ19StoreCopyPassByRRefI8nsTArrayIhEES1_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_9TrackInfo9TrackTypeEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPKv6RefPtrINS_17AudioDataListenerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPKv6RefPtrINS_17AudioDataListenerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_5MaybeIPKvEE6RefPtrINS_17AudioDataListenerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNS_5MaybeIPKvEE6RefPtrINS_17AudioDataListenerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_5media8TimeUnitEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_9MediaData4TypeEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_7EnumSetINS_9TrackInfo9TrackTypeEjEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_12AudioSegmentEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_12MediaEncoder15EncoderListenerEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_12VideoSegmentEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES1_I21NS_ConvertUTF8toUTF16EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES1_I21NS_ConvertUTF8toUTF16EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES1_I8nsresultES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES1_I8nsresultES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIjES1_I8nsresultES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16ES1_INS_3dom19MediaKeyMessageTypeEES1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16ES1_INS_3dom19MediaKeyMessageTypeEES1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16ES1_INS_3dom19MediaKeyMessageTypeEES1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES1_INS_3dom14MediaKeyStatusEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES1_INS_3dom14MediaKeyStatusEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16ES1_IlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI21NS_ConvertUTF8toUTF16ES1_IlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS5_EES1_IS4_ES9_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS5_EES1_IS4_ES9_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS5_EES1_IS4_ES9_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp16ChromiumCDMChildEFbjRK9nsTStringIcEEES1_IKjES1_IS6_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIMNS_3gmp16ChromiumCDMChildEFbjRK9nsTStringIcEEES1_IKjES1_IS6_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIMNS_3gmp16ChromiumCDMChildEFbjRK9nsTStringIcEEES1_IKjES1_IS6_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjEES1_IS4_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjEES1_IS4_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS5_S5_RK9nsTStringIcEEES1_IS4_ESD_SD_S1_IS8_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS5_S5_RK9nsTStringIcEEES1_IS4_ESD_SD_S1_IS8_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS5_S5_RK9nsTStringIcEEES1_IS4_ESD_SD_S1_IS8_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS5_S5_RK9nsTStringIcEEES1_IS4_ESD_SD_S1_IS8_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRKjS5_S5_RK9nsTStringIcEEES1_IS4_ESD_SD_S1_IS8_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKjRK8nsTArrayIhEEES1_IS6_ES1_IS8_ES1_ISC_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKjRK8nsTArrayIhEEES1_IS6_ES1_IS8_ES1_ISC_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKjRK8nsTArrayIhEEES1_IS6_ES1_IS8_ES1_ISC_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKjRK8nsTArrayIhEEES1_IS6_ES1_IS8_ES1_ISC_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERK8nsTArrayINS2_17CDMKeyInformationEEEES1_IS6_ES1_ISB_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERK8nsTArrayINS2_17CDMKeyInformationEEEES1_IS6_ES1_ISB_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERK8nsTArrayINS2_17CDMKeyInformationEEEES1_IS6_ES1_ISB_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKdEES1_IS6_ES1_IS8_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKdEES1_IS6_ES1_IS8_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcERKdEES1_IS6_ES1_IS8_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcEEES1_IS6_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIMNS_3gmp17PChromiumCDMChildEFbRK9nsTStringIcEEES1_IS6_EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES2_S2_S2_S1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES2_S2_S2_S1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIjES2_S2_S2_S1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIjES2_S2_S2_S1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ24StoreCopyPassByConstLRefIjES2_S2_S2_S1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES2_S1_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES2_S1_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIjES2_S1_I9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IjES1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IjES1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IjES1_I8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3gmp9GMPParentEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJj9nsTStringIcES1_IDsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJj9nsTStringIcES1_IDsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJj9nsTStringIcES1_IDsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI21NS_ConvertUTF8toUTF16EEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_3gmp9GMPParentEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_INS_23OriginAttributesPatternEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_INS_23OriginAttributesPatternEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrINS_7MonitorEES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ17StorePtrPassByPtrINS_7MonitorEES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsTStringIcEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsTStringIcE8nsTArrayIhEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ9nsTStringIcE8nsTArrayIhEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_3ipc8EndpointINS_3dom25PVideoDecoderManagerChildEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_3dom26PVideoDecoderManagerParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefIlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI6RefPtrINS_19TrackBuffersManagerEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI16already_AddRefedINS_15MediaByteBufferEEES1_INS_22SourceBufferAttributesEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ19StoreCopyPassByRRefI16already_AddRefedINS_15MediaByteBufferEEES1_INS_22SourceBufferAttributesEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_16SourceBufferTaskEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_5media8IntervalINS2_8TimeUnitEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_12MediaRawDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_9TrackInfo9TrackTypeEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_I9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_I9nsTStringIcEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_I9nsTStringIcEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_I9nsTStringIcEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_IjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_I9nsTStringIcEE28StoreConstRefPassByConstLRefINS_3ipc13PrincipalInfoEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_I9nsTStringIcEE28StoreConstRefPassByConstLRefINS_3ipc13PrincipalInfoEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_I9nsTStringIcEE28StoreConstRefPassByConstLRefINS_3ipc13PrincipalInfoEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_IiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_IiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_IiES1_INS2_22VideoCaptureCapabilityEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_IiES1_INS2_22VideoCaptureCapabilityEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_6camera13CaptureEngineEES1_IiES1_INS2_22VideoCaptureCapabilityEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIjES1_I19SPDNotificationTypeEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIjES1_I19SPDNotificationTypeEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI19SPDNotificationTypeEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IS2_IDsEES4_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IS2_IDsEES4_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IS2_IDsEES4_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ8nsCOMPtrI12nsIUDPSocketES1_I14nsIEventTargetE14UDPAddressInfoEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ8nsCOMPtrI12nsIUDPSocketES1_I14nsIEventTargetE14UDPAddressInfoEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ8nsCOMPtrI12nsIUDPSocketES1_I14nsIEventTargetE14UDPAddressInfoEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ14UDPAddressInfoEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI14gfxSurfaceTypeES1_INS_7plugins14NPRemoteWindowEES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI14gfxSurfaceTypeES1_INS_7plugins14NPRemoteWindowEES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefI14gfxSurfaceTypeES1_INS_7plugins14NPRemoteWindowEES1_IbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_7plugins20PFunctionBrokerChildEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_7plugins21PFunctionBrokerParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3dom6IdTypeINS2_9TabParentEEEES1_I9nsTStringIcEES1_IS7_IDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_3dom6IdTypeINS2_9TabParentEEEES1_I9nsTStringIcEES1_IS7_IDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_3dom6IdTypeINS2_9TabParentEEEES1_I9nsTStringIcEES1_IS7_IDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_25PProcessHangMonitorParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3dom6IdTypeINS2_9TabParentEEEES1_IbES1_INS_6layers19LayersObserverEpochEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefINS_3dom6IdTypeINS2_9TabParentEEEES1_IbES1_INS_6layers19LayersObserverEpochEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefINS_3dom6IdTypeINS2_9TabParentEEEES1_IbES1_INS_6layers19LayersObserverEpochEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_24PProcessHangMonitorChildEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_3dom18ContentProcessHostEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3dom13ContentParent14ShutDownMethodEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJibEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJibEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_9UniquePtrINS_3dom9U2FResultENS_13DefaultDeleteIS4_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIDsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3dom7ElementEE24StoreCopyPassByConstLRefIiES1_I6nsAtomEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ20StoreRefPtrPassByPtrINS_3dom7ElementEE24StoreCopyPassByConstLRefIiES1_I6nsAtomEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ20StoreRefPtrPassByPtrINS_3dom7ElementEE24StoreCopyPassByConstLRefIiES1_I6nsAtomEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrI28nsIWebBrowserPersistDocumentE24StoreCopyPassByConstLRefI8nsresultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ20StoreRefPtrPassByPtrI28nsIWebBrowserPersistDocumentE24StoreCopyPassByConstLRefI8nsresultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrI28nsIWebBrowserPersistDocumentES1_I15nsIOutputStreamE24StoreCopyPassByConstLRefI9nsTStringIcEES6_I8nsresultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ20StoreRefPtrPassByPtrI28nsIWebBrowserPersistDocumentES1_I15nsIOutputStreamE24StoreCopyPassByConstLRefI9nsTStringIcEES6_I8nsresultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ20StoreRefPtrPassByPtrI28nsIWebBrowserPersistDocumentES1_I15nsIOutputStreamE24StoreCopyPassByConstLRefI9nsTStringIcEES6_I8nsresultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ20StoreRefPtrPassByPtrI28nsIWebBrowserPersistDocumentES1_I15nsIOutputStreamE24StoreCopyPassByConstLRefI9nsTStringIcEES6_I8nsresultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_9UniquePtrIN19nsWebBrowserPersist8WalkDataENS_13DefaultDeleteIS4_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3dom24XMLHttpRequestMainThread17ProgressEventTypeEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJbNS_19CopyableErrorResultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJbNS_19CopyableErrorResultEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefItEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3dom35ServiceWorkerRegistrationDescriptorEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3dom10SDBRequestEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIDsEE20StoreRefPtrPassByPtrINS_3dom7PromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI9nsTStringIDsEE20StoreRefPtrPassByPtrINS_3dom7PromiseEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrI31nsIPresentationSessionTransportEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefINS_3dom31PresentationTCPSessionTransport10ReadyStateEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByLRefI8nsTArrayIjEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefImE19StoreCopyPassByLRefI8nsTArrayIjEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrI7nsINodeEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_4a11y7SelDataEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_4a11y10AccessibleEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_3dom5EventEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_14PProfilerChildEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrI9nsTStringIcEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ27StoreConstPtrPassByConstPtrIcEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS1_INS_10extensions25WebExtensionContentScriptEELm8EEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS1_INS_10extensions25WebExtensionContentScriptEELm8EEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS1_INS_10extensions25WebExtensionContentScriptEELm8EEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_10extensions18PStreamFilterChildEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_3ipc8EndpointINS_10extensions19PStreamFilterParentEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI8nsTArrayIhEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IiES4_S1_IbES1_IlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IiES4_S1_IbES1_IlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IiES4_S1_IbES1_IlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IiES4_S1_IbES1_IlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm4EJ24StoreCopyPassByConstLRefI9nsTStringIcEES1_IiES4_S1_IbES1_IlEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsTStringIcE8nsTArrayIiElEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ9nsTStringIcE8nsTArrayIiElEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ9nsTStringIcE8nsTArrayIiElEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsTStringIcES2_8nsTArrayIiElEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ9nsTStringIcES2_8nsTArrayIiElEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ9nsTStringIcES2_8nsTArrayIiElEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ9nsTStringIcES2_8nsTArrayIiElEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsTStringIcES1_IDsE8nsCOMPtrI10nsIVariantEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ9nsTStringIcES1_IDsE8nsCOMPtrI10nsIVariantEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ9nsTStringIcES1_IDsE8nsCOMPtrI10nsIVariantEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrINS_3dom16HTMLInputElementEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrI5nsFooEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrIcEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrIbEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ27StoreConstPtrPassByConstPtrIcE24StoreCopyPassByConstLRefIjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ27StoreConstPtrPassByConstPtrIcE24StoreCopyPassByConstLRefIjEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIiES2_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIiES2_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIiES2_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIiES2_S2_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefIiES2_S2_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefIiES2_S2_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ24StoreCopyPassByConstLRefIiES2_S2_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ27StoreConstPtrPassByConstPtrIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ18StoreCopyPassByPtrIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ23StoreCopyPassByConstPtrIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ18StoreRefPassByLRefIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ18StoreRefPassByLRefINS_9UniquePtrIiNS_13DefaultDeleteIiEEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreCopyPassByValueIN15TestThreadUtils3SpyEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefIN15TestThreadUtils3SpyEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefIN15TestThreadUtils3SpyEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ18StoreRefPassByLRefIN15TestThreadUtils3SpyEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ20StoreRefPtrPassByPtrIN15TestThreadUtils16SpyWithISupportsEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ17StorePtrPassByPtrIN15TestThreadUtils3SpyEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ27StoreConstPtrPassByConstPtrIN15TestThreadUtils3SpyEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: mediapipeline_unittest.cpp:_ZN7mozilla3GetILm0EJPN12_GLOBAL__N_116TestAgentReceiveEPNS1_13TestAgentSendEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: mediapipeline_unittest.cpp:_ZN7mozilla3GetILm1EJPN12_GLOBAL__N_116TestAgentReceiveEPNS1_13TestAgentSendEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsAutoPtrINS_19MediaPipelineFilterEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefINS_9UniquePtrIN14CDMStorageTest8NodeInfoENS_13DefaultDeleteIS4_EEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ18StoreRefPassByLRefI14GMPTestMonitorEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ24StoreCopyPassByConstLRefI9nsTStringIcEE17StorePtrPassByPtrIP20GMPVideoDecoderProxyES5_IP12GMPVideoHostEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ24StoreCopyPassByConstLRefI9nsTStringIcEE17StorePtrPassByPtrIP20GMPVideoDecoderProxyES5_IP12GMPVideoHostEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ24StoreCopyPassByConstLRefI9nsTStringIcEE17StorePtrPassByPtrIP20GMPVideoDecoderProxyES5_IP12GMPVideoHostEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ28StoreConstRefPassByConstLRefI13GMPVideoCodecES1_I8nsTArrayIhEE17StorePtrPassByPtrI28GMPVideoDecoderCallbackProxyE24StoreCopyPassByConstLRefIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ28StoreConstRefPassByConstLRefI13GMPVideoCodecES1_I8nsTArrayIhEE17StorePtrPassByPtrI28GMPVideoDecoderCallbackProxyE24StoreCopyPassByConstLRefIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ28StoreConstRefPassByConstLRefI13GMPVideoCodecES1_I8nsTArrayIhEE17StorePtrPassByPtrI28GMPVideoDecoderCallbackProxyE24StoreCopyPassByConstLRefIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ28StoreConstRefPassByConstLRefI13GMPVideoCodecES1_I8nsTArrayIhEE17StorePtrPassByPtrI28GMPVideoDecoderCallbackProxyE24StoreCopyPassByConstLRefIiEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI9SomeEventEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ19StoreCopyPassByRRefI6RefPtrI10RefCounterEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJjPNS_14NrIceCandidateEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJjPNS_14NrIceCandidateEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJmiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJmiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJmNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJmNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNS_8NrIceCtx11ControllingEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJiiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJiiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJiiPKhiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJiiPKhiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJiiPKhiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJiiPKhiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla3GetILm0EJPN12_GLOBAL__N_111IceTestPeerENS1_11TrickleModeEbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla3GetILm1EJPN12_GLOBAL__N_111IceTestPeerENS1_11TrickleModeEbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla3GetILm2EJPN12_GLOBAL__N_111IceTestPeerENS1_11TrickleModeEbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla3GetILm0EJiiN12_GLOBAL__N_113ConsentStatusEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla3GetILm1EJiiN12_GLOBAL__N_113ConsentStatusEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: ice_unittest.cpp:_ZN7mozilla3GetILm2EJiiN12_GLOBAL__N_113ConsentStatusEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJmPNSt3__16vectorINS_18NrIceCandidatePairENS1_9allocatorIS3_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJmPNSt3__16vectorINS_18NrIceCandidatePairENS1_9allocatorIS3_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ18nr_socket_tcp_typeNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtPP10nr_socket_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ18nr_socket_tcp_typeNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtPP10nr_socket_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ18nr_socket_tcp_typeNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtPP10nr_socket_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJ18nr_socket_tcp_typeNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEtPP10nr_socket_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJP10nr_socket_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJP10nr_socket_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJP10nr_socket_S2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJP10nr_socket_miEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJP10nr_socket_miEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJP10nr_socket_miEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJP10nr_socket_S2_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJP10nr_socket_S2_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJP10nr_socket_S2_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJP10nr_socket_S2_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJP10nr_socket_P18nr_transport_addr_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJP10nr_socket_P18nr_transport_addr_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJP10nr_socket_P18nr_transport_addr_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJP10nr_socket_P18nr_transport_addr_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJP18nr_transport_addr_P10nr_socket_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJP18nr_transport_addr_P10nr_socket_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJP18nr_transport_addr_P10nr_socket_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm3EJP18nr_transport_addr_P10nr_socket_PKcmEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPbEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: runnable_utils_unittest.cpp:_ZN7mozilla3GetILm0EJPN12_GLOBAL__N_111TargetClassEiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: runnable_utils_unittest.cpp:_ZN7mozilla3GetILm1EJPN12_GLOBAL__N_111TargetClassEiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: runnable_utils_unittest.cpp:_ZN7mozilla3GetILm0EJ6RefPtrIN12_GLOBAL__N_110DestructorEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJ9nsAutoPtrINS_11MediaPacketEE6RefPtrINS_13TransportFlowEEPNS_22TransportLayerLoopbackEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJ9nsAutoPtrINS_11MediaPacketEE6RefPtrINS_13TransportFlowEEPNS_22TransportLayerLoopbackEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJ9nsAutoPtrINS_11MediaPacketEE6RefPtrINS_13TransportFlowEEPNS_22TransportLayerLoopbackEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: sctp_unittest.cpp:_ZN7mozilla3GetILm0EJPN12_GLOBAL__N_117TransportTestPeerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJmPKciEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJmPKciEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJmPKciEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_12TestNrSocketEP18nr_transport_addr_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_12TestNrSocketEP18nr_transport_addr_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_12NrSocketBaseEiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_12NrSocketBaseEiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_12TestNrSocketE18nr_transport_addr_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_12TestNrSocketE18nr_transport_addr_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_12TestNrSocketEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_12TestNrSocketES2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_12TestNrSocketES2_EEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_12TestNrSocketEPPNS_12NrSocketBaseEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_12TestNrSocketEPPNS_12NrSocketBaseEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_12NrSocketBaseEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: transport_unittests.cpp:_ZN7mozilla3GetILm0EJPN12_GLOBAL__N_117TransportTestPeerEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPtEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPNS_18TransportLayerDtlsEPNS_11MediaPacketEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPNS_18TransportLayerDtlsEPNS_11MediaPacketEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPKcS2_NSt3__16vectorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPKcS2_NSt3__16vectorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPKcS2_NSt3__16vectorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEENS8_ISA_EEEEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPN2js12NativeObjectEP8JSScriptEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPN2js12NativeObjectEPNS1_10LazyScriptEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPN2js12NativeObjectEP8JSObjectNS1_19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPN2js12NativeObjectEP8JSScriptEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPN2js12NativeObjectEPNS1_10LazyScriptEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPN2js12NativeObjectEP8JSObjectNS1_19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
_ZN7mozilla3GetILm0EJPN2js12HelperThreadEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Line
Count
Source
425
24
{
426
24
  return detail::TupleGetHelper<Index>(aTuple);
427
24
}
_ZN7mozilla3GetILm0EJP8JSObjectEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERNS_5TupleIJDpT0_EEE
Line
Count
Source
425
188
{
426
188
  return detail::TupleGetHelper<Index>(aTuple);
427
188
}
428
429
// Const reference version.
430
template<std::size_t Index, typename... Elements>
431
auto Get(const Tuple<Elements...>& aTuple)
432
    -> decltype(detail::TupleGetHelper<Index>(aTuple))
433
0
{
434
0
  return detail::TupleGetHelper<Index>(aTuple);
435
0
}
Unexecuted instantiation: _ZN7mozilla3GetILm1EJiNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEdEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJiNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEdEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJb9nsTStringIDsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJb9nsTStringIDsEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPKc8nsCOMPtrI10nsIVariantEjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPKc8nsCOMPtrI10nsIVariantEjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPKc8nsTArrayINS_4PairI9nsTStringIcE8nsCOMPtrI10nsIVariantEEEEjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPKc8nsTArrayINS_4PairI9nsTStringIcE8nsCOMPtrI10nsIVariantEEEEjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPKc8nsCOMPtrI10nsIVariantEjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPKc8nsTArrayINS_4PairI9nsTStringIcE8nsCOMPtrI10nsIVariantEEEEjEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPN2js12NativeObjectEP8JSScriptEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPN2js12NativeObjectEP8JSScriptEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPN2js12NativeObjectEPNS1_10LazyScriptEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPN2js12NativeObjectEPNS1_10LazyScriptEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm0EJPN2js12NativeObjectEP8JSObjectNS1_19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm1EJPN2js12NativeObjectEP8JSObjectNS1_19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
Unexecuted instantiation: _ZN7mozilla3GetILm2EJPN2js12NativeObjectEP8JSObjectNS1_19CrossCompartmentKey18DebuggerObjectKindEEEEDTclsr6detailE14TupleGetHelperIXT_EEfp_EERKNS_5TupleIJDpT0_EEE
436
437
// Rvalue reference version.
438
template<std::size_t Index, typename... Elements>
439
auto Get(Tuple<Elements...>&& aTuple)
440
    -> decltype(std::move(mozilla::Get<Index>(aTuple)))
441
{
442
  // We need a 'mozilla::' qualification here to avoid
443
  // name lookup only finding the current function.
444
  return std::move(mozilla::Get<Index>(aTuple));
445
}
446
447
/**
448
 * Helpers which call a function for each member of the tuple in turn. This will
449
 * typically be used with a lambda function with an `auto&` argument:
450
 *
451
 *   Tuple<Foo*, Bar*, SmartPtr<Baz>> tuple{a, b, c};
452
 *
453
 *   ForEach(tuple, [](auto& aElem) {
454
 *     aElem = nullptr;
455
 *   });
456
 */
457
458
template <typename F>
459
inline void
460
ForEach(const Tuple<>& aTuple, const F& aFunc)
461
{
462
}
463
464
template <typename F>
465
inline void
466
ForEach(Tuple<>& aTuple, const F& aFunc)
467
0
{
468
0
}
Unexecuted instantiation: _ZN7mozilla7ForEachIZ27ImplCycleCollectionTraverseIJEEvR34nsCycleCollectionTraversalCallbackRNS_5TupleIJDpT_EEEPKcjEUlRT_E_EEvRNS4_IJEEERKSB_
Unexecuted instantiation: _ZN7mozilla7ForEachIZ25ImplCycleCollectionUnlinkIJEEvRNS_5TupleIJDpT_EEEEUlRT_E_EEvRNS2_IJEEERKS7_
469
470
template <typename F, typename... Elements>
471
void
472
ForEach(const Tuple<Elements...>& aTuple, const F& aFunc)
473
{
474
  aTuple.ForEach(aTuple, aFunc);
475
}
476
477
template <typename F, typename... Elements>
478
void
479
ForEach(Tuple<Elements...>& aTuple, const F& aFunc)
480
0
{
481
0
  aTuple.ForEach(aFunc);
482
0
}
Unexecuted instantiation: _ZN7mozilla7ForEachIZ27ImplCycleCollectionTraverseIJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS2_INS_10extensions25WebExtensionContentScriptEELm8EEEEvR34nsCycleCollectionTraversalCallbackRNS_5TupleIJDpT_EEEPKcjEUlRT_E_JS4_S7_SC_EEEvRNSF_IJDpT0_EEERKSM_
Unexecuted instantiation: _ZN7mozilla7ForEachIZ25ImplCycleCollectionUnlinkIJ6RefPtrINS_22ExtensionPolicyServiceEE8nsCOMPtrI18nsPIDOMWindowInnerE10AutoTArrayIS2_INS_10extensions25WebExtensionContentScriptEELm8EEEEvRNS_5TupleIJDpT_EEEEUlRT_E_JS4_S7_SC_EEEvRNSD_IJDpT0_EEERKSI_
483
484
template <typename F, typename... Elements>
485
void
486
ForEach(Tuple<Elements...>&& aTuple, const F& aFunc)
487
{
488
  std::forward<Tuple<Elements...>>(aTuple).ForEach(aFunc);
489
}
490
491
/**
492
 * A convenience function for constructing a tuple out of a sequence of
493
 * values without specifying the type of the tuple.
494
 * The type of the tuple is deduced from the types of its elements.
495
 *
496
 * Example:
497
 *
498
 * auto tuple = MakeTuple(42, 0.5f, 'c');  // has type Tuple<int, float, char>
499
 */
500
template<typename... Elements>
501
inline Tuple<typename Decay<Elements>::Type...>
502
MakeTuple(Elements&&... aElements)
503
0
{
504
0
  return Tuple<typename Decay<Elements>::Type...>(std::forward<Elements>(aElements)...);
505
0
}
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::Encoding const*&>::Type, mozilla::Decay<unsigned long&>::Type> mozilla::MakeTuple<mozilla::Encoding const*&, unsigned long&>(mozilla::Encoding const*&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<nsresult&>::Type, mozilla::Decay<mozilla::NotNull<mozilla::Encoding const*> >::Type> mozilla::MakeTuple<nsresult&, mozilla::NotNull<mozilla::Encoding const*> >(nsresult&, mozilla::NotNull<mozilla::Encoding const*>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<unsigned int&>::Type, mozilla::Decay<unsigned long&>::Type, mozilla::Decay<unsigned long&>::Type, mozilla::Decay<bool&>::Type> mozilla::MakeTuple<unsigned int&, unsigned long&, unsigned long&, bool&>(unsigned int&, unsigned long&, unsigned long&, bool&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<unsigned int&>::Type, mozilla::Decay<unsigned long&>::Type, mozilla::Decay<unsigned long&>::Type> mozilla::MakeTuple<unsigned int&, unsigned long&, unsigned long&>(unsigned int&, unsigned long&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<bool>::Type, mozilla::Decay<nsTString<char16_t> >::Type> mozilla::MakeTuple<bool, nsTString<char16_t> >(bool&&, nsTString<char16_t>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<bool>::Type, mozilla::Decay<mozilla::CopyableErrorResult>::Type> mozilla::MakeTuple<bool, mozilla::CopyableErrorResult>(bool&&, mozilla::CopyableErrorResult&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >::Type> mozilla::MakeTuple<mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> > >(mozilla::UniquePtr<mozilla::layers::PaintThread, mozilla::DefaultDelete<mozilla::layers::PaintThread> >&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<already_AddRefed<mozilla::Runnable> >::Type> mozilla::MakeTuple<already_AddRefed<mozilla::Runnable> >(already_AddRefed<mozilla::Runnable>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::layers::TextureDeallocParams&>::Type, mozilla::Decay<mozilla::ReentrantMonitor*>::Type, mozilla::Decay<bool*>::Type> mozilla::MakeTuple<mozilla::layers::TextureDeallocParams&, mozilla::ReentrantMonitor*, bool*>(mozilla::layers::TextureDeallocParams&, mozilla::ReentrantMonitor*&&, bool*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::layers::TextureDeallocParams&>::Type> mozilla::MakeTuple<mozilla::layers::TextureDeallocParams&>(mozilla::layers::TextureDeallocParams&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<unsigned long&>::Type, mozilla::Decay<mozilla::layers::LayersIPCChannel*&>::Type> mozilla::MakeTuple<unsigned long&, mozilla::layers::LayersIPCChannel*&>(unsigned long&, mozilla::layers::LayersIPCChannel*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::layers::CompositorBridgeParent*>::Type, mozilla::Decay<unsigned long*>::Type> mozilla::MakeTuple<mozilla::layers::CompositorBridgeParent*, unsigned long*>(mozilla::layers::CompositorBridgeParent*&&, unsigned long*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::layers::LayersId&>::Type> mozilla::MakeTuple<mozilla::layers::LayersId&>(mozilla::layers::LayersId&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::layers::LayersId&>::Type, mozilla::Decay<mozilla::layers::GeckoContentController*&>::Type> mozilla::MakeTuple<mozilla::layers::LayersId&, mozilla::layers::GeckoContentController*&>(mozilla::layers::LayersId&, mozilla::layers::GeckoContentController*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::TimeStamp&>::Type> mozilla::MakeTuple<mozilla::TimeStamp&>(mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::gfx::GPUProcessHost*>::Type> mozilla::MakeTuple<mozilla::gfx::GPUProcessHost*>(mozilla::gfx::GPUProcessHost*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<RefPtr<mozilla::gfx::VRManagerChild>&>::Type> mozilla::MakeTuple<RefPtr<mozilla::gfx::VRManagerChild>&>(RefPtr<mozilla::gfx::VRManagerChild>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::gfx::VRManagerParent*>::Type> mozilla::MakeTuple<mozilla::gfx::VRManagerParent*>(mozilla::gfx::VRManagerParent*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::gfx::VRProcessParent*>::Type> mozilla::MakeTuple<mozilla::gfx::VRProcessParent*>(mozilla::gfx::VRProcessParent*&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::layers::CompositorBridgeParent*>::Type, mozilla::Decay<mozilla::wr::WrPipelineInfo&>::Type, mozilla::Decay<mozilla::TimeStamp const&>::Type, mozilla::Decay<mozilla::TimeStamp&>::Type> mozilla::MakeTuple<mozilla::layers::CompositorBridgeParent*, mozilla::wr::WrPipelineInfo&, mozilla::TimeStamp const&, mozilla::TimeStamp&>(mozilla::layers::CompositorBridgeParent*&&, mozilla::wr::WrPipelineInfo&, mozilla::TimeStamp const&, mozilla::TimeStamp&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::layers::CompositorBridgeParent*&>::Type> mozilla::MakeTuple<mozilla::layers::CompositorBridgeParent*&>(mozilla::layers::CompositorBridgeParent*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::layers::CompositorBridgeParent*&>::Type, mozilla::Decay<mozilla::wr::WebRenderError&>::Type> mozilla::MakeTuple<mozilla::layers::CompositorBridgeParent*&, mozilla::wr::WebRenderError&>(mozilla::layers::CompositorBridgeParent*&, mozilla::wr::WebRenderError&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::image::ImgDrawResult>::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>::Type, mozilla::Decay<RefPtr<mozilla::gfx::SourceSurface> >::Type> mozilla::MakeTuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, RefPtr<mozilla::gfx::SourceSurface> >(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&, RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::image::ImgDrawResult>::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Type> mozilla::MakeTuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<already_AddRefed<mozilla::image::CachedSurface> >::Type, mozilla::Decay<mozilla::image::MatchType>::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >::Type> mozilla::MakeTuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<already_AddRefed<mozilla::image::CachedSurface> >::Type, mozilla::Decay<mozilla::image::MatchType>::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Type> mozilla::MakeTuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<already_AddRefed<mozilla::image::CachedSurface> >::Type, mozilla::Decay<mozilla::image::MatchType&>::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Type> mozilla::MakeTuple<already_AddRefed<mozilla::image::CachedSurface>, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>(already_AddRefed<mozilla::image::CachedSurface>&&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::image::ImgDrawResult>::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Type, mozilla::Decay<RefPtr<mozilla::gfx::SourceSurface> >::Type> mozilla::MakeTuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface> >(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::image::ImgDrawResult>::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Type> mozilla::MakeTuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::image::ImgDrawResult>::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>::Type> mozilla::MakeTuple<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>(mozilla::image::ImgDrawResult&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<RefPtr<mozilla::gfx::SourceSurface> >::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>::Type> mozilla::MakeTuple<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&>(RefPtr<mozilla::gfx::SourceSurface>&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<RefPtr<mozilla::gfx::SourceSurface> >::Type, mozilla::Decay<mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>::Type> mozilla::MakeTuple<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&>(RefPtr<mozilla::gfx::SourceSurface>&&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<int&>::Type, mozilla::Decay<mozilla::Maybe<mozilla::image::WriteState> >::Type> mozilla::MakeTuple<int&, mozilla::Maybe<mozilla::image::WriteState> >(int&, mozilla::Maybe<mozilla::image::WriteState>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::dom::ContentParent*>::Type, mozilla::Decay<mozilla::dom::TabParent*&>::Type> mozilla::MakeTuple<mozilla::dom::ContentParent*, mozilla::dom::TabParent*&>(mozilla::dom::ContentParent*&&, mozilla::dom::TabParent*&)
Unexecuted instantiation: mozilla::Tuple<> mozilla::MakeTuple<>()
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::SeekJob>::Type, mozilla::Decay<mozilla::SeekJob>::Type> mozilla::MakeTuple<mozilla::SeekJob, mozilla::SeekJob>(mozilla::SeekJob&&, mozilla::SeekJob&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::SeekJob>::Type, mozilla::Decay<mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>::Type> mozilla::MakeTuple<mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::SeekJob>::Type, mozilla::Decay<mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>::Type> mozilla::MakeTuple<mozilla::SeekJob, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&>(mozilla::SeekJob&&, mozilla::MediaDecoderStateMachine::StateObject::EventVisibility&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<nsTString<char> const&>::Type> mozilla::MakeTuple<nsTString<char> const&>(nsTString<char> const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<nsTString<char> const&>::Type, mozilla::Decay<nsTArray<unsigned char> >::Type> mozilla::MakeTuple<nsTString<char> const&, nsTArray<unsigned char> >(nsTString<char> const&, nsTArray<unsigned char>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >::Type> mozilla::MakeTuple<mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild> >(mozilla::ipc::Endpoint<mozilla::dom::PVideoDecoderManagerChild>&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<mozilla::dom::ContentProcessHost*&>::Type> mozilla::MakeTuple<mozilla::dom::ContentProcessHost*&>(mozilla::dom::ContentProcessHost*&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<int&>::Type, mozilla::Decay<bool>::Type> mozilla::MakeTuple<int&, bool>(int&, bool&&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<nsTString<char> >::Type, mozilla::Decay<nsTArray<int> >::Type, mozilla::Decay<long&>::Type> mozilla::MakeTuple<nsTString<char>, nsTArray<int>, long&>(nsTString<char>&&, nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<nsTString<char> >::Type, mozilla::Decay<nsTString<char> >::Type, mozilla::Decay<nsTArray<int> >::Type, mozilla::Decay<long&>::Type> mozilla::MakeTuple<nsTString<char>, nsTString<char>, nsTArray<int>, long&>(nsTString<char>&&, nsTString<char>&&, nsTArray<int>&&, long&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<char const*>::Type, mozilla::Decay<nsCOMPtr<nsIVariant>&>::Type, mozilla::Decay<unsigned int const&>::Type> mozilla::MakeTuple<char const*, nsCOMPtr<nsIVariant>&, unsigned int const&>(char const*&&, nsCOMPtr<nsIVariant>&, unsigned int const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<char const*>::Type, mozilla::Decay<nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >&>::Type, mozilla::Decay<unsigned int const&>::Type> mozilla::MakeTuple<char const*, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >&, unsigned int const&>(char const*&&, nsTArray<mozilla::Pair<nsTString<char>, nsCOMPtr<nsIVariant> > >&, unsigned int const&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<nsTString<char> >::Type, mozilla::Decay<nsTString<char16_t> >::Type, mozilla::Decay<nsCOMPtr<nsIVariant>&>::Type> mozilla::MakeTuple<nsTString<char>, nsTString<char16_t>, nsCOMPtr<nsIVariant>&>(nsTString<char>&&, nsTString<char16_t>&&, nsCOMPtr<nsIVariant>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Decay<int>::Type, mozilla::Decay<mozilla::Maybe<mozilla::image::WriteState> >::Type> mozilla::MakeTuple<int, mozilla::Maybe<mozilla::image::WriteState> >(int&&, mozilla::Maybe<mozilla::image::WriteState>&&)
506
507
/**
508
 * A convenience function for constructing a tuple of references to a
509
 * sequence of variables. Since assignments to the elements of the tuple
510
 * "go through" to the referenced variables, this can be used to "unpack"
511
 * a tuple into individual variables.
512
 *
513
 * Example:
514
 *
515
 * int i;
516
 * float f;
517
 * char c;
518
 * Tie(i, f, c) = FunctionThatReturnsATuple();
519
 */
520
template<typename... Elements>
521
inline Tuple<Elements&...>
522
Tie(Elements&... aVariables)
523
0
{
524
0
  return Tuple<Elements&...>(aVariables...);
525
0
}
Unexecuted instantiation: mozilla::Tuple<unsigned int&, unsigned long&, unsigned long&> mozilla::Tie<unsigned int, unsigned long, unsigned long>(unsigned int&, unsigned long&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<unsigned int&, unsigned long&, unsigned long&, bool&> mozilla::Tie<unsigned int, unsigned long, unsigned long, bool>(unsigned int&, unsigned long&, unsigned long&, bool&)
Unexecuted instantiation: mozilla::Tuple<nsresult&, mozilla::Encoding const*&> mozilla::Tie<nsresult, mozilla::Encoding const*>(nsresult&, mozilla::Encoding const*&)
Unexecuted instantiation: mozilla::Tuple<bool&, nsTString<char16_t>&> mozilla::Tie<bool, nsTString<char16_t> >(bool&, nsTString<char16_t>&)
Unexecuted instantiation: mozilla::Tuple<bool&, mozilla::CopyableErrorResult&> mozilla::Tie<bool, mozilla::CopyableErrorResult>(bool&, mozilla::CopyableErrorResult&)
Unexecuted instantiation: mozilla::Tuple<mozilla::Encoding const*&, unsigned long&> mozilla::Tie<mozilla::Encoding const*, unsigned long>(mozilla::Encoding const*&, unsigned long&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&> mozilla::Tie<mozilla::image::ImgDrawResult, RefPtr<mozilla::gfx::SourceSurface> >(mozilla::image::ImgDrawResult&, RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&> mozilla::Tie<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >(mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&> mozilla::Tie<mozilla::image::ImgDrawResult, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>, RefPtr<mozilla::gfx::SourceSurface> >(mozilla::image::ImgDrawResult&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&, RefPtr<mozilla::gfx::SourceSurface>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&> mozilla::Tie<RefPtr<mozilla::image::CachedSurface>, mozilla::image::MatchType, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >(RefPtr<mozilla::image::CachedSurface>&, mozilla::image::MatchType&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&> mozilla::Tie<RefPtr<mozilla::gfx::SourceSurface>, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits> >(RefPtr<mozilla::gfx::SourceSurface>&, mozilla::gfx::IntSizeTyped<mozilla::gfx::UnknownUnits>&)
Unexecuted instantiation: mozilla::Tuple<int&, mozilla::Maybe<mozilla::image::WriteState>&> mozilla::Tie<int, mozilla::Maybe<mozilla::image::WriteState> >(int&, mozilla::Maybe<mozilla::image::WriteState>&)
Unexecuted instantiation: mozilla::Tuple<RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&> mozilla::Tie<RefPtr<mozilla::dom::ContentParent>, RefPtr<mozilla::dom::TabParent> >(RefPtr<mozilla::dom::ContentParent>&, RefPtr<mozilla::dom::TabParent>&)
Unexecuted instantiation: mozilla::Tuple<unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&> mozilla::Tie<unsigned long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >(unsigned long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&)
526
527
} // namespace mozilla
528
529
#endif /* mozilla_Tuple_h */